diff options
author | Keith Packard <keithp@keithp.com> | 2014-09-26 22:58:13 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-09-26 23:01:18 -0700 |
commit | b97a125a9f8bd9619833647a9b6aa6329103e136 (patch) | |
tree | e4896030420354e82b5e916651a0efcfc085f3ff | |
parent | b4eba3f3a58a9c35e3699ff14405b997c1318d91 (diff) |
ao-bringup: Auto-select programmer for teledongle turnon
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>
-rwxr-xr-x | ao-bringup/turnon_teledongle | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/ao-bringup/turnon_teledongle b/ao-bringup/turnon_teledongle index ddee5ee8..058e72ce 100755 --- a/ao-bringup/turnon_teledongle +++ b/ao-bringup/turnon_teledongle @@ -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 |