diff options
| author | hathach <[email protected]> | 2019-05-01 16:04:41 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-05-01 16:04:41 +0700 |
| commit | d204ae27fad34dc6ead9ae32e9e3e7c5314ab43d (patch) | |
| tree | 9a969857650d0596b412ebea95cac4b79c1f5bf8 | |
| parent | 8a5bd30fa6c84e81047ccb336899215c58deeb7f (diff) | |
update build script
| -rw-r--r-- | tools/build_all.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/build_all.py b/tools/build_all.py index e3439cb5b..8a945712e 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -11,3 +11,9 @@ for example in all_device_example: for board in all_boards: subprocess.run("make -j2 -C examples/device/{} BOARD={} clean".format(example, board), shell=True) subprocess.run("make -j2 -C examples/device/{} BOARD={} all".format(example, board), shell=True) + +# FreeRTOS example +example = 'cdc_msc_hid_freertos' +board = 'pca10056' +subprocess.run("make -j2 -C examples/device/{} BOARD={} clean".format(example, board), shell=True) +subprocess.run("make -j2 -C examples/device/{} BOARD={} all".format(example, board), shell=True) |
