diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-11-29 10:01:47 -0600 |
---|---|---|
committer | joeycastillo <joeycastillo@utexas.edu> | 2022-11-29 10:01:47 -0600 |
commit | 967da2465a5d2c90f2cfc82c20a5b420b795d65c (patch) | |
tree | 5052d680a00c198201161aae23ae02a0250f86d4 /movement/make | |
parent | ef87f44572ea204404dbcc5509fdc1f057d79026 (diff) | |
download | Sensor-Watch-967da2465a5d2c90f2cfc82c20a5b420b795d65c.tar.gz Sensor-Watch-967da2465a5d2c90f2cfc82c20a5b420b795d65c.tar.bz2 Sensor-Watch-967da2465a5d2c90f2cfc82c20a5b420b795d65c.zip |
new backer firmware with original lineup
Diffstat (limited to 'movement/make')
-rwxr-xr-x | movement/make/make_alternate_fw.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/movement/make/make_alternate_fw.sh b/movement/make/make_alternate_fw.sh index 739c8557..d1ce7673 100755 --- a/movement/make/make_alternate_fw.sh +++ b/movement/make/make_alternate_fw.sh @@ -3,7 +3,7 @@ fw_dir="firmware/download" sim_dir="firmware/simulate" colors=("green" "blue") -variants=("standard" "alt_time" "deep_space_now" "focus" "the_athlete" "the_backpacker" "the_stargazer") +variants=("standard" "backer" "alt_time" "deep_space_now" "focus" "the_athlete" "the_backpacker" "the_stargazer") if [ -d "$fw_dir" ] ; then rm -r "$fw_dir" @@ -25,7 +25,7 @@ do make LED=$COLOR FIRMWARE=$VARIANT mv "build/watch.uf2" "$fw_dir/$variant-$color.uf2" done - make clean + rm -rf ./build-sim emmake make FIRMWARE=$VARIANT mkdir "$sim_dir/$variant/" mv "build-sim/watch.wasm" "$sim_dir/$variant/" |