Skip to content

Commit dc69c29

Browse files
committed
rename ports/nrf to ports/nordic
1 parent 84e937f commit dc69c29

File tree

441 files changed

+105
-741
lines changed

Some content is hidden

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

441 files changed

+105
-741
lines changed

.github/actions/deps/ports/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ runs:
3131
if: steps.board-to-port.outputs.port == 'litex'
3232
uses: ./.github/actions/deps/ports/litex
3333

34-
- name: Set up nrf
35-
if: steps.board-to-port.outputs.port == 'nrf'
36-
uses: ./.github/actions/deps/ports/nrf
34+
- name: Set up nordic
35+
if: steps.board-to-port.outputs.port == 'nordic'
36+
uses: ./.github/actions/deps/ports/nordic

.github/actions/deps/ports/nrf/action.yml renamed to .github/actions/deps/ports/nordic/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Fetch nrf port deps
1+
name: Fetch nordic port deps
22

33
runs:
44
using: composite

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ jobs:
278278
run: make -j4 -C ports/atmel-samd BOARD=feather_m0_express TRANSLATION=zh_Latn_pinyin
279279
- name: build samd51
280280
run: make -j4 -C ports/atmel-samd BOARD=feather_m4_express TRANSLATION=es
281-
- name: build nrf
282-
run: make -j4 -C ports/nrf BOARD=feather_nrf52840_express TRANSLATION=fr
281+
- name: build nordic
282+
run: make -j4 -C ports/nordic BOARD=feather_nrf52840_express TRANSLATION=fr
283283
- name: build stm
284284
run: make -j4 -C ports/stm BOARD=feather_stm32f405_express TRANSLATION=pt_BR
285285
# I gave up trying to do esp builds on windows when I saw

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
[submodule "frozen/Adafruit_CircuitPython_Crickit"]
6464
path = frozen/Adafruit_CircuitPython_Crickit
6565
url = https://github.com/adafruit/Adafruit_CircuitPython_Crickit
66-
[submodule "ports/nrf/nrfx"]
67-
path = ports/nrf/nrfx
66+
[submodule "ports/nordic/nrfx"]
67+
path = ports/nordic/nrfx
6868
url = https://github.com/adafruit/nrfx.git
6969
[submodule "lib/tinyusb"]
7070
path = lib/tinyusb

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Examples:
5757
cd ports/atmel-samd
5858
make BOARD=circuitplayground_express
5959

60-
cd ports/nrf
60+
cd ports/nordic
6161
make BOARD=circuitplayground_bluefruit
6262

6363
If you aren't sure what boards exist, have a peek in the boards subdirectory of your port.

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(BASEOPTS)
4040
# the i18n builder cannot share the environment and doctrees with the others
4141
I18NSPHINXOPTS = $(BASEOPTS)
4242

43-
TRANSLATE_SOURCES = extmod lib main.c ports/atmel-samd ports/cxd56 ports/espressif ports/mimxrt10xx ports/nrf ports/raspberrypi ports/stm py shared-bindings shared-module supervisor
43+
TRANSLATE_SOURCES = extmod lib main.c ports/atmel-samd ports/cxd56 ports/espressif ports/mimxrt10xx ports/nordic ports/raspberrypi ports/stm py shared-bindings shared-module supervisor
4444
# Paths to exclude from TRANSLATE_SOURCES
4545
# Each must be preceded by "-path"; if any wildcards, enclose in quotes.
4646
# Separate by "-o" (Find's "or" operand)
@@ -284,7 +284,7 @@ update-frozen-libraries:
284284
@echo "Updating all frozen libraries to latest tagged version."
285285
cd frozen; for library in *; do cd $$library; ../../tools/git-checkout-latest-tag.sh; cd ..; done
286286

287-
one-of-each: samd21 litex mimxrt10xx nrf stm
287+
one-of-each: samd21 litex mimxrt10xx nordic stm
288288

289289
samd21:
290290
$(MAKE) -C ports/atmel-samd BOARD=trinket_m0
@@ -301,13 +301,13 @@ litex:
301301
mimxrt10xx:
302302
$(MAKE) -C ports/mimxrt10xx BOARD=feather_mimxrt1011
303303

304-
nrf:
305-
$(MAKE) -C ports/nrf BOARD=feather_nrf52840_express
304+
nordic:
305+
$(MAKE) -C ports/nordic BOARD=feather_nrf52840_express
306306

307307
stm:
308308
$(MAKE) -C ports/stm BOARD=feather_stm32f405_express
309309

310-
clean-one-of-each: clean-samd21 clean-samd51 clean-espressif clean-litex clean-mimxrt10xx clean-nrf clean-stm
310+
clean-one-of-each: clean-samd21 clean-samd51 clean-espressif clean-litex clean-mimxrt10xx clean-nordic clean-stm
311311

312312
clean-samd21:
313313
$(MAKE) -C ports/atmel-samd BOARD=trinket_m0 clean
@@ -324,8 +324,8 @@ clean-litex:
324324
clean-mimxrt10xx:
325325
$(MAKE) -C ports/mimxrt10xx BOARD=feather_mimxrt1011 clean
326326

327-
clean-nrf:
328-
$(MAKE) -C ports/nrf BOARD=feather_nrf52840_express clean
327+
clean-nordic:
328+
$(MAKE) -C ports/nordic BOARD=feather_nrf52840_express clean
329329

330330
clean-stm:
331331
$(MAKE) -C ports/stm BOARD=feather_stm32f405_express clean

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ cxd56 stable
231231
espressif ``ESP32`` beta | ``ESP32-C3`` beta | ``ESP32-S2`` stable | ``ESP32-S3`` beta
232232
litex alpha
233233
mimxrt10xx alpha
234-
nrf stable
234+
nordic stable
235235
raspberrypi stable
236236
silabs (efr32) alpha
237237
stm ``F4`` stable | ``others`` beta

conf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,12 @@ def autoapi_prepare_jinja_env(jinja_env):
210210
"ports/minimal",
211211
"ports/mimxrt10xx/peripherals",
212212
"ports/mimxrt10xx/sdk",
213-
"ports/nrf/device",
214-
"ports/nrf/bluetooth",
215-
"ports/nrf/modules",
216-
"ports/nrf/nrfx",
217-
"ports/nrf/peripherals",
218-
"ports/nrf/usb",
213+
"ports/nordic/device",
214+
"ports/nordic/bluetooth",
215+
"ports/nordic/modules",
216+
"ports/nordic/nrfx",
217+
"ports/nordic/peripherals",
218+
"ports/nordic/usb",
219219
"ports/raspberrypi/sdk",
220220
"ports/raspberrypi/lib",
221221
"ports/silabs/gecko_sdk",

docs/shared_bindings_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"espressif",
3939
"litex",
4040
"mimxrt10xx",
41-
"nrf",
41+
"nordic",
4242
"raspberrypi",
4343
"silabs",
4444
"stm",

docs/supported_ports.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ Supported Ports
44
CircuitPython supports a number of microcontroller families. Support quality for each varies
55
depending on the active contributors for each port.
66

7-
Adafruit sponsored developers are actively contributing to atmel-samd, mimxrt10xx, nrf and stm
8-
ports. They also maintain the other ports in order to ensure the boards build. Additional testing
9-
is limited.
7+
Adafruit sponsored developers are actively contributing to atmel-samd, mimxrt10xx, nordic,
8+
raspberrypi, and stm ports.
9+
They also maintain the other ports in order to ensure the boards build.
10+
Additional testing is limited.
1011

1112
.. toctree::
1213
:maxdepth: 2
@@ -17,7 +18,7 @@ is limited.
1718
../ports/espressif/README
1819
../ports/litex/README
1920
../ports/mimxrt10xx/README
20-
../ports/nrf/README
21+
../ports/nordic/README
2122
../ports/raspberrypi/README
2223
../ports/silabs/README
2324
../ports/stm/README

0 commit comments

Comments
 (0)