update TeleGPS v3.0 production script to flash correct firmware versions
[fw/altos] / ao-bringup / turnon_telegps
index b6da2898bbaece3545bce832e5f32bda8f4e1017..7c16d3619489afd4ba5bfe60855e335a3d1b6d94 100755 (executable)
@@ -17,12 +17,12 @@ else
 fi
 
 PRODUCT=TeleGPS
-VERSION=1.0
+VERSION=3.0
 BASE=`echo $PRODUCT | tr 'A-Z' 'a-z'`
 echo $FILE
 
 echo "$PRODUCT v$VERSION Turn-On and Calibration Program"
-echo "Copyright 2014 by Bdale Garbee.  Released under GPL v2"
+echo "Copyright 2023 by Bdale Garbee.  Released under GPL v3"
 echo
 echo "Expectations:"
 echo "\t$PRODUCT v$VERSION powered from USB"
@@ -47,20 +47,20 @@ esac
 #
 # Use released versions of everything
 #
-FLASH_FILE=~/altusmetrumllc/Binaries/loaders/telegps-v1.0-altos-flash-*.elf
-ALTOS_FILE=~/altusmetrumllc/Binaries/telegps-v1.0-*.elf
+FLASH_FILE=~/altusmetrumllc/Binaries/loaders/telegps-v3.0-altos-flash-*.elf
+ALTOS_FILE=~/altusmetrumllc/Binaries/telegps-v3.0-*.elf
 
 echo $FLASH_LPC $FLASH_FILE
 
 $FLASH_LPC $FLASH_FILE || exit 1
 
-sleep 2
+sleep 1
 
 echo $USBLOAD $ALTOS_FILE
 
 $USBLOAD --serial=$SERIAL $ALTOS_FILE || exit 1
 
-sleep 2
+sleep 1
 
 dev=`ao-list | awk '/TeleGPS-v'"$VERSION"'/ { print $3; exit(0); }'`
 
@@ -76,6 +76,6 @@ esac
 
 SERIAL=$SERIAL ./cal-freq $dev
 
-./test-telegps
+./test-telegps-v3
 
 exit $?