From 1f17769038cd53a9998b96b4d0b7d9f5c4c8fcbd Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Tue, 24 Aug 2021 17:50:49 +0200 Subject: [PATCH] boards/feather-nrf52840: add missing commands for uf2 instructions --- boards/feather-nrf52840/doc.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/boards/feather-nrf52840/doc.txt b/boards/feather-nrf52840/doc.txt index 8676b83986..f0784be574 100644 --- a/boards/feather-nrf52840/doc.txt +++ b/boards/feather-nrf52840/doc.txt @@ -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 ~~~~~~~~~~~~