altos/stm32f4: Wrong value for CK48MSEL_PLL_Q
[fw/altos] / ao-bringup / turnon_telemega
1 #!/bin/sh
2
3 if [ -x /usr/bin/ao-flash-stm ]; then
4         FLASH_STM=/usr/bin/ao-flash-stm
5 else
6         echo "Can't find ao-flash-stm!  Aborting."
7         exit 1
8 fi
9
10 if [ -x /usr/bin/ao-usbload ]; then
11         USBLOAD=/usr/bin/ao-usbload
12 else
13         echo "Can't find ao-usbload!  Aborting."
14         exit 1
15 fi
16
17 VERSION=3.0
18 REPO=~/altusmetrumllc/Binaries
19 PRODUCT=TeleMega
20
21 echo "$PRODUCT v$VERSION Turn-On and Calibration Program"
22 echo "Copyright 2017 by Bdale Garbee.  Released under GPL v3"
23 echo
24 echo "Expectations:"
25 echo "\t$PRODUCT v$VERSION powered from USB"
26 echo "\t\twith ST-Link-V2 cabled to debug header"
27 echo "\t\twith coax from UHF to frequency counter"
28 echo
29
30 case $# in
31     1)
32         SERIAL="$1"
33         echo "$PRODUCT-$VERSION serial number: $SERIAL" 
34         ;;
35     0)
36         echo -n "$PRODUCT-$VERSION serial number: "
37         read SERIAL
38         ;;
39     *)
40         echo "Usage: $0 <serial-number>" 1>&2
41         exit 1;
42         ;;
43 esac
44
45 echo $FLASH_STM
46
47 $FLASH_STM $REPO/loaders/telemega-v$VERSION*.elf 
48
49 sleep 3
50
51 $USBLOAD --serial=$SERIAL --force $REPO/telemega-v$VERSION*.elf || exit 1
52
53 sleep 5
54
55 dev=`ao-list | awk '/TeleMega-v'"$VERSION"'/ { print $3; exit(0); }'`
56
57 case "$dev" in
58 /dev/tty*)
59         echo "TeleMega found on $dev"
60         ;;
61 *)
62         echo 'No TeleMega-v'"$VERSION"' found'
63         exit 1
64         ;;
65 esac
66
67 echo 'E 0' > $dev
68
69 SERIAL=$SERIAL ./cal-freq $dev
70
71 failed=1
72 while [ $failed = 1 ]; do
73     ../ao-tools/ao-cal-accel/ao-cal-accel $dev
74     failed=$?
75 done
76
77 echo 'E 1' > $dev
78
79 ./test-telemega
80
81 exit $?