To read the memory section, use the -fread command:
S32FlashTool.exe -fread -addr [value] -size [value] -i [uart | can | eth] -p [devicename] [-b]
where:
- -addr: Specifies the start address in the device's address range. The
address value can be decimal or hex.
- -size: Specifies the size of the memory section to be read (in bytes).
The size value can be decimal or hex.
- -i: Specifies the communication interface.
- -p: Specifies the communication device name.
- -b: Outputs data in binary format.
For example:
S32FlashTool.exe -fread -addr 0x1000 -size 1000 -i uart -p COM35
Tip: To redirect command output to a file, add > output_filename
after all options.