ao-bringup: Auto-select programmer for teledongle turnon
authorKeith Packard <keithp@keithp.com>
Sat, 27 Sep 2014 05:58:13 +0000 (22:58 -0700)
committerKeith Packard <keithp@keithp.com>
Sat, 27 Sep 2014 06:01:18 +0000 (23:01 -0700)
Bdale's programmer is SN 100, Keith's is SN 186. Use the username to
figure out which one to use.

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

index ddee5ee81e6fc89091c838554c6b6b5371b421b6..058e72cec590936c7073bae6755cf17c5fb27e5f 100755 (executable)
@@ -31,18 +31,27 @@ read SERIAL
 
 echo $RAWLOAD
 
-$RAWLOAD -D 100 -r ao_led_blink.ihx
+case $USER in
+    bdale)
+       programmer=100
+       ;;
+    keithp)
+       programmer=186
+       ;;
+esac
+
+$RAWLOAD -D $programmer -r ao_led_blink.ihx
 echo "LEDs should be blinking"
 sleep 5
 
-$RAWLOAD -D 100 -r ao_radio_xmit.ihx
+$RAWLOAD -D $programmer -r ao_radio_xmit.ihx
 echo -n "Generating RF carrier.  Please enter measured frequency: "
 read FREQ
 
 CAL_VALUE=`nickle -e "floor(434.55 / $FREQ * 1186611 + 0.5)"`
 
 echo "Programming flash with cal value " $CAL_VALUE
-$AOLOAD -D 100 --cal $CAL_VALUE /usr/share/altos/teledongle-v0.2*.ihx $SERIAL
+$AOLOAD -D $programmer --cal $CAL_VALUE /usr/share/altos/teledongle-v0.2*.ihx $SERIAL
 
 echo "Serial number "$SERIAL" programmed with RF cal value "$CAL_VALUE
 echo $SERIAL","$CAL_VALUE >> cal_values