ao-tools: Add cc_usb_write function
[fw/altos] / ao-tools / lib / cc.h
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 #ifndef _CC_H_
19 #define _CC_H_
20
21 #include <stdio.h>
22 #include <stdint.h>
23 #include "cc-telemetry.h"
24
25 char *
26 cc_fullname (char *dir, char *file);
27
28 char *
29 cc_basename(char *file);
30
31 int
32 cc_mkdir(char *dir);
33
34 struct cc_usbdev {
35         char    *sys;
36         char    *tty;
37         char    *manufacturer;
38         char    *product;
39         int     serial; /* AltOS always uses simple integer serial numbers */
40         int     idProduct;
41         int     idVendor;
42 };
43
44 struct cc_usbdevs {
45         struct cc_usbdev        **dev;
46         int                     ndev;
47 };
48
49 void
50 cc_usbdevs_free(struct cc_usbdevs *usbdevs);
51
52 struct cc_usbdevs *
53 cc_usbdevs_scan(void);
54
55 char *
56 cc_usbdevs_find_by_arg(char *arg, char *default_product);
57
58 void
59 cc_set_log_dir(char *dir);
60
61 char *
62 cc_get_log_dir(void);
63
64 char *
65 cc_make_filename(int serial, int flight, char *ext);
66
67 /*
68  * For sequential data which are not evenly spaced
69  */
70
71 struct cc_timedataelt {
72         double  time;
73         double  value;
74 };
75
76 struct cc_timedata {
77         int                     num;
78         int                     size;
79         struct cc_timedataelt   *data;
80         double                  time_offset;
81 };
82
83
84 /*
85  * For GPS data
86  */
87
88 struct cc_gpselt {
89         double          time;
90         int             hour;
91         int             minute;
92         int             second;
93         int             flags;
94         double          lat;
95         double          lon;
96         double          alt;
97 };
98
99 #define SIRF_SAT_STATE_ACQUIRED                 (1 << 0)
100 #define SIRF_SAT_STATE_CARRIER_PHASE_VALID      (1 << 1)
101 #define SIRF_SAT_BIT_SYNC_COMPLETE              (1 << 2)
102 #define SIRF_SAT_SUBFRAME_SYNC_COMPLETE         (1 << 3)
103 #define SIRF_SAT_CARRIER_PULLIN_COMPLETE        (1 << 4)
104 #define SIRF_SAT_CODE_LOCKED                    (1 << 5)
105 #define SIRF_SAT_ACQUISITION_FAILED             (1 << 6)
106 #define SIRF_SAT_EPHEMERIS_AVAILABLE            (1 << 7)
107
108 struct cc_gpssat {
109         double          time;
110         uint16_t        svid;
111         uint8_t         c_n;
112 };
113
114 struct cc_gpssats {
115         int                     nsat;
116         struct cc_gpssat        sat[12];
117 };
118
119 struct cc_gpsdata {
120         int                     num;
121         int                     size;
122         struct cc_gpselt        *data;
123         double                  time_offset;
124         int                     numsats;
125         int                     sizesats;
126         struct cc_gpssats       *sats;
127 };
128
129 /*
130  * For sequential data which are evenly spaced
131  */
132 struct cc_perioddata {
133         int             num;
134         double          start;
135         double          step;
136         double          *data;
137 };
138
139 enum ao_flight_state {
140         ao_flight_startup = 0,
141         ao_flight_idle = 1,
142         ao_flight_pad = 2,
143         ao_flight_boost = 3,
144         ao_flight_fast = 4,
145         ao_flight_coast = 5,
146         ao_flight_drogue = 6,
147         ao_flight_main = 7,
148         ao_flight_landed = 8,
149         ao_flight_invalid = 9
150 };
151
152 struct cc_flightraw {
153         int                     flight;
154         int                     serial;
155         double                  ground_accel;
156         double                  ground_pres;
157         int                     year, month, day;
158         struct cc_timedata      accel;
159         struct cc_timedata      pres;
160         struct cc_timedata      temp;
161         struct cc_timedata      volt;
162         struct cc_timedata      main;
163         struct cc_timedata      drogue;
164         struct cc_timedata      state;
165         struct cc_gpsdata       gps;
166 };
167
168 struct cc_flightraw *
169 cc_log_read(FILE *file);
170
171 void
172 cc_flightraw_free(struct cc_flightraw *raw);
173
174 struct cc_flightcooked {
175         double                  flight_start;
176         double                  flight_stop;
177
178         struct cc_perioddata    accel_accel;
179         struct cc_perioddata    accel_speed;
180         struct cc_perioddata    accel_pos;
181         struct cc_perioddata    pres_pos;
182         struct cc_perioddata    pres_speed;
183         struct cc_perioddata    pres_accel;
184         struct cc_perioddata    gps_lat;
185         struct cc_perioddata    gps_lon;
186         struct cc_perioddata    gps_alt;
187
188         /* unfiltered, but converted */
189         struct cc_timedata      pres;
190         struct cc_timedata      accel;
191         struct cc_timedata      state;
192 };
193
194 /*
195  * Telemetry data contents
196  */
197
198
199 struct cc_gps_time {
200         int year;
201         int month;
202         int day;
203         int hour;
204         int minute;
205         int second;
206 };
207
208 struct cc_gps {
209         int     nsat;
210         int     gps_locked;
211         int     gps_connected;
212         struct cc_gps_time gps_time;
213         double  lat;            /* degrees (+N -S) */
214         double  lon;            /* degrees (+E -W) */
215         int     alt;            /* m */
216
217         int     gps_extended;   /* has extra data */
218         double  ground_speed;   /* m/s */
219         int     course;         /* degrees */
220         double  climb_rate;     /* m/s */
221         double  hdop;           /* unitless? */
222         int     h_error;        /* m */
223         int     v_error;        /* m */
224 };
225
226 #define SIRF_SAT_STATE_ACQUIRED                 (1 << 0)
227 #define SIRF_SAT_STATE_CARRIER_PHASE_VALID      (1 << 1)
228 #define SIRF_SAT_BIT_SYNC_COMPLETE              (1 << 2)
229 #define SIRF_SAT_SUBFRAME_SYNC_COMPLETE         (1 << 3)
230 #define SIRF_SAT_CARRIER_PULLIN_COMPLETE        (1 << 4)
231 #define SIRF_SAT_CODE_LOCKED                    (1 << 5)
232 #define SIRF_SAT_ACQUISITION_FAILED             (1 << 6)
233 #define SIRF_SAT_EPHEMERIS_AVAILABLE            (1 << 7)
234
235 struct cc_gps_sat {
236         int     svid;
237         int     c_n0;
238 };
239
240 struct cc_gps_tracking {
241         int                     channels;
242         struct cc_gps_sat       sats[12];
243 };
244
245 struct cc_telem {
246         char    callsign[16];
247         int     serial;
248         int     flight;
249         int     rssi;
250         char    state[16];
251         int     tick;
252         int     accel;
253         int     pres;
254         int     temp;
255         int     batt;
256         int     drogue;
257         int     main;
258         int     flight_accel;
259         int     ground_accel;
260         int     flight_vel;
261         int     flight_pres;
262         int     ground_pres;
263         int     accel_plus_g;
264         int     accel_minus_g;
265         struct cc_gps   gps;
266         struct cc_gps_tracking  gps_tracking;
267 };
268
269 int
270 cc_telem_parse(const char *input_line, struct cc_telem *telem);
271
272 struct ao_log_mega {
273         char                    type;                   /* 0 */
274         uint8_t                 is_config;              /* 1 */
275         uint16_t                tick;                   /* 2 */
276         union {                                         /* 4 */
277                 /* AO_LOG_FLIGHT */
278                 struct {
279                         uint16_t        flight;         /* 4 */
280                         int16_t         ground_accel;   /* 6 */
281                         uint32_t        ground_pres;    /* 8 */
282                 } flight;                               /* 12 */
283                 /* AO_LOG_STATE */
284                 struct {
285                         uint16_t        state;
286                         uint16_t        reason;
287                 } state;
288                 /* AO_LOG_SENSOR */
289                 struct {
290                         uint32_t        pres;           /* 4 */
291                         uint32_t        temp;           /* 8 */
292                         int16_t         accel_x;        /* 12 */
293                         int16_t         accel_y;        /* 14 */
294                         int16_t         accel_z;        /* 16 */
295                         int16_t         gyro_x;         /* 18 */
296                         int16_t         gyro_y;         /* 20 */
297                         int16_t         gyro_z;         /* 22 */
298                         int16_t         mag_x;          /* 24 */
299                         int16_t         mag_y;          /* 26 */
300                         int16_t         mag_z;          /* 28 */
301                         int16_t         accel;          /* 30 */
302                 } sensor;       /* 32 */
303                 /* AO_LOG_TEMP_VOLT */
304                 struct {
305                         int16_t         v_batt;         /* 4 */
306                         int16_t         v_pbatt;        /* 6 */
307                         int16_t         n_sense;        /* 8 */
308                         int16_t         sense[10];      /* 10 */
309                         uint16_t        pyro;           /* 30 */
310                 } volt;                                 /* 32 */
311                 /* AO_LOG_GPS_TIME */
312                 struct {
313                         int32_t         latitude;       /* 4 */
314                         int32_t         longitude;      /* 8 */
315                         int16_t         altitude;       /* 12 */
316                         uint8_t         hour;           /* 14 */
317                         uint8_t         minute;         /* 15 */
318                         uint8_t         second;         /* 16 */
319                         uint8_t         flags;          /* 17 */
320                         uint8_t         year;           /* 18 */
321                         uint8_t         month;          /* 19 */
322                         uint8_t         day;            /* 20 */
323                         uint8_t         pad;            /* 21 */
324                 } gps;  /* 22 */
325                 /* AO_LOG_GPS_SAT */
326                 struct {
327                         uint16_t        channels;       /* 4 */
328                         struct {
329                                 uint8_t svid;
330                                 uint8_t c_n;
331                         } sats[12];                     /* 6 */
332                 } gps_sat;                              /* 30 */
333
334                 struct {
335                         uint32_t                kind;
336                         int32_t                 data[6];
337                 } config_int;
338
339                 struct {
340                         uint32_t                kind;
341                         char                    string[24];
342                 } config_str;
343
344                 /* Raw bytes */
345                 uint8_t bytes[28];
346         } u;
347 };
348
349 #define AO_CONFIG_CONFIG                1
350 #define AO_CONFIG_MAIN                  2
351 #define AO_CONFIG_APOGEE                3
352 #define AO_CONFIG_LOCKOUT               4
353 #define AO_CONFIG_FREQUENCY             5
354 #define AO_CONFIG_RADIO_ENABLE          6
355 #define AO_CONFIG_ACCEL_CAL             7
356 #define AO_CONFIG_RADIO_CAL             8
357 #define AO_CONFIG_MAX_LOG               9
358 #define AO_CONFIG_IGNITE_MODE           10
359 #define AO_CONFIG_PAD_ORIENTATION       11
360 #define AO_CONFIG_SERIAL_NUMBER         12
361 #define AO_CONFIG_LOG_FORMAT            13
362 #define AO_CONFIG_MS5607_RESERVED       14
363 #define AO_CONFIG_MS5607_SENS           15
364 #define AO_CONFIG_MS5607_OFF            16
365 #define AO_CONFIG_MS5607_TCS            17
366 #define AO_CONFIG_MS5607_TCO            18
367 #define AO_CONFIG_MS5607_TREF           19
368 #define AO_CONFIG_MS5607_TEMPSENS       20
369 #define AO_CONFIG_MS5607_CRC            21
370
371
372 #define AO_LOG_FLIGHT           'F'
373 #define AO_LOG_SENSOR           'A'
374 #define AO_LOG_TEMP_VOLT        'T'
375 #define AO_LOG_DEPLOY           'D'
376 #define AO_LOG_STATE            'S'
377 #define AO_LOG_GPS_TIME         'G'
378 #define AO_LOG_GPS_LAT          'N'
379 #define AO_LOG_GPS_LON          'W'
380 #define AO_LOG_GPS_ALT          'H'
381 #define AO_LOG_GPS_SAT          'V'
382 #define AO_LOG_GPS_DATE         'Y'
383
384 #define AO_LOG_CONFIG           'c'
385
386 int
387 cc_mega_parse(const char *input_line, struct ao_log_mega *l);
388
389 #ifndef TRUE
390 #define TRUE 1
391 #define FALSE 0
392 #endif
393
394 /* Conversion functions */
395 double
396 cc_pressure_to_altitude(double pressure);
397
398 double
399 cc_altitude_to_pressure(double altitude);
400
401 double
402 cc_barometer_to_pressure(double baro);
403
404 double
405 cc_barometer_to_altitude(double baro);
406
407 double
408 cc_accelerometer_to_acceleration(double accel, double ground_accel);
409
410 double
411 cc_thermometer_to_temperature(double thermo);
412
413 double
414 cc_battery_to_voltage(double battery);
415
416 double
417 cc_ignitor_to_voltage(double ignite);
418
419 void
420 cc_great_circle (double start_lat, double start_lon,
421                  double end_lat, double end_lon,
422                  double *dist, double *bearing);
423
424 void
425 cc_timedata_limits(struct cc_timedata *d, double min_time, double max_time, int *start, int *stop);
426
427 int
428 cc_timedata_min(struct cc_timedata *d, double min_time, double max_time);
429
430 int
431 cc_timedata_min_mag(struct cc_timedata *d, double min_time, double max_time);
432
433 int
434 cc_timedata_max(struct cc_timedata *d, double min_time, double max_time);
435
436 int
437 cc_timedata_max_mag(struct cc_timedata *d, double min_time, double max_time);
438
439 double
440 cc_timedata_average(struct cc_timedata *d, double min_time, double max_time);
441
442 double
443 cc_timedata_average_mag(struct cc_timedata *d, double min_time, double max_time);
444
445 int
446 cc_perioddata_limits(struct cc_perioddata *d, double min_time, double max_time, int *start, int *stop);
447
448 int
449 cc_perioddata_min(struct cc_perioddata *d, double min_time, double max_time);
450
451 int
452 cc_perioddata_min_mag(struct cc_perioddata *d, double min_time, double max_time);
453
454 int
455 cc_perioddata_max(struct cc_perioddata *d, double min_time, double max_time);
456
457 int
458 cc_perioddata_max_mag(struct cc_perioddata *d, double min_time, double max_time);
459
460 double
461 cc_perioddata_average(struct cc_perioddata *d, double min_time, double max_time);
462
463 double
464 cc_perioddata_average_mag(struct cc_perioddata *d, double min_time, double max_time);
465
466 double *
467 cc_low_pass(double *data, int data_len, double omega_pass, double omega_stop, double error);
468
469 struct cc_perioddata *
470 cc_period_make(struct cc_timedata *td, double start_time, double stop_time);
471
472 struct cc_perioddata *
473 cc_period_low_pass(struct cc_perioddata *raw, double omega_pass, double omega_stop, double error);
474
475 struct cc_timedata *
476 cc_timedata_convert(struct cc_timedata *d, double (*f)(double v, double a), double a);
477
478 struct cc_timedata *
479 cc_timedata_integrate(struct cc_timedata *d, double min_time, double max_time);
480
481 struct cc_perioddata *
482 cc_perioddata_differentiate(struct cc_perioddata *i);
483
484 struct cc_flightcooked *
485 cc_flight_cook(struct cc_flightraw *raw);
486
487 void
488 cc_flightcooked_free(struct cc_flightcooked *cooked);
489
490 #endif /* _CC_H_ */