Skip to content

Commit 5cf66df

Browse files
committed
Add cxd56 to build_board_info
1 parent 0d139e4 commit 5cf66df

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tools/build_board_info.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@
1212
sys.path.append("adabot")
1313
import adabot.github_requests as github
1414

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

1717
BIN = ('bin',)
1818
UF2 = ('uf2',)
1919
BIN_UF2 = ('bin', 'uf2')
2020
HEX = ('hex',)
21+
SPK = ('spk',)
2122

2223
# Default extensions
2324
extension_by_port = {
2425
"nrf": UF2,
2526
"atmel-samd": UF2,
2627
"stm32f4": BIN,
28+
"cxd56": SPK,
2729
}
2830

2931
# Per board overrides

0 commit comments

Comments
 (0)