Flash and download tool for MicroPython firmwares
Project description
MPFLASH
mpflash
is a command-line tool for working with MicroPython firmware. It provides features to help you flash and update Micropython on one or more .
This tool was initially created to be used in a CI/CD pipeline to automate the process of downloading and flashing MicroPython firmware to multiple boards, but it has been extend with a TUI to be used for manual downloadig, flashing and development.
mpflash
has been tested on:
- OS: Windows x64, Linux X64, but not (yet) macOS.
- Micropython (hardware) ports:
rp2
, using.uf2
, using filecopysamd
, using.uf2
, using filecopyesp32
, using.bin
, using esptool,esp8266
, using.bin
, using esptoolstm32
, using.dfu
, using pydfu
Not yet implemented: nrf
, cc3200
, mimxrt
Features
- List the connected boards including their firmware details, in a tabular or json format
- Download MicroPython firmware for versions, and matching a specified board or matches your current attached board.
- Flash one or all connected MicroPython boards with a specific firmware or version.
Installation
To install mpflash, you can use: pipx install mpflash
or pip install mpflash
Basic usage
You can use mpflash to perform various operations on your MicroPython boards. Here is an example of basic usage:
Command | Description |
---|---|
mpflash list |
List the connected board(s) including their firmware details |
mpflash download |
Download the MicroPython firmware(s) for the connected board(s) |
mpflash flash |
Flash the latest stable firmware to the connected board(s) |
selecting or ignoring specific serial ports
You can use the --serial
option to select a specific serial port to flash, or the --ignore
option to ignore a specific serial port.
both options can be specified multiple times
Both can be globs (e.g. COM*) or exact port names (e.g. COM1)
in addition there is a --bluetooth option to simplify ignoring bluetooth ports
--serial,--serial-port -s SERIALPORT Serial port(s) (or globs) to list. [default: *] > > --ignore -i SERIALPORT Serial port(s) (or globs) to ignore. Defaults to MPFLASH_IGNORE. │
--bluetooth/--no-bluetooth -b/-nb Include bluetooth ports in the list [default: no-bluetooth]
Distinguishing similar boards
The mpflash list
command will list all connected boards, but sometimes you have multiple boards of the same type connected.
To help you identify the boards, you can add a board_info.toml file to the top/default folder for the board.
This file can contain a description of the board, which will be shown in the list and json output.
description = "Blue Norwegian actuator"
If you want the board to be ignored by mpflash, you can add the following to the board_info.toml file:
[mpflash]
ignore = true
Linux permissions to access usb devices
In order to flash the firmware to the board, you need to have the correct permissions to access the USB devices. On Windows this will not be an issue, but on Linux you can use udev rules to give non-root users access to the USB devices. See the stm32_permissions documentation for more information.
Detailed usage
You can list the connected boards using the following command:
$> mpflash list
Connected boards
┏━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━┓
┃ Serial ┃Family ┃Port ┃Board ┃CPU ┃Version ┃build ┃
┡━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━┩
│ COM21 │micropython │rp2 │RPI_PICO │RP2040 │v1.23.0-preview │ 236 │
│ │ │ │Raspberry Pi Pico with RP2040 │ │ │ │
│ COM23 │micropython │rp2 │RPI_PICO_W │RP2040 │v1.23.0-preview │ 176 │
│ │ │ │Raspberry Pi Pico W with RP2040 │ │ │ │
│ COM9 │micropython │rp2 │ARDUINO_NANO_RP2040_CONNECT │RP2040 │v1.23.0-preview │ 341 │
│ │ │ │Arduino Nano RP2040 Connect with RP2040 │ │ │ │
└─────────┴─────────────┴──────┴───────────────────────────────────────────┴────────┴─────────────────┴──────┘
Download the firmware
To download the MicroPython firmware for some boards, use the following command:
mpflash download
download the latest stable firmware for all connected boardsmpflash download --version preview
download the current preview for all connected boardsmpflash download --board ESP8266_GENERIC --board SEEED_WIO_TERMINAL
download these specific boardsmpflash download --version ? --board ?
prompt to select a specific version and board to download
These will try to download the prebuilt MicroPython firmware for the boards from https://micropython.org/download/ and save it in your downloads folder in the firmware
directory.
The stable version (default) is determined based on the most recent published release,
other options are --version stable
, --version preview
and --version x.y.z
to download the latest stable, preview or version x.y.z respectively.
By default the firmware will be downloaded to your OS's preferred Downloads/firmware
folder, but you can speciy a different directory using the --dir
option.
The directory structure will be something like this:
Downloads/firmware
| firmware.jsonl
+---esp8266
| ESP8266_GENERIC-FLASH_1M-v1.22.2.bin
| ESP8266_GENERIC-FLASH_512K-v1.22.2.bin
| ESP8266_GENERIC-OTA-v1.22.2.bin
| ESP8266_GENERIC-v1.22.2.bin
\---samd
SEEED_WIO_TERMINAL-v1.22.2.uf2
Flashing the firmware
After you have downloaded a firmware you can flash the firmware to a board using the following command: mpflash flash
This will (try to) autodetect the connected boards, and determine the correct firmware to flash to each board.
mpflash flash
will flash the latest stable firmware to all connected boards. If you have a board withouth a running micropython version, you will need to specify the board and the serial port to flash.mpflash flash --serial ? --board ?
will prompt to select a specific serial port and board to flash. (the firmware must be dowloaded earlier)
In order to flash the firmware some boards need to be put in bootloader mode, this is done automatically by mpflash where possible and supported by the boards hardware and current bootloader.
The supported --bootloader
options are:
touch1200
bootloader is activated by connecting to the board at 1200 baudmpy
using micropython to enter the bootloadermanual
manual intervention is needed to enter the bootloadernone
mpflash assumes the board is ready to flash
For ESP32 and ESP8266 boards the esptool
is used to flash the firmware, and this includes activating the bootloader.
Flashing all connected boards with the latest stable firmware
> mpflash flash
22:15:55 | ℹ️ - Using latest stable version: v1.22.2
Connected boards
┏━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━┓
┃ Serial ┃ Family ┃ Port ┃ Board ┃ CPU ┃ Version ┃ build ┃
┡━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━┩
│ COM11 │ micropython │ rp2 │ RPI_PICO_W │ RP2040 │ 1.20.0 │ │
│ COM12 │ micropython │ esp8266 │ ESP8266_GENERIC │ ESP8266 │ 1.22.2 │ │
│ COM18 │ micropython │ rp2 │ RPI_PICO_W │ RP2040 │ 1.23.0-preview │ 155 │
│ COM3 │ micropython │ samd │ SEEED_WIO_TERMINAL │ SAMD51P19A │ 1.23.0-preview │ 155 │
│ COM5 │ micropython │ stm32 │ PYBV11 │ STM32F405RG │ 1.23.0-preview │ 166 │
│ COM8 │ micropython │ esp32 │ ESP32_GENERIC_S3 │ ESP32S3 │ 1.23.0-preview │ 155 │
└────────┴─────────────┴─────────┴────────────────────┴─────────────┴────────────────┴───────┘
22:15:58 | ℹ️ - Found v1.22.2 firmware rp2\RPI_PICO_W-v1.22.2.uf2 for RPI_PICO_W on COM11.
22:15:58 | ℹ️ - Found v1.22.2 firmware esp8266\ESP8266_GENERIC-v1.22.2.bin for ESP8266_GENERIC on COM12.
22:15:58 | ℹ️ - Found v1.22.2 firmware rp2\RPI_PICO_W-v1.22.2.uf2 for RPI_PICO_W on COM18.
22:15:58 | ℹ️ - Found v1.22.2 firmware samd\SEEED_WIO_TERMINAL-v1.22.2.uf2 for SEEED_WIO_TERMINAL on COM3.
22:15:58 | ⚠️ - Trying to find a firmware for the board PYBV11
22:15:58 | ❌ - No v1.22.2 firmware found for PYBV11 on COM5.
22:15:58 | ⚠️ - Trying to find a firmware for the board ESP32-GENERIC-S3
22:15:58 | ❌ - No v1.22.2 firmware found for ESP32_GENERIC_S3 on COM8.
22:15:58 | ℹ️ - Updating RPI_PICO_W on COM11 to 1.22.2
22:15:58 | ℹ️ - Erasing not yet implemented for UF2 flashing.
22:15:58 | ℹ️ - Entering UF2 bootloader on RPI_PICO_W on COM11
22:15:58 | ℹ️ - Waiting for mcu to mount as a drive : 10 seconds left
22:15:59 | ℹ️ - Waiting for mcu to mount as a drive : 9 seconds left
22:16:00 | ℹ️ - Board is in bootloader mode
22:16:00 | ℹ️ - Copying firmware\rp2\RPI_PICO_W-v1.22.2.uf2 to F:
22:16:13 | ✅ - Done copying, resetting the board and wait for it to restart
22:16:23 | ℹ️ - Updating ESP8266_GENERIC on COM12 to 1.22.2
22:16:23 | ℹ️ - Flashing firmware\esp8266\ESP8266_GENERIC-v1.22.2.bin on ESP8266_GENERIC on COM12
22:16:23 | ℹ️ - Running esptool --chip ESP8266 --port COM12 erase_flash
esptool.py v4.7.0
Serial port COM12
Connecting....
...
Chip erase completed successfully in 6.5s
Hard resetting via RTS pin...
22:16:31 | ℹ️ - Running esptool --chip ESP8266 --port COM12 -b 460800 write_flash --flash_size=detect 0x0 firmware\esp8266\ESP8266_GENERIC-v1.22.2.bin
esptool.py v4.7.0
Serial port COM12
Connecting....
...
Leaving...
Hard resetting via RTS pin...
22:16:43 | ℹ️ - Done flashing, resetting the board and wait for it to restart
22:16:49 | ✅ - Flashed 1.22.2 to ESP8266_GENERIC on COM12 done
22:16:49 | ℹ️ - Updating RPI_PICO_W on COM18 to 1.22.2
22:16:49 | ℹ️ - Erasing not yet implemented for UF2 flashing.
22:16:49 | ℹ️ - Entering UF2 bootloader on RPI_PICO_W on COM18
22:16:49 | ℹ️ - Waiting for mcu to mount as a drive : 10 seconds left
22:16:50 | ℹ️ - Waiting for mcu to mount as a drive : 9 seconds left
22:16:51 | ℹ️ - Board is in bootloader mode
22:16:51 | ℹ️ - Copying firmware\rp2\RPI_PICO_W-v1.22.2.uf2 to F:[/bold]
22:17:02 | ✅ - Done copying, resetting the board and wait for it to restart
22:17:12 | ℹ️ - Updating SEEED_WIO_TERMINAL on COM3 to 1.22.2
22:17:12 | ℹ️ - Erasing not yet implemented for UF2 flashing.
22:17:12 | ℹ️ - Entering UF2 bootloader on SEEED_WIO_TERMINAL on COM3
22:17:12 | ℹ️ - Waiting for mcu to mount as a drive : 10 seconds left
22:17:13 | ℹ️ - Waiting for mcu to mount as a drive : 9 seconds left
22:17:14 | ℹ️ - Board is in bootloader mode
22:17:14 | ℹ️ - Copying firmware\samd\SEEED_WIO_TERMINAL-v1.22.2.uf2 to F:[/bold]
22:17:17 | ✅ - Done copying, resetting the board and wait for it to restart
22:17:27 | ℹ️ - Flashed 4 boards
Connected boards after flashing
┏━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━┓
┃ Serial ┃ Family ┃ Port ┃ Board ┃ CPU ┃ Version ┃ build ┃
┡━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━┩
│ COM11 │ micropython │ rp2 │ RPI_PICO_W │ RP2040 │ 1.22.2 │ │
│ COM12 │ micropython │ esp8266 │ ESP8266_GENERIC │ ESP8266 │ 1.22.2 │ │
│ COM18 │ micropython │ rp2 │ RPI_PICO_W │ RP2040 │ 1.22.2 │ │
│ COM3 │ micropython │ samd │ SEEED_WIO_TERMINAL │ SAMD51P19A │ 1.22.2 │ │
│ COM5 │ micropython │ stm32 │ PYBV11 │ STM32F405RG │ 1.23.0-preview │ 166 │
│ COM8 │ micropython │ esp32 │ ESP32_GENERIC_S3 │ ESP32S3 │ 1.23.0-preview │ 155 │
└────────┴─────────────┴─────────┴────────────────────┴─────────────┴────────────────┴───────┘
Note that if no matching firmware can be found for a board, it will be skipped. (For example, the PYBV11 and ESP32_GENERIC_S3 boards in the example above.)
Issues and bug reports
mpflash is currently co-located in the micropython-stubber repository.
Please report any issues or bugs in the issue tracker using the MPflash feedback template.
License
mpflash is licensed under the MIT license. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mpflash-1.24.0.tar.gz
.
File metadata
- Download URL: mpflash-1.24.0.tar.gz
- Upload date:
- Size: 76.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27eda9140a7ba9384d9467b6971fb7cdbc7715a5340f89b03cf3ac12760af142 |
|
MD5 | 200830aa105686aa68038bfc2dda4d67 |
|
BLAKE2b-256 | ac946cf780be7831eca41274514806b1a200dc75448bbda5f73051e9f8d2a5c7 |
File details
Details for the file mpflash-1.24.0-py3-none-any.whl
.
File metadata
- Download URL: mpflash-1.24.0-py3-none-any.whl
- Upload date:
- Size: 91.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb6478cc4c5639234da23b05ebb932bc8e9a18a951e7d2cafabd214246efcf74 |
|
MD5 | cb398e4e901e3f16c78fce52eba4b4c7 |
|
BLAKE2b-256 | a159965e93b4d8c5ce1b2600c713f50f6e0148e8248f2a4fb1b0d0707cc41e13 |