summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2019-10-14 14:19:09 -0700
committerGitHub <noreply@github.com>2019-10-14 14:19:09 -0700
commit51582abc87f59313cdd6a5f5fa4214d0afa65cac (patch)
tree68f3a70c6ab7d89d221997f096ef69d570a41857 /tools
parent1a53ced167f4ea7e8b2d4b9b57900c769fca6ad0 (diff)
parent150f9041e32f8d0887378d6568db1f50bf2b9317 (diff)
Merge pull request #2207 from kamtom480/circuitpython-spresense
Add Spresense board
Diffstat (limited to 'tools')
-rw-r--r--tools/build_board_info.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py
index 7d0d2996c..efa481a63 100644
--- a/tools/build_board_info.py
+++ b/tools/build_board_info.py
@@ -12,18 +12,20 @@ from sh.contrib import git
sys.path.append("adabot")
import adabot.github_requests as github
-SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4"]
+SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4", "cxd56"]
BIN = ('bin',)
UF2 = ('uf2',)
BIN_UF2 = ('bin', 'uf2')
HEX = ('hex',)
+SPK = ('spk',)
# Default extensions
extension_by_port = {
"nrf": UF2,
"atmel-samd": UF2,
"stm32f4": BIN,
+ "cxd56": SPK,
}
# Per board overrides