Increased rtx task stack size to 512 bytes

This commit is contained in:
Silvano Seva 2020-12-18 21:52:45 +01:00
parent 5949a481fa
commit fc67d89abd
1 changed files with 1 additions and 11 deletions

View File

@ -48,12 +48,7 @@ void create_threads();
/** /**
* Stack size for baseband control task, in bytes. * Stack size for baseband control task, in bytes.
*/ */
#define RTX_TASK_STKSIZE 128 #define RTX_TASK_STKSIZE 512
/**
* Stack size for DMR task, in bytes.
*/
#define DMR_TASK_STKSIZE 128
#else /* __arm__ */ #else /* __arm__ */
@ -74,11 +69,6 @@ void create_threads();
*/ */
#define RTX_TASK_STKSIZE 1024 #define RTX_TASK_STKSIZE 1024
/**
* Stack size for DMR task, in bytes.
*/
#define DMR_TASK_STKSIZE 1024
#endif /* __arm__ */ #endif /* __arm__ */
#endif /* THREADS_H */ #endif /* THREADS_H */