Hello, I use STM32IDE to debug a STM32l486RG. I have a message when I want to debug my program : Break at address "0x8000c46" 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
‎2022-02-23 6:32 AM
The BOOT pin is to GND, and the program is configured to 0x0800 0000.
- Labels:
-
DEBUG
-
STM32CubeIDE
-
STM32L4 series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-02-25 7:58 AM
What is the Debug level set on the compiler?
Do you always end up at this address?
And is this the only address where there is no mapping to c-code?
If you want to know where you are halted you can look into the list-file: Debug\ProjectName.list file. Scroll down to 0x8000c46, in which function is this?
If you don't want to break there, then clean out any breakpoints in the breakpoints view. Then to be safe use the Debugger console and type "info b". Any breakpoints still set in target?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-02-28 7:26 AM
Did this solve the issue or is there another root-cause?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-02-28 8:12 AM
I have the address in the file *.ld who isn't at 0x0800000 but at 0x08008000. when the built, this file isn't save automically.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-01 3:32 PM
...Not sure this relates at all to the original problem in this thread. But, maybe I missunderstand.
Are you saying that if you modify a linker script (.ld-file) and then click "build". Then the .ld-file is not saved automatically by the IDE before the build is started? So your modification is not take into consideration by the build?
