Skip to main content

How to Update or Recover the Bootloader on nRF52 Devices to the Latest Version

If you're experiencing issues with updating or flashing newer versions of the Meshtastic firmware, and your nRF52 device is not running the latest bootloader version, updating the bootloader may resolve these problems.

To check which version of the bootloader your device is running, place the device into DFU mode. Then, open the mounted drive that appears on your computer and check the INFO_UF2.TXT file.

Updating bootloader

Below are the steps to update your bootloader.

Depending on your device, you need to select the correct bootloader package. Below are the links to the bootloader packages:

  1. Download the correct UF2 Bootloader File.
  2. Connect your device to your computer via USB.
  3. Activate bootloader mode by quickly double pressing the RESET button on your device. For The Seeed Tracker 1000-E, you need to press-and-hold the user button and quickly connect the USB cable to the magsafe port twice. The device should appear as a removable drive on your computer.
  4. Drag and drop the UF2 file you downloaded into the removable drive. The device will automatically update the bootloader and reset.
  5. Once the device resets, the update is complete. Your device is now running the latest bootloader version and you can proceed with flashing the firmware.

Method 2: Using adafruit-nrfutil

caution

Unlike uf2 uploads, adafruit-nrfutil does not check if you have the correct bootloader package for your device. If you flash the wrong bootloader, you may brick your device. Please also verify the SHA256 checksum before flashing.

info

These instructions assume you have python and pip already installed. If you do not, please install the latest verion of python (which includes pip) from Python.org.

Depending on your device, you need to select the correct bootloader package. Below are the links to the bootloader packages:

  1. Open a terminal or command prompt and install adafruit-nrfutil by running:
pip install adafruit-nrfutil
  1. Obtain the correct zip package.
  2. Connect your device to your computer via USB.
  3. In the terminal or command prompt, navigate to the directory where you downloaded the bootloader zip package and execute the following command, replacing /dev/ttyACM0 with the correct port for your device (Windows users might use COMx):
adafruit-nrfutil --verbose dfu serial --package <downloaded file>.zip -p /dev/ttyACM0 -b 115200 --singlebank --touch 1200
  1. Once the process finishes, the update is complete. Your device is now running the latest bootloader version and you can proceed with flashing the firmware.