5930afaa85b8c01af4dbcb1b6480253c23535370
[fw/altos] / ao_monitor.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "ao.h"
19
20 const char const * const ao_state_names[] = {
21         "startup", "idle", "pad", "boost", "coast",
22         "apogee", "drogue", "main", "landed", "invalid"
23 };
24
25 __xdata uint8_t ao_monitoring;
26 __pdata uint8_t ao_monitor_led;
27
28 void
29 ao_monitor(void)
30 {
31         __xdata struct ao_radio_recv recv;
32         __xdata char callsign[AO_MAX_CALLSIGN+1];
33         uint8_t state;
34
35         for (;;) {
36                 __critical while (!ao_monitoring)
37                         ao_sleep(&ao_monitoring);
38                 ao_radio_recv(&recv);
39                 state = recv.telemetry.flight_state;
40                 memcpy(callsign, recv.telemetry.callsign, AO_MAX_CALLSIGN);
41                 if (state > ao_flight_invalid)
42                         state = ao_flight_invalid;
43                 if (recv.status & PKT_APPEND_STATUS_1_CRC_OK) {
44                         printf ("CALL %s SERIAL %3d RSSI %3d STATUS %02x STATE %7s ",
45                                 callsign,
46                                 recv.telemetry.addr,
47                                 (int) recv.rssi - 74, recv.status,
48                                 ao_state_names[state]);
49                         printf("%5u a: %5d p: %5d t: %5d v: %5d d: %5d m: %5d ",
50                                recv.telemetry.adc.tick,
51                                recv.telemetry.adc.accel,
52                                recv.telemetry.adc.pres,
53                                recv.telemetry.adc.temp,
54                                recv.telemetry.adc.v_batt,
55                                recv.telemetry.adc.sense_d,
56                                recv.telemetry.adc.sense_m);
57                         ao_gps_print(&recv.telemetry.gps);
58                         ao_rssi_set((int) recv.rssi - 74);
59                 } else {
60                         printf("CRC INVALID RSSI %3d\n", (int) recv.rssi - 74);
61                 }
62                 ao_usb_flush();
63                 ao_led_toggle(ao_monitor_led);
64         }
65 }
66
67 __xdata struct ao_task ao_monitor_task;
68
69 static void
70 ao_set_monitor(void)
71 {
72         ao_cmd_hex();
73         ao_monitoring = ao_cmd_lex_i != 0;
74         ao_wakeup(&ao_monitoring);
75 }
76
77 __code struct ao_cmds ao_monitor_cmds[] = {
78         { 'm',  ao_set_monitor,         "m <0 off, 1 on>                    Enable/disable radio monitoring" },
79         { 0,    ao_set_monitor, NULL },
80 };
81
82 void
83 ao_monitor_init(uint8_t monitor_led)
84 {
85         ao_monitor_led = monitor_led;
86         ao_monitoring = 0;
87         ao_cmd_register(&ao_monitor_cmds[0]);
88         ao_add_task(&ao_monitor_task, ao_monitor, "monitor");
89 }