diff options
| author | Hierophect <hierophect@gmail.com> | 2019-09-04 18:10:37 -0400 |
|---|---|---|
| committer | Hierophect <hierophect@gmail.com> | 2019-09-04 18:10:37 -0400 |
| commit | e6f8ad65c18457354f46ccf972910a3796403656 (patch) | |
| tree | 9d0f04438608781717b035862af5dabc4275a3f5 /tools | |
| parent | fca440fb66aff746b0a2c752df15c445ba421fdf (diff) | |
add stm32 port to workflow
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build_board_info.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py index f2b336494..b1982d1b4 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"] +SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4"] BIN = ('bin',) UF2 = ('uf2',) @@ -23,6 +23,7 @@ HEX = ('hex',) extension_by_port = { "nrf": UF2, "atmel-samd": UF2, + "stm32f4": BIN, } # Per board overrides @@ -40,7 +41,10 @@ extension_by_board = { "makerdiary_nrf52840_mdk_usb_dongle": HEX, "pca10056": BIN_UF2, "pca10059": BIN_UF2, - "electronut_labs_blip": HEX + "electronut_labs_blip": HEX, + + # stm32f4 + "stm32f411ve_discovery": BIN } aliases_by_board = { |
