summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2020-03-11 19:00:49 -0400
committerLucian Copeland <hierophect@gmail.com>2020-03-11 19:00:49 -0400
commitf81e2c0487573997e1e76431c91b21b084096d7f (patch)
tree7975984638264790474de4b47bd674d7992d7ee5 /tools
parent7ff336fbc5436c1bd2281a7d3034e30de6fbebdd (diff)
change CI target
Diffstat (limited to 'tools')
-rw-r--r--tools/build_board_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py
index 3c8f44f74..b64f734f8 100644
--- a/tools/build_board_info.py
+++ b/tools/build_board_info.py
@@ -12,7 +12,7 @@ from sh.contrib import git
sys.path.append("adabot")
import adabot.github_requests as github
-SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4", "cxd56", "mimxrt10xx"]
+SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm", "cxd56", "mimxrt10xx"]
BIN = ('bin',)
UF2 = ('uf2',)
@@ -29,7 +29,7 @@ DOWNLOAD_BASE_URL = "https://downloads.circuitpython.org/bin"
extension_by_port = {
"nrf": UF2,
"atmel-samd": UF2,
- "stm32f4": BIN,
+ "stm": BIN,
"cxd56": SPK,
"mimxrt10xx": HEX_UF2,
}