OpenOCD
|
Data Fields | |
int(* | read_mem )(uint32_t addr, uint32_t size, uint32_t count, uint8_t *buffer) |
Read target memory through ROTF (read on-the-fly) command. More... | |
int(* | reconnect )(void) |
Reconnect to the target. More... | |
int(* | srst )(void) |
Send SRST (system reset) command to target. More... | |
int(* | write_mem )(uint32_t addr, uint32_t size, uint32_t count, const uint8_t *buffer) |
Write target memory through WOTF (write on-the-fly) command. More... | |
Read target memory through ROTF (read on-the-fly) command.
addr | Start address to read data from target memory. |
size | Size in bytes of data units, 1, 2 or 4. |
count | Number of units (size units, not bytes) to read. |
buffer | Data buffer to receive data. |
Definition at line 36 of file swim.h.
Referenced by swim_read_mem().
int(* swim_driver::reconnect) (void) |
Reconnect to the target.
Should be reworked to be more generic and not linked to current implementation in stlink driver.
Definition at line 58 of file swim.h.
Referenced by swim_reconnect().
int(* swim_driver::srst) (void) |
Send SRST (system reset) command to target.
Definition at line 25 of file swim.h.
Referenced by swim_system_reset().
Write target memory through WOTF (write on-the-fly) command.
addr | Start address to write data to target memory. |
size | Size in bytes of data units, 1, 2 or 4. |
count | Number of units (size units, not bytes) to write. |
buffer | Data buffer to write. |
Definition at line 48 of file swim.h.
Referenced by swim_write_mem().