Skip to content

Commit e6f8ad6

Browse files
committed
add stm32 port to workflow
1 parent fca440f commit e6f8ad6

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ jobs:
145145
- "trinket_m0_haxpress"
146146
- "uchip"
147147
- "ugame10"
148+
- "stm32f411ve_discovery"
148149

149150
steps:
150151
- name: Set up Python 3.5

tools/build_board_info.py

Lines changed: 6 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"]
15+
SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4"]
1616

1717
BIN = ('bin',)
1818
UF2 = ('uf2',)
@@ -23,6 +23,7 @@
2323
extension_by_port = {
2424
"nrf": UF2,
2525
"atmel-samd": UF2,
26+
"stm32f4": BIN,
2627
}
2728

2829
# Per board overrides
@@ -40,7 +41,10 @@
4041
"makerdiary_nrf52840_mdk_usb_dongle": HEX,
4142
"pca10056": BIN_UF2,
4243
"pca10059": BIN_UF2,
43-
"electronut_labs_blip": HEX
44+
"electronut_labs_blip": HEX,
45+
46+
# stm32f4
47+
"stm32f411ve_discovery": BIN
4448
}
4549

4650
aliases_by_board = {

0 commit comments

Comments
 (0)