@@ -47,12 +47,12 @@ $ sudo python setup.py install
4747#### REPL over UART (default settings)
4848
4949To 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
7474You 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:
9595By 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
103103To 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
123123By 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
125125SD 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