diff options
| author | arturo182 <arturo182@tlen.pl> | 2018-06-22 10:04:39 +0200 |
|---|---|---|
| committer | arturo182 <arturo182@tlen.pl> | 2018-06-22 10:04:39 +0200 |
| commit | 596a1d884342ce59138de321c1a2e783662eab90 (patch) | |
| tree | bfeac7077ac6488b0ef8bf617ded3812b16d4f1a | |
| parent | 0686857e3c28b69c49a0cbdadc683394754b5f86 (diff) | |
nrf: Rename feather52 to feather52832 in readme files
| -rw-r--r-- | ports/nrf/README.md | 12 | ||||
| -rw-r--r-- | ports/nrf/boards/feather52832/README.md | 16 |
2 files changed, 14 insertions, 14 deletions
diff --git a/ports/nrf/README.md b/ports/nrf/README.md index eff0f80b5..34941d242 100644 --- a/ports/nrf/README.md +++ b/ports/nrf/README.md @@ -37,7 +37,7 @@ Prerequisite steps for building the nrf port: git submodule update --init make -C mpy-cross -By default, the feather52 (nRF52832) is used as compile target. To build and flash issue the following command inside the ports/nrf/ folder: +By default, the feather52832 is used as compile target. To build and flash issue the following command inside the ports/nrf/ folder: make make flash @@ -68,7 +68,7 @@ Note: further tuning of features to include in bluetooth or even setting up the Target Board (BOARD) | Bluetooth Stack (SD) | Bluetooth Support | Flash Util ---------------------|-------------------------|------------------------|------------------------------- pca10040 | s132 | Peripheral and Scanner | [Segger](#segger-targets) -feather52 | s132 | Peripheral and Scanner | [UART DFU](#dfu-targets) +feather52832 | s132 | Peripheral and Scanner | [UART DFU](#dfu-targets) pca10056 | s140 | Peripheral and Scanner | [Segger](#segger-targets) ## Segger Targets @@ -99,11 +99,11 @@ note: On Linux it might be required to link SEGGER's `libjlinkarm.so` inside nrf * dfu-gen: Generates a Firmware zip to be used by the DFU flash application. * dfu-flash: Triggers the DFU flash application to upload the firmware from the generated Firmware zip file. -Example on how to generate and flash feather52 target: +Example on how to generate and flash feather52832 target: - make BOARD=feather52 SD=s132 - make BOARD=feather52 SD=s132 dfu-gen - make BOARD=feather52 SD=s132 dfu-flash + make BOARD=feather52832 SD=s132 + make BOARD=feather52832 SD=s132 dfu-gen + make BOARD=feather52832 SD=s132 dfu-flash ## Bluetooth LE REPL diff --git a/ports/nrf/boards/feather52832/README.md b/ports/nrf/boards/feather52832/README.md index c98f54614..cdd542068 100644 --- a/ports/nrf/boards/feather52832/README.md +++ b/ports/nrf/boards/feather52832/README.md @@ -47,12 +47,12 @@ $ sudo python setup.py install #### REPL over UART (default settings) To build a CircuitPython binary with default settings for the -`feather52` target enter: +`feather52832` target enter: -> **NOTE:** `BOARD=feather52` is the default option and isn't stricly required. +> **NOTE:** `BOARD=feather52832` is the default option and isn't stricly required. ``` -$ make BOARD=feather52 V=1 +$ make BOARD=feather52832 V=1 ``` #### REPL over BLE UART (AKA 'NUS') @@ -68,7 +68,7 @@ set to `1` in the `#elif (BLUETOOTH_SD == 132)` section: ... then build as normal, via: ``` -$ make BOARD=feather52 V=1 +$ make BOARD=feather52832 V=1 ``` You can then connect over BLE UART using an application like Bluefruit LE @@ -95,7 +95,7 @@ Feather52 boards to a single-bank CircuitPython compatible version: By default s132 v2.0.1 is used when no `SOFTDEV_VERSION` field is passed in: ``` -$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART boot-flash +$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART boot-flash ``` #### S132 v5.0.0 (BLE5, experimental): @@ -103,7 +103,7 @@ $ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART boot-flash To enable BLE5 support and the latest S132 release, flash the v5.0.0 bootloader via: ``` -$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART SOFTDEV_VERSION=5.0.0 boot-flash +$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART SOFTDEV_VERSION=5.0.0 boot-flash ``` ### 2. Generate and flash a CircuitPython DFU .zip package over serial @@ -117,7 +117,7 @@ image, as described earlier in this readme. > The name of the serial port target will vary, depending on your OS. ``` -$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART dfu-gen dfu-flash +$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART dfu-gen dfu-flash ``` By default, CircuitPython will build with **BLE** support enabled using @@ -125,7 +125,7 @@ By default, CircuitPython will build with **BLE** support enabled using SD family or version you can enter the optional fields as shown below: ``` -$ make BOARD=feather52 SERIAL=/dev/tty.SLAB_USBtoUART SD=s132 SOFTDEV_VERSION=5.0.0 dfu-gen dfu-flash +$ make BOARD=feather52832 SERIAL=/dev/tty.SLAB_USBtoUART SD=s132 SOFTDEV_VERSION=5.0.0 dfu-gen dfu-flash ``` ## Working with CircuitPython |
