Basic usage examples

nRF Util

tags
nRF Util

Here are some basic usage examples of the mcu-manager command:

  • List images on a device using the serial connection:

    nrfutil mcu-manager serial image-list --serial-port <serial_port>
    
  • Upload firmware in the BIN format using the serial connection:

    nrfutil mcu-manager serial image-upload --serial-port <serial_port> --firmware <file_name>
    
  • Upload firmware in the BIN format using Bluetooth LE:

    nrfutil mcu-manager ble --hci-serial-port COM4 image-upload --device-name "MyDevice" --firmware <PATH>
    
  • Reset a device using the serial connection:

    nrfutil mcu-manager serial reset --serial-port <serial_port>
    
  • Check the bootloader mode using Bluetooth LE:

    nrfutil mcu-manager ble --hci-serial-port COM4 bootloader-mode-get --device-name "MyDevice"