summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Hemingway <chris.hemingway@gmail.com>2021-01-24 14:40:44 +0000
committerDamien George <damien@micropython.org>2021-01-30 14:32:55 +1100
commit993ab6aa2c2e8eadcfdf64371bfddaa8304f26cb (patch)
treecdd09a2f18d5fdff656961a97b8f7a8908dacc84
parent2aecf378be3190920fd0e50aff6ccdc83ecfd7e9 (diff)
nrf/README: Add use of "make submodules" in alternative build paragraph.
Add "make submodules" to commands when building for the first time. Otherwise, on a first time build, the submodules have not been checked out and a lot of `fatal error: nrfx.h: No such file or directory` errors are printed.
-rw-r--r--ports/nrf/README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/ports/nrf/README.md b/ports/nrf/README.md
index 22bb4af51..0341cd81c 100644
--- a/ports/nrf/README.md
+++ b/ports/nrf/README.md
@@ -62,8 +62,9 @@ By default, the PCA10040 (nrf52832) is used as compile target. To build and flas
Alternatively the target board could be defined:
- make BOARD=pca10040
- make BOARD=pca10040 deploy
+ make submodules
+ make BOARD=pca10040
+ make BOARD=pca10040 deploy
## Compile without LTO enabled