How to fill RAM locations during debug
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-03-23 1:13 PM
I need to fill certain RAM (buffer) locations with known values (i.e. compressed audio) during a CubeIDE debug session. I thought there was a way to load values into RAM while the program was stopped at a breakpoint. But I can't seem to find this tool. Seems like it existed in Atollic, but can't find it in CubeIDE. Any thoughts?
Thx,
MikeH
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-03-24 1:13 AM
In the Debugger Console view you can enter a command
restore mydatafile.bin binary 0x20001000
to load it to the address specified.
hth
KnarfB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-03-24 1:13 AM
In the Debugger Console view you can enter a command
restore mydatafile.bin binary 0x20001000
to load it to the address specified.
hth
KnarfB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-03-25 11:20 AM
Thanks KnarfB Found it.
