How do I export in a file the variables content in a debug session (done on FRDM-KW36 board), located in "Variables" watch window? I have thousands of bytes to monitor.
Maybe Freemaster 3.0 could also be helpful in that case.
https://www.nxp.com/design/software/development-software/freemaster-run-time-debugging-tool:FREEMAST...
br
Guenter
Thanks for idea, but for the moment it doesn't support MKW39.
<CTRL>+A to select all variales in the view, then <CTRL>+C to copy them. <CTRL>+V to paste them e.g. in a text editor.
I hope this helps,
Erich
Indeed this works, but not in my case. I mean in case of an array[1000] for example, I have to expand manually 10 times each divided array (it is divided into 10 arrays x 100 elements) and just after that copy + paste. There is no button to expand automatically. I tried different formats that are alowed by Variable window and nothing worked. So is there a way to export thousands of elements of an array, without expanding manually?
In that case you might have a look at the gdb commands, see Dumping Variables and Arrays with GDB in Eclipse | MCU on Eclipse
I hope this helps,
Erich
Thanks, it is a good start point for me.