diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2018-12-11 11:51:07 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2018-12-11 11:51:07 -0800 |
| commit | b1c882a26b171352a5ee653c4889f41731d41ba7 (patch) | |
| tree | e8fd2c8e292330c3bc17f8d3682bc778ff262b99 /tools/build_board_info.py | |
| parent | 70939ad5170df3a0564e9b913adfe387c388b086 (diff) | |
Default nrf boards to UF2
Diffstat (limited to 'tools/build_board_info.py')
| -rw-r--r-- | tools/build_board_info.py | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py index eb9f28d90..379cf55c4 100644 --- a/tools/build_board_info.py +++ b/tools/build_board_info.py @@ -21,24 +21,29 @@ HEX = ('hex',) # Default extensions extension_by_port = { - "nrf": BIN, + "nrf": UF2, "esp8266": BIN, "atmel-samd": UF2, } # Per board overrides extension_by_board = { - "feather_nrf52832": BIN, + # samd "arduino_mkr1300": BIN, "arduino_zero": BIN, "feather_m0_adalogger": BIN_UF2, "feather_m0_basic": BIN_UF2, "feather_m0_rfm69": BIN, "feather_m0_rfm9x": BIN, + + # nrf52832 + "feather_nrf52832": BIN, + "pca10040": BIN, + + # nRF52840 dev kits that may not have UF2 bootloaders, "makerdiary_nrf52840_mdk": HEX, - "particle_argon": UF2, - "particle_boron": UF2, - "particle_xenon": UF2 + "pca10056": BIN_UF2, + "pca10059": BIN_UF2 } def get_languages(): |
