Adjusted task stack sizes when compiling for ARM

replace/24760d9d90b6568a0974294d6389c36c5955c8ab
Silvano Seva 2020-12-08 09:08:37 +01:00 zatwierdzone przez Niccolò Izzo
rodzic 7971356d6d
commit 344041b371
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -33,27 +33,27 @@ void create_threads();
/**
* Stack size for UI task, in bytes.
*/
#define UI_TASK_STKSIZE 1024*4
#define UI_TASK_STKSIZE 1024
/**
* Stack size for Keyboard task, in bytes.
*/
#define KBD_TASK_STKSIZE 256*4
#define KBD_TASK_STKSIZE 256
/**
* Stack size for state update task, in bytes.
*/
#define DEV_TASK_STKSIZE 256*4
#define DEV_TASK_STKSIZE 512
/**
* Stack size for baseband control task, in bytes.
*/
#define RTX_TASK_STKSIZE 128*4
#define RTX_TASK_STKSIZE 128
/**
* Stack size for DMR task, in bytes.
*/
#define DMR_TASK_STKSIZE 128*4
#define DMR_TASK_STKSIZE 128
#else /* __arm__ */