submodule madness
[fw/altos] / ao-bringup / turnon_teledongle_v0.2
1 #!/bin/sh
2
3 if [ -x ../ao-tools/ao-load/ao-load ]; then
4         AOLOAD=../ao-tools/ao-load/ao-load
5 elif [ -x /usr/bin/ao-load ]; then
6         AOLOAD=/usr/bin/ao-load
7 else
8         echo "Can't find ao-load!  Aborting."
9         exit 1
10 fi
11
12 if [ -x ../ao-tools/ao-rawload/ao-rawload ]; then
13         RAWLOAD=../ao-tools/ao-rawload/ao-rawload
14 elif [ -x /usr/bin/ao-rawload ]; then
15         RAWLOAD=/usr/bin/ao-rawload
16 else
17         echo "Can't find ao-rawload!  Aborting."
18         exit 1
19 fi
20
21 echo "TeleDongle v0.2 Turn-On and Calibration Program"
22 echo "Copyright 2010 by Bdale Garbee.  Released under GPL v2"
23 echo
24 echo "Expectations:"
25 echo "\tTeleDongle v0.2 powered from USB"
26 echo "\t\twith TIdongle (on /dev/ttyACM0) cabled to debug header"
27 echo "\t\twith coax from SMA to frequency counter"
28 echo
29 echo -n "TeleDongle serial number: "
30 read SERIAL
31
32 echo $RAWLOAD
33
34 case $USER in
35     bdale)
36         programmer=100
37         ;;
38     keithp)
39         programmer=186
40         ;;
41 esac
42
43 $RAWLOAD -D $programmer -r ao_led_blink.ihx
44 echo "LEDs should be blinking"
45 sleep 5
46
47 $RAWLOAD -D $programmer -r ao_radio_xmit.ihx
48 echo -n "Generating RF carrier.  Please enter measured frequency: "
49 read FREQ
50
51 CAL_VALUE=`nickle -e "floor(434.55 / $FREQ * 1186611 + 0.5)"`
52
53 echo "Programming flash with cal value " $CAL_VALUE
54 $AOLOAD -D $programmer --cal $CAL_VALUE /usr/share/altos/teledongle-v0.2*.ihx $SERIAL
55
56 echo "Serial number "$SERIAL" programmed with RF cal value "$CAL_VALUE
57 echo $SERIAL","$CAL_VALUE >> cal_values
58 echo "Unplug and replug USB, cu to the board, confirm freq and record power"