2022-04-15 11:56 AM
When I attempt to create a task with a name longer than 15 characters, CubeMX seems to truncate to 15 characters max. How do I name a Task in CubeMX longer than 15 characcters?
Solved! Go to Solution.
2022-04-27 11:37 PM
Please change MAX_TASK_NAME_LEN (FreeRTOS 'Config parameters' tab) to desired length+1 (this +1 is for NULL at the end of the string). By default it is set to 16 this is why you can use max 15 characters within task name.
2022-04-27 11:37 PM
Please change MAX_TASK_NAME_LEN (FreeRTOS 'Config parameters' tab) to desired length+1 (this +1 is for NULL at the end of the string). By default it is set to 16 this is why you can use max 15 characters within task name.