summaryrefslogtreecommitdiff
path: root/ao-bringup
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-09-02 23:33:27 -0500
committerKeith Packard <keithp@keithp.com>2016-09-02 23:33:27 -0500
commitdfaabc1ca3aaad0d249283308b06d3e0567f0c59 (patch)
treef39d5185f8ea82ed3a30d6a6d7be8c7d16d60e6c /ao-bringup
parent8bbef0c7039f4a0c6ac368fd994c2e52d84d293c (diff)
ao-bringup/turnon_telemetrum: serial on cmd line. Loop on accel fail
These make the script easier to use Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-bringup')
-rwxr-xr-xao-bringup/turnon_telemetrum29
1 files changed, 24 insertions, 5 deletions
diff --git a/ao-bringup/turnon_telemetrum b/ao-bringup/turnon_telemetrum
index ba40a08a..5c62c49d 100755
--- a/ao-bringup/turnon_telemetrum
+++ b/ao-bringup/turnon_telemetrum
@@ -15,17 +15,32 @@ else
fi
VERSION=2.0
+PRODUCT=TeleMetrum
-echo "TeleMetrum v$VERSION Turn-On and Calibration Program"
+echo "$PRODUCT v$VERSION Turn-On and Calibration Program"
echo "Copyright 2014 by Bdale Garbee. Released under GPL v2"
echo
echo "Expectations:"
-echo "\tTeleMetrum v$VERSION powered from USB"
+echo "\t$PRODUCT v$VERSION powered from USB"
echo "\t\twith ST-Link-V2 cabled to debug header"
echo "\t\twith coax from UHF to frequency counter"
echo
-echo -n "TeleMetrum-$VERSION serial number: "
-read SERIAL
+echo -n "$PRODUCT-$VERSION serial number: "
+
+case $# in
+ 1)
+ SERIAL="$1"
+ echo "$PRODUCT-$VERSION serial number: $SERIAL"
+ ;;
+ 0)
+ echo -n "$PRODUCT-$VERSION serial number: "
+ read SERIAL
+ ;;
+ *)
+ echo "Usage: $0 <serial-number>" 1>&2
+ exit 1;
+ ;;
+esac
echo $FLASH_STM
@@ -53,7 +68,11 @@ echo 'E 0' > $dev
SERIAL=$SERIAL ./cal-freq $dev
-../ao-tools/ao-cal-accel/ao-cal-accel $dev
+failed=1
+while [ $failed = 1 ]; do
+ ../ao-tools/ao-cal-accel/ao-cal-accel $dev
+ failed=$?
+done
echo 'E 1' > $dev