Upload Passthrough Code
First, you'll need to upload the code below to allow your board to act as a programmer for the ESP32 AirLift module.
Back up any code and files on your CIRCUITPY drive. The code will overwrite the drive's contents. You should not end up losing any files on the QSPI flash, but it's a good idea to back them up anyways.
Download the UF2 file for your board and save it to your computer's Desktop.
To enter bootloader mode, start with your board unplugged from USB. Next, find the reset button on your board. It's a small, black button, and on most of the boards, it will be the only button available.
Tap this button twice to enter the bootloader. If it doesn't work on the first try, don't be discouraged. The rhythm of the taps needs to be correct and sometimes it takes a few tries. Once successful, the RGB LED on the board will flash red and then stay green. A new drive will show up on your computer. The drive will be called METROM7BOOT where METROM7 is a reference to your specific board.
For example, a Feather will have FEATHERBOOT and a Trinket will have TRINKETBOOT etc. Going forward we'll just call the boot drive BOOT.
Find the .UF2 file you downloaded and drag that file to the new drive on your computer.
The board's LED should flash and the drive will disappear. Your board should re-enumerate USB and appear as a COM or Serial port on your computer. Make a note of the serial port by checking the Device Manager (Windows) or typing ls /dev/cu*
or /dev/tty*
(Mac or Linux) in a terminal.
Download NINA Firmware
Click the link below to download the latest version of the NINA firmware. Unzip it and save the .bin file to your desktop.
Next, you'll need to flash the firmware to your ESP32 AirLift module.
If you're using the Google Chrome browser or Microsoft Edge (version 89 or later), you may follow the instructions below for programming using your board.
For advanced users who have esptool.py installed, skip to the bottom of the page.
Upload NINA Firmware
Next, you'll need to upload the new version of NINA firmware to your ESP32 AirLift. To do this, we'll use the web-based implementation of the flasher tool for Espressif chips, ESPTool. You will need to be running Google Chrome or Microsoft Edge (version 89 or later) to follow the steps below.
Safari and Firefox, etc. are not supported because we need Web Serial and only Chrome is supporting it to the level needed. If you're using an unsupported browser, you'll need to either switch to Google Chrome or upload NINA firmware using the Python esptool.py program from your computer (Scroll down to Upload NINA Firmware with esptool.py,)
On your Google Chrome browser, navigate to https://adafruit.github.io/Adafruit_WebSerial_ESPTool/
In the top-right corner, select 115200 as the baud rate and click the Connect button.
You will get a pop-up asking you to select the board's COM or Serial port.
- If there are a lot of boards and ports appearing in this list and you're not sure what to select - remove all other USB devices so only your board is attached, that way there's no confusion over multiple ports!
Click Connect.
Upon success, you will see that it is connected and will print out a unique MAC address identifying the board.
Once you have successfully connected, a command toolbar will appear at the top of the screen.
Verify that the offset is 0x0 and choose the NINA_....bin file you downloaded above.
Click the program button to flash the firmware to your ESP32 AirLift.
ESPTool will take a few minutes to write firmware to your device. After it's complete, the progress bar will disappear and the console will print "To run the new firmware,..."
Press the Reset button (or, on the RP2040 Pico, unplug your device from USB power) to get out of the ROM bootloader.
Verify the New Firmware Version
To verify everything is working correctly, we'll load up some CircuitPython code.
If you were previously using your ESP32 project with CircuitPython, you'll need to first reinstall CircuitPython firmware for your board. The QSPI flash should have retained its contents. If you don't see anything on the CIRCUITPY volume, copy files from the backup you made earlier to CIRCUITPY.
To verify the new ESP32 WiFi firmware version is correct, follow the Connect to WiFi step in this guide and come back here when you've successfully run the code. The REPL output should display the firmware version you flashed.
(Advanced) Upload NINA Firmware with ESPTool.py
For advanced users who have esptool.py installed, run the following commands on your command line:
If you're using macOS or Linux - run the following command, replacing /dev/ttyACM0
with the serial port of your board and NINA_W102-1.6.0
with the binary file you're flashing to the ESP32.
esptool.py --port /dev/ttyACM0 --before no_reset --baud 115200 write_flash 0 NINA_W102-1.6.0.bin
If you're using Windows - run the following command, replacing COM7
with the serial port of your board and NINA_W102-1.6.0
with the binary file you're flashing to the ESP32
esptool.py --port COM7 --before no_reset --baud 115200 write_flash 0 NINA_W102-1.6.0.bin
The command should detect the ESP32 and will take a minute or two to upload the firmware.
- If ESPTool doesn't detect the ESP32, make sure you've uploaded the correct .UF2 file to the bootloader and are using the correct serial port.
Once the firmware is fully uploaded, press the Reset button (or, on the RP2040 Pico, unplug your device from USB power) to get out of the ROM bootloader mode.
Text editor powered by tinymce.