2025-09-02 4:31 AM
I used the STM32CUBE FOR VSCODE preview version and enabled FreeRTOS in STM32CUBEMX. However, during the debugging process, the STM32CUBE RTOS STATE is empty and does not display any content, even when the program is paused.
Solved! Go to Solution.
2025-09-02 4:53 AM
Hi Istery,
To enable the RTOS state view during debugging, you need to add the "serverRtos" attribute to your debug configuration. For example, for FreeRTOS:
"serverRtos": {
"enabled": true,
"port": "60000",
"driver": "freertos"
},
BR,
/Flo
2025-09-02 4:53 AM
Hi Istery,
To enable the RTOS state view during debugging, you need to add the "serverRtos" attribute to your debug configuration. For example, for FreeRTOS:
"serverRtos": {
"enabled": true,
"port": "60000",
"driver": "freertos"
},
BR,
/Flo
2025-09-02 5:05 AM
Thank you for your response! It really worked! However, now the Task name cannot be displayed directly under the Tasks label; it needs to be expanded to be visible. Is there a solution to this problem?
2025-09-02 5:28 AM
No, for now, the nodes need to be expanded to see the task name.
But thanks for the feedback; we are adding this to our roadmap.
KR,
/Flo