Break at address "0x3100272c" with no debug information available, or outside of program code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-16 11:23 PM
Hi,
I am working with STM32F429ZI. Project consists of TFTP , TCP/IP , Flash and Free RTOS. I have got this error and not able to solve. Please provide solution if anyone facing the same.
Thanks
Anagha
Solved! Go to Solution.
- Labels:
-
Ethernet
-
FreeRTOS
-
STM32F4 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-17 7:08 AM
Probably there is an out of bounds array write or a stack overflow condition. It could be other things, but those seem the most likely.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-17 5:39 AM
There is no memory at 0x3100272c, so the error, you need to find out what causes this bad pointer. Compile with a recent compiler and high warning level and carefully check the warning. So possible uninitialized variable can be the cause, as many other things
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-17 7:08 AM
Probably there is an out of bounds array write or a stack overflow condition. It could be other things, but those seem the most likely.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-27 4:03 AM
Hi,
Thanks Uwe Bonnes and TDK.
I got solution over this problem. Actually I had defined the 10K area in linker file using attribute. But forget to initialize it with zero. so the problem is occured of memory overlapping and no debug information available. But initialization with zero to that area working successfully.
Thanks
Anagha Dankh
