altos: Add nickle kalman implementation.
[fw/altos] / src / ao_telemetry.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 __xdata uint16_t ao_telemetry_interval = 0;
21 __xdata uint8_t ao_rdf = 0;
22 __xdata uint16_t ao_rdf_time;
23
24 #define AO_RDF_INTERVAL_TICKS   AO_SEC_TO_TICKS(5)
25 #define AO_RDF_LENGTH_MS        500
26
27 void
28 ao_telemetry(void)
29 {
30         uint16_t        time;
31         int16_t         delay;
32         static __xdata struct ao_telemetry telemetry;
33
34         ao_config_get();
35         while (!ao_flight_number)
36                 ao_sleep(&ao_flight_number);
37         memcpy(telemetry.callsign, ao_config.callsign, AO_MAX_CALLSIGN);
38         telemetry.serial = ao_serial_number;
39         telemetry.flight = ao_log_full() ? 0 : ao_flight_number;
40         telemetry.accel_plus_g = ao_config.accel_plus_g;
41         telemetry.accel_minus_g = ao_config.accel_minus_g;
42         for (;;) {
43                 while (ao_telemetry_interval == 0)
44                         ao_sleep(&ao_telemetry_interval);
45                 time = ao_rdf_time = ao_time();
46                 while (ao_telemetry_interval) {
47                         telemetry.flight_state = ao_flight_state;
48 #if HAS_ACCEL
49                         telemetry.flight_accel = ao_flight_accel;
50                         telemetry.ground_accel = ao_ground_accel;
51                         telemetry.flight_vel = ao_flight_vel;
52 #endif
53                         telemetry.flight_pres = ao_flight_pres;
54                         telemetry.ground_pres = ao_ground_pres;
55 #if HAS_ADC
56                         ao_adc_get(&telemetry.adc);
57 #endif
58 #if HAS_GPS
59                         ao_mutex_get(&ao_gps_mutex);
60                         memcpy(&telemetry.gps, &ao_gps_data, sizeof (struct ao_gps_data));
61                         memcpy(&telemetry.gps_tracking, &ao_gps_tracking_data, sizeof (struct ao_gps_tracking_data));
62                         ao_mutex_put(&ao_gps_mutex);
63 #endif
64                         ao_radio_send(&telemetry, sizeof (telemetry));
65                         if (ao_rdf &&
66                             (int16_t) (ao_time() - ao_rdf_time) >= 0)
67                         {
68                                 ao_rdf_time = ao_time() + AO_RDF_INTERVAL_TICKS;
69                                 ao_radio_rdf(AO_RDF_LENGTH_MS);
70                         }
71                         time += ao_telemetry_interval;
72                         delay = time - ao_time();
73                         if (delay > 0)
74                                 ao_delay(delay);
75                         else
76                                 time = ao_time();
77                 }
78         }
79 }
80
81 void
82 ao_telemetry_set_interval(uint16_t interval)
83 {
84         ao_telemetry_interval = interval;
85         ao_wakeup(&ao_telemetry_interval);
86 }
87
88 void
89 ao_rdf_set(uint8_t rdf)
90 {
91         ao_rdf = rdf;
92         if (rdf == 0)
93                 ao_radio_rdf_abort();
94         else
95                 ao_rdf_time = ao_time();
96 }
97
98 __xdata struct ao_task  ao_telemetry_task;
99
100 void
101 ao_telemetry_init()
102 {
103         ao_add_task(&ao_telemetry_task, ao_telemetry, "telemetry");
104 }