Skip to content

Commit 596a1d8

Browse files
committed
nrf: Rename feather52 to feather52832 in readme files
1 parent 0686857 commit 596a1d8

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

ports/nrf/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Prerequisite steps for building the nrf port:
3737
git submodule update --init
3838
make -C mpy-cross
3939

40-
By default, the feather52 (nRF52832) is used as compile target. To build and flash issue the following command inside the ports/nrf/ folder:
40+
By default, the feather52832 is used as compile target. To build and flash issue the following command inside the ports/nrf/ folder:
4141

4242
make
4343
make flash
@@ -68,7 +68,7 @@ Note: further tuning of features to include in bluetooth or even setting up the
6868
Target Board (BOARD) | Bluetooth Stack (SD) | Bluetooth Support | Flash Util
6969
---------------------|-------------------------|------------------------|-------------------------------
7070
pca10040 | s132 | Peripheral and Scanner | [Segger](#segger-targets)
71-
feather52 | s132 | Peripheral and Scanner | [UART DFU](#dfu-targets)
71+
feather52832 | s132 | Peripheral and Scanner | [UART DFU](#dfu-targets)
7272
pca10056 | s140 | Peripheral and Scanner | [Segger](#segger-targets)
7373

7474
## Segger Targets
@@ -99,11 +99,11 @@ note: On Linux it might be required to link SEGGER's `libjlinkarm.so` inside nrf
9999
* dfu-gen: Generates a Firmware zip to be used by the DFU flash application.
100100
* dfu-flash: Triggers the DFU flash application to upload the firmware from the generated Firmware zip file.
101101

102-
Example on how to generate and flash feather52 target:
102+
Example on how to generate and flash feather52832 target:
103103

104-
make BOARD=feather52 SD=s132
105-
make BOARD=feather52 SD=s132 dfu-gen
106-
make BOARD=feather52 SD=s132 dfu-flash
104+
make BOARD=feather52832 SD=s132
105+
make BOARD=feather52832 SD=s132 dfu-gen
106+
make BOARD=feather52832 SD=s132 dfu-flash
107107

108108
## Bluetooth LE REPL
109109

ports/nrf/boards/feather52832/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ $ sudo python setup.py install
4747
#### REPL over UART (default settings)
4848

4949
To build a CircuitPython binary with default settings for the
50-
`feather52` target enter:
50+
`feather52832` target enter:
5151

52-
> **NOTE:** `BOARD=feather52` is the default option and isn't stricly required.
52+
> **NOTE:** `BOARD=feather52832` is the default option and isn't stricly required.
5353
5454
```
55-
$ make BOARD=feather52 V=1
55+
$ make BOARD=feather52832 V=1
5656
```
5757

5858
#### REPL over BLE UART (AKA 'NUS')
@@ -68,7 +68,7 @@ set to `1` in the `#elif (BLUETOOTH_SD == 132)` section:
6868
... then build as normal, via:
6969

7070
```
71-
$ make BOARD=feather52 V=1
71+
$ make BOARD=feather52832 V=1
7272
```
7373

7474
You can then connect over BLE UART using an application like Bluefruit LE
@@ -95,15 +95,15 @@ Feather52 boards to a single-bank CircuitPython compatible version:
9595
By default s132 v2.0.1 is used when no `SOFTDEV_VERSION` field is passed in:
9696

9797
```
98-
$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART boot-flash
98+
$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART boot-flash
9999
```
100100

101101
#### S132 v5.0.0 (BLE5, experimental):
102102

103103
To enable BLE5 support and the latest S132 release, flash the v5.0.0 bootloader via:
104104

105105
```
106-
$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART SOFTDEV_VERSION=5.0.0 boot-flash
106+
$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART SOFTDEV_VERSION=5.0.0 boot-flash
107107
```
108108

109109
### 2. Generate and flash a CircuitPython DFU .zip package over serial
@@ -117,15 +117,15 @@ image, as described earlier in this readme.
117117
> The name of the serial port target will vary, depending on your OS.
118118
119119
```
120-
$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART dfu-gen dfu-flash
120+
$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART dfu-gen dfu-flash
121121
```
122122

123123
By default, CircuitPython will build with **BLE** support enabled using
124124
`SD=s132` and the `SOFTDEV_VERSION=2.0.1`. If you wish to specify a different
125125
SD family or version you can enter the optional fields as shown below:
126126

127127
```
128-
$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART SD=s132 SOFTDEV_VERSION=5.0.0 dfu-gen dfu-flash
128+
$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART SD=s132 SOFTDEV_VERSION=5.0.0 dfu-gen dfu-flash
129129
```
130130

131131
## Working with CircuitPython

0 commit comments

Comments
 (0)