Examples

nRF Util

tags
nRF Util

Here are some common scenarios for using the write command:

  • Write the value 0x12345678 to address 0x20000000:

    nrfutil device write --address 0x20000000 --value 0x12345678
    
  • Write to a register using the network core access port:

    nrfutil device write --address 0x40000000 --value 0x1 --direct --core Network
    
  • Directly write to a peripheral register to enable a specific function:

    nrfutil device write --address 0x40002508 --value 0x1 --direct