Threads: align keyboard task stack size to other tasks

This commit is contained in:
Federico Amedeo Izzo 2020-12-06 10:15:30 +01:00
parent 08776e70eb
commit 7fffc339f8
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ static CPU_STK ui_stk[UI_TASK_STKSIZE/sizeof(CPU_STK)];
/* Keyboard task control block and stack */
static OS_TCB kbd_tcb;
static CPU_STK kbd_stk[KBD_TASK_STKSIZE/4];
static CPU_STK kbd_stk[KBD_TASK_STKSIZE/sizeof(CPU_STK)];
/* Device task control block and stack */
static OS_TCB dev_tcb;