read_memory
Read raw bytes from a target device's memory area such as flash or eeprom, specifying offset and length to retrieve hex data.
Instructions
Read raw bytes from a target device memory area.
memory: one of 'flash', 'eeprom', 'fuses', 'user_row', 'signatures', 'lockbits', 'boot_row'. offset: byte offset within the memory to start reading (default: 0). length: number of bytes to read; 0 means read to end of memory (default: 0). Returns a JSON object with keys 'memory', 'offset', 'length', and 'hex' where 'hex' is a space-separated hex byte string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memory | No | flash | |
| offset | No | ||
| length | No | ||
| device | No | ||
| tool | No | ||
| serialnumber | No | ||
| serialport | No | ||
| baudrate | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |