ao-bringup: Use new ao-cal-freq options when flashing teledongle v3.0
authorKeith Packard <keithp@keithp.com>
Tue, 9 Oct 2018 02:40:32 +0000 (19:40 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 9 Oct 2018 02:40:32 +0000 (19:40 -0700)
Use --nosave and --output to get the value needed to reflash the device.

Signed-off-by: Keith Packard <keithp@keithp.com>
ao-bringup/turnon_teledongle

index 0cdbde7a5973e37830e775ed677da6a0a66b503b..983f1010340004b69b1c7e0a74f2d5e61118a5e6 100755 (executable)
@@ -71,7 +71,9 @@ esac
 
 echo 'E 0' > $dev
 
-SERIAL=$SERIAL ./cal-freq $dev
+CALFILE=cal-$SERIAL.txt
+
+../ao-tools/ao-cal-freq/ao-cal-freq --verbose --nosave --output=$CALFILE --tty=$dev
 
 case $? in
     0)
@@ -82,7 +84,7 @@ case $? in
        ;;
 esac
 
-CAL_VALUE=`grep "^$SERIAL," cal_values | tail -1 | sed 's/^[^,]*,//'`
+CAL_VALUE=`cat $CALFILE`
 
 case "$CAL_VALUE" in
     [1-9]*)
@@ -93,6 +95,8 @@ case "$CAL_VALUE" in
        ;;
 esac
 
+echo $SERIAL","$CAL_VALUE >> cal_values
+
 echo "Reflashing with calibration: $CAL_VALUE"
 
 $USBLOAD --cal=$CAL_VALUE --tty=$dev $ALTOS || exit 1