Skip to content

Commit a516d11

Browse files
committed
fix typos
1 parent 02b1b53 commit a516d11

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

ports/nrf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ note: On Linux it might be required to link SEGGER's `libjlinkarm.so` inside nrf
101101

102102
run follow command to install [adafruit-nrfutil](https://github.com/adafruit/Adafruit_nRF52_nrfutil) from PyPi
103103

104-
$ pip3 install adafruit-nrfutil --user
104+
$ pip3 install --user adafruit-nrfutil
105105

106106
**make flash** and **make sd** will not work with DFU targets. Hence, **dfu-gen** and **dfu-flash** must be used instead.
107107
* dfu-gen: Generates a Firmware zip to be used by the DFU flash application.

ports/nrf/boards/feather52832/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ The Adafruit Bluefruit nRF52 Feather ships with a serial and OTA BLE bootloader
2727
that can be used to flash firmware images over a simple serial connection,
2828
using the on-board USB serial converter.
2929

30-
run follow command to install [adafruit-nrfutil](https://github.com/adafruit/Adafruit_nRF52_nrfutil) from PyPi
30+
run following command to install [adafruit-nrfutil](https://github.com/adafruit/Adafruit_nRF52_nrfutil) from PyPi
3131

32-
$ pip3 install adafruit-nrfutil --user
32+
$ pip3 install --user adafruit-nrfutil
3333

3434
# Building and flashing firmware images
3535

ports/nrf/boards/feather52840/README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ BUTTON1 still pressed as you come out of reset).
161161
This will give you a **fast blinky DFU pattern** to indicate you are in DFU
162162
mode.
163163

164-
you can **build and flash** a CircuitPython binary via the following command:
164+
You can **build and flash** a CircuitPython binary via the following command:
165165

166166
```
167167
$ make V=1 SD=s140 SERIAL=/dev/tty.usbmodem1411 BOARD=feather52840 all dfu-gen dfu-flash
@@ -188,7 +188,7 @@ Device programmed.
188188

189189
### Flashing CircuitPython with MSC UF2
190190

191-
uf2 file is generated at the end of `all` target
191+
uf2 file is generated last by `all` target
192192

193193
```
194194
$ make V=1 SD=s140 SERIAL=/dev/tty.usbmodem1411 BOARD=feather52840 all
@@ -198,10 +198,4 @@ Converting to uf2, output size: 392192, start address: 0x26000
198198
Wrote 392192 bytes to build-feather52840-s140/firmware.uf2.
199199
```
200200

201-
Simply drag and drop firmware.uf2 to the MSC, the nrf52840 will blink fast and reset after done.
202-
203-
**Note**: you need to update `tools/uf2` for uf2conv.py to support hex file input, current circuitpython's master use older verion of uf2conv.py which only support bin file input. To update, change directory to top folder of circuitpython and run. The size of uf2 should be ~400KB, if using the old uf2conv.py the output file would be 1 MB which is not correct.
204-
205-
```
206-
git submodule update --init
207-
```
201+
Simply drag and drop firmware.uf2 to the MSC, the nrf52840 will blink fast and reset after done.

0 commit comments

Comments
 (0)