Add GPS task stack size in linux

This commit is contained in:
Niccolò Izzo 2021-02-11 09:43:24 +01:00
parent 2fbf5fcdeb
commit 3ea428e8f8
1 changed files with 6 additions and 1 deletions

View File

@ -53,7 +53,7 @@ void create_threads();
/**
* Stack size for GPS task, in bytes.
*/
#define GPS_TASK_STKSIZE 4096
#define GPS_TASK_STKSIZE 2048
#else /* __arm__ */
@ -74,6 +74,11 @@ void create_threads();
*/
#define RTX_TASK_STKSIZE 1024
/**
* Stack size for GPS task, in bytes.
*/
#define GPS_TASK_STKSIZE 1024
#endif /* __arm__ */
#endif /* THREADS_H */