Skip to content

Commit b6b5ed9

Browse files
committed
Remove nRF52832 support
1 parent 1dc3957 commit b6b5ed9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+8
-22864
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ git:
2121
# that SDK is shortest and add it there. In the case of major re-organizations,
2222
# just try to make the builds "about equal in run time"
2323
env:
24-
- TRAVIS_TESTS="unix docs translations website" TRAVIS_BOARDS="feather_huzzah circuitplayground_express mini_sam_m4 grandcentral_m4_express pca10056 pca10059 feather_nrf52832 feather_nrf52840_express makerdiary_nrf52840_mdk particle_boron particle_argon particle_xenon sparkfun_nrf52840_mini" TRAVIS_SDK=arm:nrf:esp8266
24+
- TRAVIS_TESTS="unix docs translations website" TRAVIS_BOARDS="feather_huzzah circuitplayground_express mini_sam_m4 grandcentral_m4_express pca10056 pca10059 feather_nrf52840_express makerdiary_nrf52840_mdk particle_boron particle_argon particle_xenon sparkfun_nrf52840_mini" TRAVIS_SDK=arm:nrf:esp8266
2525
- TRAVIS_BOARDS="metro_m0_express metro_m4_express pirkey_m0 trellis_m4_express trinket_m0" TRAVIS_SDK=arm
2626
- TRAVIS_BOARDS="feather_radiofruit_zigbee gemma_m0 hallowing_m0_express itsybitsy_m0_express itsybitsy_m4_express meowmeow" TRAVIS_SDK=arm
2727
- TRAVIS_BOARDS="feather_m0_express_crickit feather_m0_rfm69 feather_m0_rfm9x feather_m4_express arduino_zero arduino_mkr1300 arduino_mkrzero" TRAVIS_SDK=arm

ports/nrf/README.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ This is a port of CircuitPython to the Nordic Semiconductor nRF52 series of chip
2222

2323
## Tested Hardware
2424

25-
* nRF52832
26-
* [PCA10040](http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fdevelopment%2Fnrf52_dev_kit.html)
27-
* [Adafruit Feather nRF52](https://www.adafruit.com/product/3406)
2825
* nRF52840
2926
* [PCA10056](http://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK)
3027

@@ -36,7 +33,6 @@ the following links:
3633
> **NOTE**: These board specific readmes may be more up to date than the
3734
generic board-neutral documentation further down.
3835

39-
* Adafruit [Feather nRF52](boards/feather_nrf52832/README.md): 512KB Flash, 64KB SRAM
4036
* Adafruit [Feather nRF52840](boards/feather_nrf52840_express/README.md): 1MB Flash, 256KB SRAM
4137
* Nordic PCA10056 see [Feather nRF52840](boards/pca10056/README.md)
4238
* MakerDiary NRF52840 MDK see [its README](boards/makerdiary_nrf52840_mdk/README.md)
@@ -77,9 +73,7 @@ Note: further tuning of features to include in bluetooth or even setting up the
7773

7874
Target Board (BOARD) | Bluetooth Stack (SD) | Bluetooth Support | Flash Util
7975
-------------------------|-------------------------|------------------------|-------------------------------
80-
pca10040 | s132 | Peripheral and Scanner | [Segger](#segger-targets)
8176
pca10056 | s140 | Peripheral and Scanner | [Segger](#segger-targets)
82-
feather_nrf52832 | s132 | Peripheral and Scanner | [UART DFU](#dfu-targets)
8377
feather_nrf52840_express | s140 | Peripheral and Scanner | UF2 bootloader
8478
makerdiary_nrf52840_mdk | s140 | Peripheral and Scanner | pyocd or ARM mbed DAPLink
8579

@@ -111,8 +105,8 @@ run follow command to install [adafruit-nrfutil](https://github.com/adafruit/Ada
111105

112106
Example on how to generate and flash feather_nrf52832 target:
113107

114-
make BOARD=feather_nrf52832 SD=s132
115-
make BOARD=feather_nrf52832 SD=s132 dfu-gen dfu-flash
108+
make BOARD=feather_nrf52840 SD=s140
109+
make BOARD=feather_nrf52840 SD=s140 dfu-gen dfu-flash
116110

117111
## Bluetooth LE REPL
118112

ports/nrf/bluetooth/bluetooth_common.mk

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
ifeq ($(SD), s132)
2-
CFLAGS += -DBLUETOOTH_SD=132
3-
4-
ifeq ($(SOFTDEV_VERSION), 2.0.1)
5-
CFLAGS += -DBLE_API_VERSION=2
6-
else ifeq ($(SOFTDEV_VERSION), 5.0.0)
7-
CFLAGS += -DBLE_API_VERSION=4
8-
endif
9-
else ifeq ($(SD), s140)
1+
ifeq ($(SD), s140)
102
CFLAGS += -DBLUETOOTH_SD=140
113
CFLAGS += -DBLE_API_VERSION=4
124
else

ports/nrf/bluetooth/s132_nrf52_5.0.0/s132_nrf52_5.0.0_API-update.diff

-1,550
This file was deleted.

0 commit comments

Comments
 (0)