altos/test: Compute and show height error tracker in ao_flight_test
[fw/altos] / src / test / ao_flight_test.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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #define _GNU_SOURCE
20
21 #include <stdint.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <stddef.h>
25 #include <string.h>
26 #include <getopt.h>
27 #include <math.h>
28 #define log ao_log_data
29
30 #define GRAVITY 9.80665
31
32 #define AO_HERTZ        100
33
34 #define HAS_ADC 1
35 #define AO_DATA_RING    64
36 #define ao_data_ring_next(n)    (((n) + 1) & (AO_DATA_RING - 1))
37 #define ao_data_ring_prev(n)    (((n) - 1) & (AO_DATA_RING - 1))
38
39 #if 0
40 #define AO_M_TO_HEIGHT(m)       ((int16_t) (m))
41 #define AO_MS_TO_SPEED(ms)      ((int16_t) ((ms) * 16))
42 #define AO_MSS_TO_ACCEL(mss)    ((int16_t) ((mss) * 16))
43 #endif
44
45 #define AO_GPS_NEW_DATA         1
46 #define AO_GPS_NEW_TRACKING     2
47
48 int ao_gps_new;
49
50 #if !defined(TELEMEGA) && !defined(TELEMETRUM_V2) && !defined(EASYMINI)
51 #define TELEMETRUM_V1 1
52 #endif
53
54 #if TELEMEGA
55 #define AO_ADC_NUM_SENSE        6
56 #define HAS_MS5607              1
57 #define HAS_MPU6000             1
58 #define HAS_MMA655X             1
59 #define HAS_HMC5883             1
60 #define HAS_BEEP                1
61 #define AO_CONFIG_MAX_SIZE      1024
62 #define AO_MMA655X_INVERT       0
63
64 struct ao_adc {
65         int16_t                 sense[AO_ADC_NUM_SENSE];
66         int16_t                 v_batt;
67         int16_t                 v_pbatt;
68         int16_t                 temp;
69 };
70 #endif
71
72 #if TELEMETRUM_V2
73 #define AO_ADC_NUM_SENSE        2
74 #define HAS_MS5607              1
75 #define HAS_MMA655X             1
76 #define AO_MMA655X_INVERT       0
77 #define HAS_BEEP                1
78 #define AO_CONFIG_MAX_SIZE      1024
79
80 struct ao_adc {
81         int16_t                 sense_a;
82         int16_t                 sense_m;
83         int16_t                 v_batt;
84         int16_t                 temp;
85 };
86 #endif
87
88 #if EASYMINI
89 #define AO_ADC_NUM_SENSE        2
90 #define HAS_MS5607              1
91 #define HAS_BEEP                1
92 #define AO_CONFIG_MAX_SIZE      1024
93
94 struct ao_adc {
95         int16_t                 sense_a;
96         int16_t                 sense_m;
97         int16_t                 v_batt;
98 };
99 #endif
100
101 #if TELEMETRUM_V1
102 /*
103  * One set of samples read from the A/D converter
104  */
105 struct ao_adc {
106         int16_t         accel;          /* accelerometer */
107         int16_t         pres;           /* pressure sensor */
108         int16_t         pres_real;      /* unclipped */
109         int16_t         temp;           /* temperature sensor */
110         int16_t         v_batt;         /* battery voltage */
111         int16_t         sense_d;        /* drogue continuity sense */
112         int16_t         sense_m;        /* main continuity sense */
113 };
114
115 #ifndef HAS_ACCEL
116 #define HAS_ACCEL 1
117 #define HAS_ACCEL_REF 0
118 #endif
119
120 #endif
121
122 #define __pdata
123 #define __data
124 #define __xdata
125 #define __code
126 #define __reentrant
127
128 #define HAS_FLIGHT 1
129 #define HAS_IGNITE 1
130 #define HAS_USB 1
131 #define HAS_GPS 1
132
133 #include <ao_data.h>
134 #include <ao_log.h>
135 #include <ao_telemetry.h>
136 #include <ao_sample.h>
137
138 #if TELEMEGA
139 int ao_gps_count;
140 struct ao_telemetry_location ao_gps_first;
141 struct ao_telemetry_location ao_gps_prev;
142 struct ao_telemetry_location ao_gps_static;
143
144 struct ao_telemetry_satellite ao_gps_tracking;
145
146 static inline double sqr(double a) { return a * a; }
147
148 void
149 cc_great_circle (double start_lat, double start_lon,
150                  double end_lat, double end_lon,
151                  double *dist, double *bearing)
152 {
153         const double rad = M_PI / 180;
154         const double earth_radius = 6371.2 * 1000;      /* in meters */
155         double lat1 = rad * start_lat;
156         double lon1 = rad * -start_lon;
157         double lat2 = rad * end_lat;
158         double lon2 = rad * -end_lon;
159
160 //      double d_lat = lat2 - lat1;
161         double d_lon = lon2 - lon1;
162
163         /* From http://en.wikipedia.org/wiki/Great-circle_distance */
164         double vdn = sqrt(sqr(cos(lat2) * sin(d_lon)) +
165                           sqr(cos(lat1) * sin(lat2) -
166                               sin(lat1) * cos(lat2) * cos(d_lon)));
167         double vdd = sin(lat1) * sin(lat2) + cos(lat1) * cos(lat2) * cos(d_lon);
168         double d = atan2(vdn,vdd);
169         double course;
170
171         if (cos(lat1) < 1e-20) {
172                 if (lat1 > 0)
173                         course = M_PI;
174                 else
175                         course = -M_PI;
176         } else {
177                 if (d < 1e-10)
178                         course = 0;
179                 else
180                         course = acos((sin(lat2)-sin(lat1)*cos(d)) /
181                                       (sin(d)*cos(lat1)));
182                 if (sin(lon2-lon1) > 0)
183                         course = 2 * M_PI-course;
184         }
185         *dist = d * earth_radius;
186         *bearing = course * 180/M_PI;
187 }
188
189 double
190 ao_distance_from_pad(void)
191 {
192         double  dist, bearing;
193         if (!ao_gps_count)
194                 return 0;
195
196         cc_great_circle(ao_gps_first.latitude / 1e7,
197                         ao_gps_first.longitude / 1e7,
198                         ao_gps_static.latitude / 1e7,
199                         ao_gps_static.longitude / 1e7,
200                         &dist, &bearing);
201         return dist;
202 }
203
204 double
205 ao_gps_angle(void)
206 {
207         double  dist, bearing;
208         double  height;
209         double  angle;
210
211         if (ao_gps_count < 2)
212                 return 0;
213
214         cc_great_circle(ao_gps_prev.latitude / 1e7,
215                         ao_gps_prev.longitude / 1e7,
216                         ao_gps_static.latitude / 1e7,
217                         ao_gps_static.longitude / 1e7,
218                         &dist, &bearing);
219         height = AO_TELEMETRY_LOCATION_ALTITUDE(&ao_gps_static) - AO_TELEMETRY_LOCATION_ALTITUDE(&ao_gps_prev);
220
221         angle = atan2(dist, height);
222         return angle * 180/M_PI;
223 }
224 #endif
225
226 #define to_fix16(x) ((int16_t) ((x) * 65536.0 + 0.5))
227 #define to_fix32(x) ((int32_t) ((x) * 65536.0 + 0.5))
228 #define from_fix(x)     ((x) >> 16)
229
230 #define ACCEL_NOSE_UP   (ao_accel_2g >> 2)
231
232 extern enum ao_flight_state ao_flight_state;
233
234 #define FALSE 0
235 #define TRUE 1
236
237 volatile struct ao_data ao_data_ring[AO_DATA_RING];
238 volatile uint8_t ao_data_head;
239 int     ao_summary = 0;
240
241 #define ao_led_on(l)
242 #define ao_led_off(l)
243 #define ao_timer_set_adc_interval(i)
244 #define ao_wakeup(wchan) ao_dump_state()
245 #define ao_cmd_register(c)
246 #define ao_usb_disable()
247 #define ao_telemetry_set_interval(x)
248 #define ao_rdf_set(rdf)
249 #define ao_packet_slave_start()
250 #define ao_packet_slave_stop()
251 #define flush()
252
253 enum ao_igniter {
254         ao_igniter_drogue = 0,
255         ao_igniter_main = 1
256 };
257
258 struct ao_data ao_data_static;
259
260 int     drogue_height;
261 double  drogue_time;
262 int     main_height;
263 double  main_time;
264
265 int     tick_offset;
266
267 static ao_k_t   ao_k_height;
268 static double   simple_speed;
269
270 int16_t
271 ao_time(void)
272 {
273         return ao_data_static.tick;
274 }
275
276 void
277 ao_delay(int16_t interval)
278 {
279         return;
280 }
281
282 void
283 ao_ignite(enum ao_igniter igniter)
284 {
285         double time = (double) (ao_data_static.tick + tick_offset) / 100;
286
287         if (igniter == ao_igniter_drogue) {
288                 drogue_time = time;
289                 drogue_height = ao_k_height >> 16;
290         } else {
291                 main_time = time;
292                 main_height = ao_k_height >> 16;
293         }
294 }
295
296 struct ao_task {
297         int dummy;
298 };
299
300 #define ao_add_task(t,f,n) ((void) (t))
301
302 #define ao_log_start()
303 #define ao_log_stop()
304
305 #define AO_MS_TO_TICKS(ms)      ((ms) / 10)
306 #define AO_SEC_TO_TICKS(s)      ((s) * 100)
307
308 #define AO_FLIGHT_TEST  1
309
310 int     ao_flight_debug;
311
312 struct ao_eeprom        *eeprom;
313 uint32_t                eeprom_offset;
314
315 FILE *emulator_in;
316 char *emulator_app;
317 char *emulator_name;
318 char *emulator_info;
319 double emulator_error_max = 4;
320 double emulator_height_error_max = 20;  /* noise in the baro sensor */
321
322 void
323 ao_dump_state(void);
324
325 void
326 ao_sleep(void *wchan);
327
328 const char * const ao_state_names[] = {
329         "startup", "idle", "pad", "boost", "fast",
330         "coast", "drogue", "main", "landed", "invalid"
331 };
332
333 struct ao_cmds {
334         void            (*func)(void);
335         const char      *help;
336 };
337
338 #define ao_xmemcpy(d,s,c) memcpy(d,s,c)
339 #define ao_xmemset(d,v,c) memset(d,v,c)
340 #define ao_xmemcmp(d,s,c) memcmp(d,s,c)
341
342 #define AO_NEED_ALTITUDE_TO_PRES 1
343 #if TELEMEGA || TELEMETRUM_V2 || EASYMINI
344 #include "ao_convert_pa.c"
345 #include <ao_ms5607.h>
346 struct ao_ms5607_prom   ao_ms5607_prom;
347 #include "ao_ms5607_convert.c"
348 #if TELEMEGA
349 #define AO_PYRO_NUM     4
350 #include <ao_pyro.h>
351 #endif
352 #else
353 #include "ao_convert.c"
354 #endif
355
356 #include <ao_config.h>
357 #include <ao_fake_flight.h>
358 #include <ao_eeprom_read.h>
359 #include <ao_log.h>
360
361 #define ao_config_get()
362
363 struct ao_config ao_config;
364
365 #define DATA_TO_XDATA(x) (x)
366
367
368 extern int16_t ao_ground_accel, ao_flight_accel;
369 extern int16_t ao_accel_2g;
370
371 typedef int16_t accel_t;
372
373 uint16_t        ao_serial_number;
374 int16_t         ao_flight_number;
375
376 extern uint16_t ao_sample_tick;
377
378 extern alt_t    ao_sample_height;
379 extern accel_t  ao_sample_accel;
380 extern int32_t  ao_accel_scale;
381 extern alt_t    ao_ground_height;
382 extern alt_t    ao_sample_alt;
383
384 double ao_sample_qangle;
385
386 int ao_sample_prev_tick;
387 uint16_t        prev_tick;
388
389
390 #include "ao_kalman.c"
391 #include "ao_sqrt.c"
392 #include "ao_sample.c"
393 #include "ao_flight.c"
394 #if TELEMEGA
395 #define AO_PYRO_NUM     4
396
397 #define AO_PYRO_0       0
398 #define AO_PYRO_1       1
399 #define AO_PYRO_2       2
400 #define AO_PYRO_3       3
401
402 #define PYRO_DBG        1
403
404 static void
405 ao_pyro_pin_set(uint8_t pin, uint8_t value)
406 {
407         printf ("set pyro %d %d\n", pin, value);
408 }
409
410 #include "ao_pyro.c"
411 #endif
412 #include "ao_eeprom_read.c"
413 #include "ao_eeprom_read_old.c"
414
415 #define to_double(f)    ((f) / 65536.0)
416
417 static int      ao_records_read = 0;
418 static int      ao_eof_read = 0;
419 #if !EASYMINI
420 static int      ao_flight_ground_accel;
421 #endif
422 static int      ao_flight_started = 0;
423 static int      ao_test_max_height;
424 static double   ao_test_max_height_time;
425 static int      ao_test_main_height;
426 static double   ao_test_main_height_time;
427 static double   ao_test_landed_time;
428 static double   ao_test_landed_height;
429 static double   ao_test_landed_time;
430 static int      landed_set;
431 static double   landed_time;
432 static double   landed_height;
433 #if AO_PYRO_NUM
434 static uint16_t pyros_fired;
435 #endif
436
437 #if HAS_MPU6000
438 static struct ao_mpu6000_sample ao_ground_mpu6000;
439 #endif
440
441 void
442 ao_test_exit(void)
443 {
444         double  drogue_error;
445         double  main_error;
446         double  landed_error;
447         double  landed_time_error;
448
449         if (!ao_test_main_height_time) {
450                 ao_test_main_height_time = ao_test_max_height_time;
451                 ao_test_main_height = ao_test_max_height;
452         }
453         drogue_error = fabs(ao_test_max_height_time - drogue_time);
454         main_error = fabs(ao_test_main_height_time - main_time);
455         landed_error = fabs(ao_test_landed_height - landed_height);
456         landed_time_error = ao_test_landed_time - landed_time;
457         if (drogue_error > emulator_error_max || main_error > emulator_error_max) {
458                 printf ("%s %s\n",
459                         emulator_app, emulator_name);
460                 if (emulator_info)
461                         printf ("\t%s\n", emulator_info);
462                 printf ("\tApogee error %g\n", drogue_error);
463                 printf ("\tMain error %g\n", main_error);
464                 printf ("\tLanded height error %g\n", landed_error);
465                 printf ("\tLanded time error %g\n", landed_time_error);
466                 printf ("\tActual: apogee: %d at %7.2f main: %d at %7.2f landed %7.2f at %7.2f\n",
467                         ao_test_max_height, ao_test_max_height_time,
468                         ao_test_main_height, ao_test_main_height_time,
469                         ao_test_landed_height, ao_test_landed_time);
470                 printf ("\tComputed: apogee: %d at %7.2f main: %d at %7.2f landed %7.2f at %7.2f\n",
471                         drogue_height, drogue_time, main_height, main_time,
472                         landed_height, landed_time);
473                 exit (1);
474         }
475         exit(0);
476 }
477
478 #ifdef TELEMEGA
479 struct ao_azel {
480         int     az;
481         int     el;
482 };
483
484 static void
485 azel (struct ao_azel *r, struct ao_quaternion *q)
486 {
487         double  v;
488
489         r->az = floor (atan2(q->y, q->x) * 180/M_PI + 0.5);
490         v = sqrt (q->x*q->x + q->y*q->y);
491         r->el = floor (atan2(q->z, v) * 180/M_PI + 0.5);
492 }
493 #endif
494
495 void
496 ao_insert(void)
497 {
498         double  time;
499
500         ao_data_ring[ao_data_head] = ao_data_static;
501         if (ao_flight_state != ao_flight_startup) {
502 #if HAS_ACCEL
503                 double  accel = ((ao_flight_ground_accel - ao_data_accel(&ao_data_static)) * GRAVITY * 2.0) /
504                         (ao_config.accel_minus_g - ao_config.accel_plus_g);
505 #else
506                 double  accel = 0.0;
507 #endif
508
509                 (void) accel;
510                 if (!tick_offset)
511                         tick_offset = -ao_data_static.tick;
512                 if ((prev_tick - ao_data_static.tick) > 0x400)
513                         tick_offset += 65536;
514                 if (prev_tick) {
515                         int ticks = ao_data_static.tick - prev_tick;
516                         if (ticks < 0)
517                                 ticks += 65536;
518                         simple_speed += accel * ticks / 100.0;
519                 }
520                 prev_tick = ao_data_static.tick;
521                 time = (double) (ao_data_static.tick + tick_offset) / 100;
522
523 #if TELEMEGA || TELEMETRUM_V2 || EASYMINI
524                 ao_ms5607_convert(&ao_data_static.ms5607_raw, &ao_data_static.ms5607_cooked);
525                 double height = ao_pa_to_altitude(ao_data_static.ms5607_cooked.pres) - ao_ground_height;
526
527                 /* Hack to skip baro spike at accidental drogue charge
528                  * firing in 2015-09-26-serial-2093-flight-0012.eeprom
529                  * so we can test the kalman filter with this data. Just
530                  * keep reporting the same baro value across the pressure spike
531                  */
532                 {
533                         static struct ao_ms5607_sample save;
534                         if (ao_serial_number == 2093 && ao_flight_number == 12 && 32.5 < time && time < 33.7) {
535                                 ao_data_ring[ao_data_head].ms5607_raw = save;
536                         } else {
537                                 save = ao_data_static.ms5607_raw;
538                         }
539                 }
540 #else
541                 double  height = ao_pres_to_altitude(ao_data_static.adc.pres_real) - ao_ground_height;
542 #endif
543
544                 if (ao_test_max_height < height) {
545                         ao_test_max_height = height;
546                         ao_test_max_height_time = time;
547                         ao_test_landed_height = height;
548                         ao_test_landed_time = time;
549                 }
550                 if (height > ao_config.main_deploy) {
551                         ao_test_main_height_time = time;
552                         ao_test_main_height = height;
553                 }
554
555                 if (ao_test_landed_height > height) {
556                         ao_test_landed_height = height;
557                         ao_test_landed_time = time;
558                 }
559
560                 if (ao_flight_state == ao_flight_landed && !landed_set) {
561                         landed_set = 1;
562                         landed_time = time;
563                         landed_height = height;
564                 }
565
566                 if (!ao_summary) {
567 #if TELEMEGA
568                         static struct ao_quaternion     ao_ground_mag;
569                         static int                      ao_ground_mag_set;
570
571                         if (!ao_ground_mag_set) {
572                                 ao_quaternion_init_vector (&ao_ground_mag,
573                                                            ao_data_mag_across(&ao_data_static),
574                                                            ao_data_mag_through(&ao_data_static),
575                                                            ao_data_mag_along(&ao_data_static));
576                                 ao_quaternion_normalize(&ao_ground_mag, &ao_ground_mag);
577                                 ao_quaternion_rotate(&ao_ground_mag, &ao_ground_mag, &ao_rotation);
578                                 ao_ground_mag_set = 1;
579                         }
580
581                         struct ao_quaternion            ao_mag, ao_mag_rot;
582
583                         ao_quaternion_init_vector(&ao_mag,
584                                                   ao_data_mag_across(&ao_data_static),
585                                                   ao_data_mag_through(&ao_data_static),
586                                                   ao_data_mag_along(&ao_data_static));
587
588                         ao_quaternion_normalize(&ao_mag, &ao_mag);
589                         ao_quaternion_rotate(&ao_mag_rot, &ao_mag, &ao_rotation);
590
591                         float                           ao_dot;
592                         int                             ao_mag_angle;
593
594                         ao_dot = ao_quaternion_dot(&ao_mag_rot, &ao_ground_mag);
595
596                         struct ao_azel                  ground_azel, mag_azel, rot_azel;
597
598                         azel(&ground_azel, &ao_ground_mag);
599                         azel(&mag_azel, &ao_mag);
600                         azel(&rot_azel, &ao_mag_rot);
601
602                         ao_mag_angle = floor (acos(ao_dot) * 180 / M_PI + 0.5);
603
604                         (void) ao_mag_angle;
605
606                         static struct ao_quaternion     ao_x = { .r = 0, .x = 1, .y = 0, .z = 0 };
607                         struct ao_quaternion            ao_out;
608
609                         ao_quaternion_rotate(&ao_out, &ao_x, &ao_rotation);
610
611 #if 0
612                         int     out = floor (atan2(ao_out.y, ao_out.x) * 180 / M_PI);
613
614                         printf ("%7.2f state %-8.8s height %8.4f tilt %4d rot %4d mag_tilt %4d mag_rot %4d\n",
615                                 time,
616                                 ao_state_names[ao_flight_state],
617                                 ao_k_height / 65536.0,
618                                 ao_sample_orient, out,
619                                 mag_azel.el,
620                                 mag_azel.az);
621 #endif
622 #if 0
623                         printf ("%7.2f state %-8.8s height %8.4f tilt %4d rot %4d dist %12.2f gps_tilt %4d gps_sats %2d\n",
624                                 time,
625                                 ao_state_names[ao_flight_state],
626                                 ao_k_height / 65536.0,
627                                 ao_sample_orient, out,
628                                 ao_distance_from_pad(),
629                                 (int) floor (ao_gps_angle() + 0.5),
630                                 (ao_gps_static.flags & 0xf) * 10);
631
632 #endif
633 #if 0
634                         printf ("\t\tstate %-8.8s ground az: %4d el %4d mag az %4d el %4d rot az %4d el %4d el_diff %4d az_diff %4d angle %4d tilt %4d ground %8.5f %8.5f %8.5f cur %8.5f %8.5f %8.5f rot %8.5f %8.5f %8.5f\n",
635                                 ao_state_names[ao_flight_state],
636                                 ground_azel.az, ground_azel.el,
637                                 mag_azel.az, mag_azel.el,
638                                 rot_azel.az, rot_azel.el,
639                                 ground_azel.el - rot_azel.el,
640                                 ground_azel.az - rot_azel.az,
641                                 ao_mag_angle,
642                                 ao_sample_orient,
643                                 ao_ground_mag.x,
644                                 ao_ground_mag.y,
645                                 ao_ground_mag.z,
646                                 ao_mag.x,
647                                 ao_mag.y,
648                                 ao_mag.z,
649                                 ao_mag_rot.x,
650                                 ao_mag_rot.y,
651                                 ao_mag_rot.z);
652 #endif
653 #endif
654
655 #if 1
656                         printf("%7.2f height %8.2f accel %8.3f accel_speed %8.3f "
657                                "state %d k_height %8.2f k_speed %8.3f k_accel %8.3f avg_height %5d drogue %4d main %4d error %5d"
658 #if TELEMEGA
659                                " angle %5d "
660                                "accel_x %8.3f accel_y %8.3f accel_z %8.3f gyro_x %8.3f gyro_y %8.3f gyro_z %8.3f mag_x %8d mag_y %8d, mag_z %8d mag_angle %4d "
661 #endif
662                                "\n",
663                                time,
664                                height,
665                                accel,
666                                simple_speed > -100.0 ? simple_speed : -100.0,
667                                ao_flight_state * 10,
668                                ao_k_height / 65536.0,
669                                ao_k_speed / 65536.0 / 16.0,
670                                ao_k_accel / 65536.0 / 16.0,
671                                ao_avg_height,
672                                drogue_height,
673                                main_height,
674                                ao_error_h_sq_avg
675 #if TELEMEGA
676                                , ao_sample_orient,
677
678                                ao_mpu6000_accel(ao_data_static.mpu6000.accel_x),
679                                ao_mpu6000_accel(ao_data_static.mpu6000.accel_y),
680                                ao_mpu6000_accel(ao_data_static.mpu6000.accel_z),
681                                ao_mpu6000_gyro(ao_data_static.mpu6000.gyro_x - ao_ground_mpu6000.gyro_x),
682                                ao_mpu6000_gyro(ao_data_static.mpu6000.gyro_y - ao_ground_mpu6000.gyro_y),
683                                ao_mpu6000_gyro(ao_data_static.mpu6000.gyro_z - ao_ground_mpu6000.gyro_z),
684                                ao_data_static.hmc5883.x,
685                                ao_data_static.hmc5883.y,
686                                ao_data_static.hmc5883.z,
687                                ao_mag_angle
688 #endif
689                                 );
690 #endif
691
692 //                      if (ao_flight_state == ao_flight_landed)
693 //                              ao_test_exit();
694                 }
695         }
696         ao_data_head = ao_data_ring_next(ao_data_head);
697 }
698
699
700 uint16_t
701 uint16(uint8_t *bytes, int off)
702 {
703         return (uint16_t) bytes[off] | (((uint16_t) bytes[off+1]) << 8);
704 }
705
706 int16_t
707 int16(uint8_t *bytes, int off)
708 {
709         return (int16_t) uint16(bytes, off);
710 }
711
712 uint32_t
713 uint32(uint8_t *bytes, int off)
714 {
715         return (uint32_t) bytes[off] | (((uint32_t) bytes[off+1]) << 8) |
716                 (((uint32_t) bytes[off+2]) << 16) |
717                 (((uint32_t) bytes[off+3]) << 24);
718 }
719
720 int32_t
721 int32(uint8_t *bytes, int off)
722 {
723         return (int32_t) uint32(bytes, off);
724 }
725
726 uint32_t
727 uint24(uint8_t *bytes, int off)
728 {
729         return (uint32_t) bytes[off] | (((uint32_t) bytes[off+1]) << 8) |
730                 (((uint32_t) bytes[off+2]) << 16);
731 }
732
733 int32_t
734 int24(uint8_t *bytes, int off)
735 {
736         return (int32_t) uint24(bytes, off);
737 }
738
739 static int log_format;
740
741 void
742 ao_sleep(void *wchan)
743 {
744         if (wchan == &ao_data_head) {
745 #if TELEMEGA
746                 if (ao_flight_state >= ao_flight_boost && ao_flight_state < ao_flight_landed)
747                         ao_pyro_check();
748 #endif
749                 for (;;) {
750                         if (ao_records_read > 2 && ao_flight_state == ao_flight_startup)
751                         {
752
753 #if TELEMEGA
754                                 ao_data_static.mpu6000 = ao_ground_mpu6000;
755 #endif
756 #if TELEMETRUM_V1
757                                 ao_data_static.adc.accel = ao_flight_ground_accel;
758 #endif
759
760                                 ao_insert();
761                                 return;
762                         }
763
764                         if (eeprom) {
765 #if TELEMEGA
766                                 struct ao_log_mega      *log_mega;
767 #endif
768 #if TELEMETRUM_V2
769                                 struct ao_log_metrum    *log_metrum;
770 #endif
771 #if EASYMINI
772                                 struct ao_log_mini      *log_mini;
773 #endif
774 #if TELEMETRUM_V1
775                                 struct ao_log_record    *log_record;
776 #endif
777
778                                 if (eeprom_offset >= eeprom->len) {
779                                         if (++ao_eof_read >= 1000)
780                                                 if (!ao_summary)
781                                                         printf ("no more data, exiting simulation\n");
782                                         ao_test_exit();
783                                         ao_data_static.tick += 10;
784                                         ao_insert();
785                                         return;
786                                 }
787                                 switch (eeprom->log_format) {
788 #if TELEMEGA
789                                 case AO_LOG_FORMAT_TELEMEGA_OLD:
790                                 case AO_LOG_FORMAT_TELEMEGA:
791                                         log_mega = (struct ao_log_mega *) &eeprom->data[eeprom_offset];
792                                         eeprom_offset += sizeof (*log_mega);
793                                         switch (log_mega->type) {
794                                         case AO_LOG_FLIGHT:
795                                                 ao_flight_number = log_mega->u.flight.flight;
796                                                 ao_flight_ground_accel = log_mega->u.flight.ground_accel;
797                                                 ao_flight_started = 1;
798                                                 ao_ground_pres = log_mega->u.flight.ground_pres;
799                                                 ao_ground_height = ao_pa_to_altitude(ao_ground_pres);
800                                                 ao_ground_accel_along = log_mega->u.flight.ground_accel_along;
801                                                 ao_ground_accel_across = log_mega->u.flight.ground_accel_across;
802                                                 ao_ground_accel_through = log_mega->u.flight.ground_accel_through;
803                                                 ao_ground_roll = log_mega->u.flight.ground_roll;
804                                                 ao_ground_pitch = log_mega->u.flight.ground_pitch;
805                                                 ao_ground_yaw = log_mega->u.flight.ground_yaw;
806                                                 ao_ground_mpu6000.accel_x = ao_ground_accel_across;
807                                                 ao_ground_mpu6000.accel_y = ao_ground_accel_along;
808                                                 ao_ground_mpu6000.accel_z = ao_ground_accel_through;
809                                                 ao_ground_mpu6000.gyro_x = ao_ground_pitch >> 9;
810                                                 ao_ground_mpu6000.gyro_y = ao_ground_roll >> 9;
811                                                 ao_ground_mpu6000.gyro_z = ao_ground_yaw >> 9;
812                                                 break;
813                                         case AO_LOG_STATE:
814                                                 break;
815                                         case AO_LOG_SENSOR:
816                                                 ao_data_static.tick = log_mega->tick;
817                                                 ao_data_static.ms5607_raw.pres = log_mega->u.sensor.pres;
818                                                 ao_data_static.ms5607_raw.temp = log_mega->u.sensor.temp;
819                                                 ao_data_static.mpu6000.accel_x = log_mega->u.sensor.accel_x;
820                                                 ao_data_static.mpu6000.accel_y = log_mega->u.sensor.accel_y;
821                                                 ao_data_static.mpu6000.accel_z = log_mega->u.sensor.accel_z;
822                                                 ao_data_static.mpu6000.gyro_x = log_mega->u.sensor.gyro_x;
823                                                 ao_data_static.mpu6000.gyro_y = log_mega->u.sensor.gyro_y;
824                                                 ao_data_static.mpu6000.gyro_z = log_mega->u.sensor.gyro_z;
825                                                 ao_data_static.hmc5883.x = log_mega->u.sensor.mag_x;
826                                                 ao_data_static.hmc5883.y = log_mega->u.sensor.mag_y;
827                                                 ao_data_static.hmc5883.z = log_mega->u.sensor.mag_z;
828                                                 ao_data_static.mma655x = log_mega->u.sensor.accel;
829                                                 if (ao_config.pad_orientation != AO_PAD_ORIENTATION_ANTENNA_UP)
830                                                         ao_data_static.mma655x = ao_data_accel_invert(ao_data_static.mma655x);
831                                                 ao_records_read++;
832                                                 ao_insert();
833                                                 return;
834                                         case AO_LOG_TEMP_VOLT:
835                                                 if (pyros_fired != log_mega->u.volt.pyro) {
836                                                         printf("pyro changed %x -> %x\n", pyros_fired, log_mega->u.volt.pyro);
837                                                         pyros_fired = log_mega->u.volt.pyro;
838                                                 }
839                                                 break;
840                                         case AO_LOG_GPS_TIME:
841                                                 ao_gps_prev = ao_gps_static;
842                                                 ao_gps_static.tick = log_mega->tick;
843                                                 ao_gps_static.latitude = log_mega->u.gps.latitude;
844                                                 ao_gps_static.longitude = log_mega->u.gps.longitude;
845                                                 {
846                                                         int16_t altitude_low = log_mega->u.gps.altitude_low;
847                                                         int16_t altitude_high = log_mega->u.gps.altitude_high;
848                                                         int32_t altitude = altitude_low | ((int32_t) altitude_high << 16);
849
850                                                         AO_TELEMETRY_LOCATION_SET_ALTITUDE(&ao_gps_static, altitude);
851                                                 }
852                                                 ao_gps_static.flags = log_mega->u.gps.flags;
853                                                 if (!ao_gps_count)
854                                                         ao_gps_first = ao_gps_static;
855                                                 ao_gps_count++;
856                                                 break;
857                                         case AO_LOG_GPS_SAT:
858                                                 break;
859                                         }
860                                         break;
861 #endif
862 #if TELEMETRUM_V2
863                                 case AO_LOG_FORMAT_TELEMETRUM:
864                                         log_metrum = (struct ao_log_metrum *) &eeprom->data[eeprom_offset];
865                                         eeprom_offset += sizeof (*log_metrum);
866                                         switch (log_metrum->type) {
867                                         case AO_LOG_FLIGHT:
868                                                 ao_flight_started = 1;
869                                                 ao_flight_number = log_metrum->u.flight.flight;
870                                                 ao_flight_ground_accel = log_metrum->u.flight.ground_accel;
871                                                 ao_ground_pres = log_metrum->u.flight.ground_pres;
872                                                 ao_ground_height = ao_pa_to_altitude(ao_ground_pres);
873                                                 break;
874                                         case AO_LOG_SENSOR:
875                                                 ao_data_static.tick = log_metrum->tick;
876                                                 ao_data_static.ms5607_raw.pres = log_metrum->u.sensor.pres;
877                                                 ao_data_static.ms5607_raw.temp = log_metrum->u.sensor.temp;
878                                                 ao_data_static.mma655x = log_metrum->u.sensor.accel;
879                                                 ao_records_read++;
880                                                 ao_insert();
881                                                 return;
882                                         }
883                                         break;
884 #endif
885 #if EASYMINI
886                                 case AO_LOG_FORMAT_EASYMINI1:
887                                 case AO_LOG_FORMAT_EASYMINI2:
888                                 case AO_LOG_FORMAT_TELEMINI3:
889                                         log_mini = (struct ao_log_mini *) &eeprom->data[eeprom_offset];
890                                         eeprom_offset += sizeof (*log_mini);
891                                         switch (log_mini->type) {
892                                         case AO_LOG_FLIGHT:
893                                                 ao_flight_started = 1;
894                                                 ao_flight_number = log_mini->u.flight.flight;
895                                                 ao_ground_pres = log_mini->u.flight.ground_pres;
896                                                 ao_ground_height = ao_pa_to_altitude(ao_ground_pres);
897                                                 break;
898                                         case AO_LOG_SENSOR:
899                                                 ao_data_static.tick = log_mini->tick;
900                                                 ao_data_static.ms5607_raw.pres = int24(log_mini->u.sensor.pres, 0);
901                                                 ao_data_static.ms5607_raw.temp = int24(log_mini->u.sensor.temp, 0);
902                                                 ao_records_read++;
903                                                 ao_insert();
904                                                 return;
905                                         }
906                                         break;
907 #endif
908 #if TELEMETRUM_V1
909                                 case AO_LOG_FORMAT_FULL:
910                                 case AO_LOG_FORMAT_TINY:
911                                         log_record = (struct ao_log_record *) &eeprom->data[eeprom_offset];
912                                         eeprom_offset += sizeof (*log_record);
913                                         switch (log_record->type) {
914                                         case AO_LOG_FLIGHT:
915                                                 ao_flight_started = 1;
916                                                 ao_flight_ground_accel = log_record->u.flight.ground_accel;
917                                                 ao_flight_number = log_record->u.flight.flight;
918                                                 break;
919                                         case AO_LOG_SENSOR:
920                                         case 'P':       /* ancient telemini */
921                                                 ao_data_static.tick = log_record->tick;
922                                                 ao_data_static.adc.accel = log_record->u.sensor.accel;
923                                                 ao_data_static.adc.pres_real = log_record->u.sensor.pres;
924                                                 ao_data_static.adc.pres = log_record->u.sensor.pres;
925                                                 ao_records_read++;
926                                                 ao_insert();
927                                                 return;
928                                         case AO_LOG_TEMP_VOLT:
929                                                 ao_data_static.tick = log_record->tick;;
930                                                 ao_data_static.adc.temp = log_record->u.temp_volt.temp;
931                                                 ao_data_static.adc.v_batt = log_record->u.temp_volt.v_batt;
932                                                 break;
933                                         }
934                                         break;
935 #endif
936                                 default:
937                                         printf ("invalid log format %d\n", log_format);
938                                         ao_test_exit();
939                                 }
940                         }
941                 }
942
943         }
944 }
945 #define COUNTS_PER_G 264.8
946
947 void
948 ao_dump_state(void)
949 {
950 }
951
952 static const struct option options[] = {
953         { .name = "summary", .has_arg = 0, .val = 's' },
954         { .name = "debug", .has_arg = 0, .val = 'd' },
955         { .name = "info", .has_arg = 1, .val = 'i' },
956         { 0, 0, 0, 0},
957 };
958
959 void run_flight_fixed(char *name, FILE *f, int summary, char *info)
960 {
961         emulator_name = name;
962         emulator_in = f;
963         emulator_info = info;
964         ao_summary = summary;
965
966         if (strstr(name, ".eeprom") != NULL) {
967                 char    c;
968
969                 c = getc(f);
970                 ungetc(c, f);
971                 if (c == '{')
972                         eeprom = ao_eeprom_read(f);
973                 else
974                         eeprom = ao_eeprom_read_old(f);
975
976                 if (eeprom) {
977 #if HAS_MS5607
978                         ao_ms5607_prom = eeprom->ms5607_prom;
979 #endif
980                         ao_config = eeprom->config;
981                         ao_serial_number = eeprom->serial_number;
982                         log_format = eeprom->log_format;
983                 }
984         }
985
986         ao_flight_init();
987         ao_flight();
988 }
989
990 int
991 main (int argc, char **argv)
992 {
993         int     summary = 0;
994         int     c;
995         int     i;
996         char    *info = NULL;
997
998 #if HAS_ACCEL
999         emulator_app="full";
1000 #else
1001         emulator_app="baro";
1002 #endif
1003         while ((c = getopt_long(argc, argv, "sdpi:", options, NULL)) != -1) {
1004                 switch (c) {
1005                 case 's':
1006                         summary = 1;
1007                         break;
1008                 case 'd':
1009                         ao_flight_debug = 1;
1010                         break;
1011                 case 'p':
1012 #if PYRO_DBG
1013                         pyro_dbg = 1;
1014 #endif
1015                         break;
1016                 case 'i':
1017                         info = optarg;
1018                         break;
1019                 }
1020         }
1021
1022         if (optind == argc)
1023                 run_flight_fixed("<stdin>", stdin, summary, info);
1024         else
1025                 for (i = optind; i < argc; i++) {
1026                         FILE    *f = fopen(argv[i], "r");
1027                         if (!f) {
1028                                 perror(argv[i]);
1029                                 continue;
1030                         }
1031                         run_flight_fixed(argv[i], f, summary, info);
1032                         fclose(f);
1033                 }
1034         exit(0);
1035 }