1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/feather-nrf52840: add missing commands for uf2 instructions

This commit is contained in:
Martine Lenders 2021-08-24 17:50:49 +02:00
parent fe39542618
commit 1f17769038
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -40,6 +40,12 @@ a jlink attached to your BOARD and [`nrfjprog`][nrfjprog] installed:
~~~~~~~~~~~~~{.sh}
git clone git@github.com:adafruit/Adafruit_nRF52_Bootloader.git
cd Adafruit_nRF52_Bootloader
# only download what is needed, use
# `git submodule update --init --recursive`
# to download everything
git submodule update --init
git -C lib/tinyusb submodule update --init hw/mcu/nordic/nrfx/
pip3 install --user adafruit-nrfutil
make BOARD=feather_nrf52840_express all
make BOARD=feather_nrf52840_express flash
~~~~~~~~~~~~