diff options
author | Bdale Garbee <bdale@gag.com> | 2011-02-18 19:54:18 -0700 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2011-02-18 19:54:18 -0700 |
commit | 0630e7d6d8cf6abf0fe07f9a6df40ee472cce1ef (patch) | |
tree | 221e18d5c2538e635dae48635155302d0ffa6a09 /ao-bringup | |
parent | b080e933a65d268aaaec8cfd5f617a13d5babc43 (diff) |
tie bringup scripts to Bdale's bench TeleDongle0.9.1
Diffstat (limited to 'ao-bringup')
-rwxr-xr-x | ao-bringup/turnon_teledongle | 6 | ||||
-rwxr-xr-x | ao-bringup/turnon_telemetrum | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ao-bringup/turnon_teledongle b/ao-bringup/turnon_teledongle index 5145e9b0..320cd8ff 100755 --- a/ao-bringup/turnon_teledongle +++ b/ao-bringup/turnon_teledongle @@ -31,18 +31,18 @@ read SERIAL echo $RAWLOAD -$RAWLOAD -r ao_led_blink.ihx +$RAWLOAD -D 100 -r ao_led_blink.ihx echo "LEDs should be blinking" sleep 5 -$RAWLOAD -r ao_radio_xmit.ihx +$RAWLOAD -D 100 -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 --cal $CAL_VALUE /usr/share/altos/stable/teledongle-v0.2*.ihx $SERIAL +$AOLOAD -D 100 --cal $CAL_VALUE /usr/share/altos/stable/teledongle-v0.2*.ihx $SERIAL echo "Serial number "$SERIAL" programmed with RF cal value "$CAL_VALUE echo "Unplug and replug USB, cu to the board, confirm freq and record power" diff --git a/ao-bringup/turnon_telemetrum b/ao-bringup/turnon_telemetrum index e2fd7116..47835c58 100755 --- a/ao-bringup/turnon_telemetrum +++ b/ao-bringup/turnon_telemetrum @@ -31,18 +31,18 @@ read SERIAL echo $RAWLOAD -$RAWLOAD --device TeleDongle -r ao_led_blink.ihx +$RAWLOAD --device 100 -r ao_led_blink.ihx echo "the red LED should be blinking" sleep 5 -$RAWLOAD --device TeleDongle -r ao_radio_xmit.ihx +$RAWLOAD --device 100 -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 --device TeleDongle --cal $CAL_VALUE \ +$AOLOAD --device 100 --cal $CAL_VALUE \ /usr/share/altos/stable/telemetrum-v1.1*.ihx $SERIAL echo "Serial number "$SERIAL" programmed with RF cal value "$CAL_VALUE |