Below are several common use cases for the read command:
-
Read a 32-bit word at address 0x20000000:
nrfutil device read --address 0x20000000 -
Read 16 bytes from address 0x20000000 using 8-bit width:
nrfutil device read --address 0x20000000 --bytes 16 --width 8 -
Read an address using the network core access port:
nrfutil device read --address 0x20000000 --core Network -
Save memory data to a HEX file instead of printing to terminal:
nrfutil device read --address 0x20000000 --bytes 256 --to-file memory_dump.hex