diff options
| author | hathach <[email protected]> | 2019-03-23 16:51:07 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-03-23 16:51:07 +0700 |
| commit | df1aac44b839f65bf8b5961d4d184c515ad18f5c (patch) | |
| tree | a01d718b7ee77bf1363b521f2dd66e3dc2510c20 /tools | |
| parent | 43eb1a8b1631ed4b460db123717a7226c10c701f (diff) | |
add board_noos_millis() for blinky
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build_all.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/build_all.py b/tools/build_all.py new file mode 100644 index 000000000..4b6fa5775 --- /dev/null +++ b/tools/build_all.py @@ -0,0 +1,11 @@ +import os +import shutil +import sys +import subprocess +import time + +all_boards = ["metro_m0_express", "metro_m4_express", "pca10056", "stm32f407g_disc1"] + +for board in all_boards: + subprocess.run("make -j2 -C examples/device/cdc_msc_hid BOARD={} clean".format(board), shell=True) + subprocess.run("make -j2 -C examples/device/cdc_msc_hid BOARD={} all".format(board), shell=True) |
