I have a 9S08QG8 microcontroller, with the demo board connected by USB with my PC. I'm doing some programs, but I don't know how to store the memory (some directions of the RAM) in my PC. Can I do it? and how?
Solved! Go to Solution.
KATBACK,
There is the command "SAVE" you can enter into Debbugger Command Line Window. e.g:
in>save 0x0080..0x008F my_memory_dump.s19
The debugger creates file my_mem_dump.s19 directly in your project directory and contains memory block 0x0080 - 0x008F.
See attached screenshot.
Stanish
KATBACK,
You can use the debugger to store the memory content into the file e.g. command "SAVE".
If you need to capture data in the runtime there is a free tool called FreeMASTER
Stanish
Thanks Stanish.
With "Save" command in the debugger, It doesn't save the content, it saves the windows configuration and position. Or if it also saves the content, in which file does it save?
KATBACK,
There is the command "SAVE" you can enter into Debbugger Command Line Window. e.g:
in>save 0x0080..0x008F my_memory_dump.s19
The debugger creates file my_mem_dump.s19 directly in your project directory and contains memory block 0x0080 - 0x008F.
See attached screenshot.
Stanish