Flash Expansion Board

Flash and debug firmware on the Expansion Board

The expansion board has a built-in RP2040-based programmer that is pre-flashed with debugprobe firmware that allows it to function as a CMSIS-DAP probe. This makes it easy to flash new firmware onto the FC board over USB using standard tools such as OpenOCD or probe-rs. We recommend using probe-rs because it has less of a configuration burden, and has out-of-the-box support for RTT (Real-Time Transfer) logging.

Probe-rs Install

Probe-rs v0.25.0 has a regression that prevents it from working well with the STM32H7 series. We recommend using v0.24.0 until the issue is resolved.

Install probe-rs v0.24.0 using the following install scripts:

Linux/macOS

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/tag/v0.24.0/download/probe-rs-tools-installer.sh | sh

Windows

irm https://github.com/probe-rs/probe-rs/releases/tag/v0.24.0/download/probe-rs-tools-installer.ps1 | iex

Building the expansion boards default firmware

Clone the elodin repository and navigate to the fsw directory:

git clone https://github.com/elodin-sys/elodin.git
cd elodin/fsw

The fsw directory contains several example projects, navigate into the multicopter directory & follow the build instructions there. The last step is the command cargo rrb fw, which will build the firmware and flash it to the FC board. You should see the same sensor output as before when connected to the Base Board, or alternatively can follow the instructions in the multicopter directory readme to collect sensor data from the included SD card.

aleph-flash-fc

Flashing from the Orin NX

You can flash the STM32H7 from the Orin NX. This is useful if you are pushing out new firmware updates to the STM32 over the air. In an Orin NX terminal session run the following to reset the microcontroller and put it in DFU mode

sudo reset-mcu --bootloader

Then run the following. Replace <elf path> with the path to your firmware payload in the ELF file format

sudo flash-mcu --elf <elf path>