Usage

nRF Util

tags
nRF Util

The following examples demonstrate how to use the --remote-jlink option with various nrfutil device commands:

  • List information about the device connected through a remote J-Link probe with the host address 192.168.1.55 on the custom (default) port 19020:

    nrfutil device device-info --remote-jlink 192.168.1.55:19020
    
  • Program merged.hex firmware file to the device connected to the remote J-Link probe with the host address 192.168.1.55 (without specifying the port):

    nrfutil device program --remote-jlink 192.168.1.55 --firmware C:\apps\peripheral_uart\build\merged.hex
    
  • Erase the device connected to the remote J-Link probe with the host address 192.168.1.55 (without specifying the port):

    nrfutil device erase --remote-jlink 192.168.1.55 --all
    
  • Reset the device connected to the remote J-Link probe with the host address 192.168.1.55 (without specifying the port):

    nrfutil device reset --remote-jlink 192.168.1.55