Skip to content

Commit 0f64663

Browse files
authored
Merge pull request #2699 from hierophect/stm32-port-namechange
STM32: port directory name change
2 parents dd21ec0 + 18442c5 commit 0f64663

File tree

166 files changed

+8
-26
lines changed

Some content is hidden

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

166 files changed

+8
-26
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@
9696
[submodule "frozen/circuitpython-stage"]
9797
path = frozen/circuitpython-stage
9898
url = https://github.com/python-ugame/circuitpython-stage.git
99-
[submodule "ports/stm32f4/stm32f4"]
100-
path = ports/stm32f4/stm32f4
99+
[submodule "ports/stm/stm32f4"]
100+
path = ports/stm/stm32f4
101101
url = https://github.com/adafruit/stm32f4.git
102102
[submodule "ports/cxd56/spresense-exported-sdk"]
103103
path = ports/cxd56/spresense-exported-sdk

conf.py

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,8 @@
121121
"ports/atmel-samd/peripherals",
122122
"ports/atmel-samd/QTouch",
123123
"ports/atmel-samd/tools",
124-
"ports/bare-arm",
125-
"ports/cc3200",
126-
"ports/cc3200/FreeRTOS",
127-
"ports/cc3200/hal",
128124
"ports/cxd56/mkspk",
129125
"ports/cxd56/spresense-exported-sdk",
130-
"ports/esp32",
131-
"ports/esp8266/boards",
132-
"ports/esp8266/common-hal",
133-
"ports/esp8266/modules",
134126
"ports/minimal",
135127
"ports/mimxrt10xx/peripherals",
136128
"ports/mimxrt10xx/sdk",
@@ -140,20 +132,10 @@
140132
"ports/nrf/nrfx",
141133
"ports/nrf/peripherals",
142134
"ports/nrf/usb",
143-
"ports/stm32f4/stm32f4",
144-
"ports/stm32f4/peripherals",
145-
"ports/stm32f4/ref",
146-
"ports/pic16bit",
147-
"ports/qemu-arm",
148-
"ports/stm32",
149-
"ports/stm32/hal",
150-
"ports/stm32/cmsis",
151-
"ports/stm32/usbdev",
152-
"ports/stm32/usbhost",
153-
"ports/teensy",
135+
"ports/stm/stm32f4",
136+
"ports/stm/peripherals",
137+
"ports/stm/ref",
154138
"ports/unix",
155-
"ports/windows",
156-
"ports/zephyr",
157139
"py",
158140
"shared-bindings/util.*",
159141
"shared-module",

docs/supported_ports.rst

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tools/build_board_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
sys.path.append("adabot")
1313
import adabot.github_requests as github
1414

15-
SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4", "cxd56", "mimxrt10xx"]
15+
SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm", "cxd56", "mimxrt10xx"]
1616

1717
BIN = ('bin',)
1818
UF2 = ('uf2',)
@@ -29,7 +29,7 @@
2929
extension_by_port = {
3030
"nrf": UF2,
3131
"atmel-samd": UF2,
32-
"stm32f4": BIN,
32+
"stm": BIN,
3333
"cxd56": SPK,
3434
"mimxrt10xx": HEX_UF2,
3535
}

0 commit comments

Comments
 (0)