aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster/fireflies-ui/build-all.sh
diff options
context:
space:
mode:
authorSelene ToyKeeper2019-04-08 12:11:41 -0600
committerSelene ToyKeeper2019-04-08 12:11:41 -0600
commit43a206cd59ad4da6fa8cfc4ac15aea6085651cab (patch)
tree79d8a31a545859884485cd7836c6d1ba3e5b9b0e /spaghetti-monster/fireflies-ui/build-all.sh
parentmerged trunk (diff)
parentfixed bug: hold-from-off then release and hold failed in stepped ramp (diff)
downloadanduril-43a206cd59ad4da6fa8cfc4ac15aea6085651cab.tar.gz
anduril-43a206cd59ad4da6fa8cfc4ac15aea6085651cab.tar.bz2
anduril-43a206cd59ad4da6fa8cfc4ac15aea6085651cab.zip
merged fsm branch, resolved conflicts in anduril.c, did some quick testing
Diffstat (limited to 'spaghetti-monster/fireflies-ui/build-all.sh')
-rwxr-xr-xspaghetti-monster/fireflies-ui/build-all.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/spaghetti-monster/fireflies-ui/build-all.sh b/spaghetti-monster/fireflies-ui/build-all.sh
new file mode 100755
index 0000000..41d92d0
--- /dev/null
+++ b/spaghetti-monster/fireflies-ui/build-all.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+cp -av ../anduril/cfg-ff*.h .
+
+UI=fireflies-ui
+
+for TARGET in cfg-*.h ; do
+ NAME=$(echo "$TARGET" | perl -ne '/cfg-(.*).h/ && print "$1\n";')
+ echo "===== $NAME ====="
+ echo ../../../bin/build.sh 85 "$UI" "-DCONFIGFILE=${TARGET}"
+ ../../../bin/build.sh 85 "$UI" "-DCONFIGFILE=${TARGET}"
+ mv -f "$UI".hex "$UI".$NAME.hex
+done