2020-04-14 05:13 AM
Hi,
I am building some FREERTOS appplication with ARM cortex M4 micro controller based on STM32F4 discovery board.
The program compiled successfully with 0 errors and warnings with eclipse IDE. I am using STM32Cube IDE.
But, when I tried to load the program I have got this messages in debugger console. The program is not running.
Program received signal SIGTRAP, Trace/breakpoint trap.
0xf3af4804 in ?? ()
Cannot access memory at address 0x4c05b508
Cannot access memory at address 0x4c05b508
Kindly help how to solve this issue.
Regards,
Kumar
2020-04-14 05:40 AM
Zero errors and warnings means there are no syntax or linkage errors, not that your code is functionally correct.
Probably a stack corruption issue, will need trace execution up to the point of failure. Output telemetry to determine flow, and sanity checking to catch the point of failure earlier.
2023-12-16 06:01 PM
I encountered the exact same issue. How did you fix it? Thanks!