mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-08-06 01:37:33 +00:00
Updated custom stack sizes for TacosThreads
This commit is contained in:
@@ -39,10 +39,10 @@ namespace sta
|
||||
*
|
||||
* @param name The thread's name. This is used for debugging.
|
||||
* @param prio The thread's priority. Generally, this should be lower than the manager and statemachine priority.
|
||||
* @param stack_size The stack size for the task. The default is the stack size specified in the FreeRTOS settings.
|
||||
* @param cb_size The control block size for the task. The default is the size specified in the FreeRTOS settings.
|
||||
* @param stack_size The stack size for the task. The default is 0, i.e. the stack size specified in the FreeRTOS settings.
|
||||
* @param cb_size The control block size for the task. The default is 0, i.e. the size specified in the FreeRTOS settings.
|
||||
*/
|
||||
TacosThread(const char* name, osPriority_t prio, uint32_t stack_size = NULL, uint32_t cb_size = NULL);
|
||||
TacosThread(const char* name, osPriority_t prio, uint32_t stack_size = 0, uint32_t cb_size = 0);
|
||||
|
||||
virtual ~TacosThread();
|
||||
|
||||
|
Reference in New Issue
Block a user