2023-03-23 01: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.
2023-03-24 01: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
2023-03-24 01: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
2023-03-25 11:20 AM
Thanks KnarfB Found it.