FreeRtos error in STM32H7
Hello,
I am working with stm32H755 and FreeRTOS. After setting up debugger, I start debugging the program. the code is built fine, then get this error msg(attached picture) only if i enable FreeRTOS from the setup window(attached picture) . But i need to use freeRTOS. How can i solved this issue?
Any support is welcome.
Thanks
1. in the freertos.c file, The code is
void MX_FREERTOS_Init(void) {
osThreadDef(defaultTask, StartDefaultTask, osPriorityNormal, 0, 8192);
defaultTaskHandle = osThreadCreate(osThread(defaultTask), NULL);
}
2. debug msg
STMicroelectronics ST-LINK GDB server. Version 7.3.0
Copyright (c) 2023, STMicroelectronics. All rights reserved.
Starting server with the following options:
Persistent Mode : Disabled
Logging Level : 1
Listen Port Number : 61234
Status Refresh Delay : 15s
Verbose Mode : Disabled
SWD Debug : Enabled
Waiting for debugger connection...
Debugger connected
Waiting for debugger connection...
Shutting down...
Exit.
```
Settings in STM32CubeIDE1.12.0
error message
