Rework invalid accel cal detection code
[fw/altos] / src / ao_flight.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 #ifndef AO_FLIGHT_TEST
19 #include "ao.h"
20 #endif
21
22 /* Main flight thread. */
23
24 __pdata enum ao_flight_state    ao_flight_state;        /* current flight state */
25 __pdata uint16_t                ao_flight_tick;         /* time of last data */
26 __pdata uint16_t                ao_flight_prev_tick;    /* time of previous data */
27 __pdata int16_t                 ao_flight_accel;        /* filtered acceleration */
28 __pdata int16_t                 ao_flight_pres;         /* filtered pressure */
29 __pdata int16_t                 ao_ground_pres;         /* startup pressure */
30 __pdata int16_t                 ao_ground_accel;        /* startup acceleration */
31 __pdata int16_t                 ao_min_pres;            /* minimum recorded pressure */
32 __pdata uint16_t                ao_launch_tick;         /* time of launch detect */
33 __pdata int16_t                 ao_main_pres;           /* pressure to eject main */
34
35 /*
36  * track min/max data over a long interval to detect
37  * resting
38  */
39 __pdata uint16_t                ao_interval_end;
40 __pdata int16_t                 ao_interval_cur_min_accel;
41 __pdata int16_t                 ao_interval_cur_max_accel;
42 __pdata int16_t                 ao_interval_cur_min_pres;
43 __pdata int16_t                 ao_interval_cur_max_pres;
44 __pdata int16_t                 ao_interval_min_accel;
45 __pdata int16_t                 ao_interval_max_accel;
46 __pdata int16_t                 ao_interval_min_pres;
47 __pdata int16_t                 ao_interval_max_pres;
48
49 __data uint8_t ao_flight_adc;
50 __pdata int16_t ao_raw_accel, ao_raw_accel_prev, ao_raw_pres;
51 __pdata int16_t ao_accel_2g;
52
53 __xdata uint8_t ao_flight_force_idle;
54
55 /* Accelerometer calibration
56  *
57  * We're sampling the accelerometer through a resistor divider which
58  * consists of 5k and 10k resistors. This multiplies the values by 2/3.
59  * That goes into the cc1111 A/D converter, which is running at 11 bits
60  * of precision with the bits in the MSB of the 16 bit value. Only positive
61  * values are used, so values should range from 0-32752 for 0-3.3V. The
62  * specs say we should see 40mV/g (uncalibrated), multiply by 2/3 for what
63  * the A/D converter sees (26.67 mV/g). We should see 32752/3300 counts/mV,
64  * for a final computation of:
65  *
66  * 26.67 mV/g * 32767/3300 counts/mV = 264.8 counts/g
67  *
68  * Zero g was measured at 16000 (we would expect 16384).
69  * Note that this value is only require to tell if the
70  * rocket is standing upright. Once that is determined,
71  * the value of the accelerometer is averaged for 100 samples
72  * to find the resting accelerometer value, which is used
73  * for all further flight computations
74  */
75
76 #define GRAVITY 9.80665
77 /* convert m/s to velocity count */
78 #define VEL_MPS_TO_COUNT(mps) (((int32_t) (((mps) / GRAVITY) * (AO_HERTZ/2))) * (int32_t) ao_accel_2g)
79
80 #define ACCEL_NOSE_UP   (ao_accel_2g >> 2)
81 #define ACCEL_BOOST     ao_accel_2g
82 #define ACCEL_COAST     (ao_accel_2g >> 3)
83 #define ACCEL_INT_LAND  (ao_accel_2g >> 3)
84 #define ACCEL_VEL_MACH  VEL_MPS_TO_COUNT(200)
85 #define ACCEL_VEL_BOOST VEL_MPS_TO_COUNT(5)
86
87 /*
88  * Barometer calibration
89  *
90  * We directly sample the barometer. The specs say:
91  *
92  * Pressure range: 15-115 kPa
93  * Voltage at 115kPa: 2.82
94  * Output scale: 27mV/kPa
95  *
96  * If we want to detect launch with the barometer, we need
97  * a large enough bump to not be fooled by noise. At typical
98  * launch elevations (0-2000m), a 200Pa pressure change cooresponds
99  * to about a 20m elevation change. This is 5.4mV, or about 3LSB.
100  * As all of our calculations are done in 16 bits, we'll actually see a change
101  * of 16 times this though
102  *
103  * 27 mV/kPa * 32767 / 3300 counts/mV = 268.1 counts/kPa
104  */
105
106 #define BARO_kPa        268
107 #define BARO_LAUNCH     (BARO_kPa / 5)  /* .2kPa, or about 20m */
108 #define BARO_APOGEE     (BARO_kPa / 10) /* .1kPa, or about 10m */
109 #define BARO_COAST      (BARO_kPa * 5)  /* 5kpa, or about 500m */
110 #define BARO_MAIN       (BARO_kPa)      /* 1kPa, or about 100m */
111 #define BARO_INT_LAND   (BARO_kPa / 20) /* .05kPa, or about 5m */
112 #define BARO_LAND       (BARO_kPa * 10) /* 10kPa or about 1000m */
113
114 /* We also have a clock, which can be used to sanity check things in
115  * case of other failures
116  */
117
118 #define BOOST_TICKS_MAX AO_SEC_TO_TICKS(15)
119
120 /* This value is scaled in a weird way. It's a running total of accelerometer
121  * readings minus the ground accelerometer reading. That means it measures
122  * velocity, and quite accurately too. As it gets updated 100 times a second,
123  * it's scaled by 100
124  */
125 __pdata int32_t ao_flight_vel;
126 __pdata int32_t ao_min_vel;
127 __pdata int32_t ao_old_vel;
128 __pdata int16_t ao_old_vel_tick;
129 __xdata int32_t ao_raw_accel_sum, ao_raw_pres_sum;
130
131 /* Landing is detected by getting constant readings from both pressure and accelerometer
132  * for a fairly long time (AO_INTERVAL_TICKS)
133  */
134 #define AO_INTERVAL_TICKS       AO_SEC_TO_TICKS(5)
135
136 #define abs(a)  ((a) < 0 ? -(a) : (a))
137
138 void
139 ao_flight(void)
140 {
141         __pdata static uint16_t nsamples = 0;
142
143         ao_flight_adc = ao_adc_head;
144         ao_raw_accel_prev = 0;
145         ao_raw_accel = 0;
146         ao_raw_pres = 0;
147         ao_flight_tick = 0;
148         for (;;) {
149                 ao_sleep(&ao_adc_ring);
150                 while (ao_flight_adc != ao_adc_head) {
151                         __pdata uint8_t ticks;
152                         __pdata int16_t ao_vel_change;
153                         ao_flight_prev_tick = ao_flight_tick;
154
155                         /* Capture a sample */
156                         ao_raw_accel = ao_adc_ring[ao_flight_adc].accel;
157                         ao_raw_pres = ao_adc_ring[ao_flight_adc].pres;
158                         ao_flight_tick = ao_adc_ring[ao_flight_adc].tick;
159
160                         ao_flight_accel -= ao_flight_accel >> 4;
161                         ao_flight_accel += ao_raw_accel >> 4;
162                         ao_flight_pres -= ao_flight_pres >> 4;
163                         ao_flight_pres += ao_raw_pres >> 4;
164                         /* Update velocity
165                          *
166                          * The accelerometer is mounted so that
167                          * acceleration yields negative values
168                          * while deceleration yields positive values,
169                          * so subtract instead of add.
170                          */
171                         ticks = ao_flight_tick - ao_flight_prev_tick;
172                         ao_vel_change = ao_ground_accel - (((ao_raw_accel + 1) >> 1) + ((ao_raw_accel_prev + 1) >> 1));
173                         ao_raw_accel_prev = ao_raw_accel;
174
175                         /* one is a common interval */
176                         if (ticks == 1)
177                                 ao_flight_vel += (int32_t) ao_vel_change;
178                         else
179                                 ao_flight_vel += (int32_t) ao_vel_change * (int32_t) ticks;
180
181                         ao_flight_adc = ao_adc_ring_next(ao_flight_adc);
182                 }
183
184                 if (ao_flight_pres < ao_min_pres)
185                         ao_min_pres = ao_flight_pres;
186                 if (ao_flight_vel >= 0) {
187                         if (ao_flight_vel < ao_min_vel)
188                             ao_min_vel = ao_flight_vel;
189                 } else {
190                         if (-ao_flight_vel < ao_min_vel)
191                             ao_min_vel = -ao_flight_vel;
192                 }
193
194                 switch (ao_flight_state) {
195                 case ao_flight_startup:
196
197                         /* startup state:
198                          *
199                          * Collect 512 samples of acceleration and pressure
200                          * data and average them to find the resting values
201                          */
202                         if (nsamples < 512) {
203                                 ao_raw_accel_sum += ao_raw_accel;
204                                 ao_raw_pres_sum += ao_raw_pres;
205                                 ++nsamples;
206                                 continue;
207                         }
208                         ao_ground_accel = ao_raw_accel_sum >> 9;
209                         ao_ground_pres = ao_raw_pres_sum >> 9;
210                         ao_min_pres = ao_ground_pres;
211                         ao_config_get();
212                         ao_main_pres = ao_altitude_to_pres(ao_pres_to_altitude(ao_ground_pres) + ao_config.main_deploy);
213                         ao_accel_2g = ao_config.accel_minus_g - ao_config.accel_plus_g;
214                         ao_flight_vel = 0;
215                         ao_min_vel = 0;
216                         ao_old_vel = ao_flight_vel;
217                         ao_old_vel_tick = ao_flight_tick;
218
219                         /* Check to see what mode we should go to.
220                          *  - Invalid mode if accel cal appears to be out
221                          *  - pad mode if we're upright,
222                          *  - idle mode otherwise
223                          */
224                         ao_config_get();
225                         if (ao_config.accel_plus_g == 0 ||
226                             ao_config.accel_minus_g == 0 ||
227                             ao_flight_accel < ao_config.accel_plus_g - ACCEL_NOSE_UP ||
228                             ao_flight_accel > ao_config.accel_minus_g + ACCEL_NOSE_UP)
229                         {
230                                 /* Detected an accel value outside -1.5g to 1.5g
231                                  * (or uncalibrated values), so we go into invalid mode
232                                  */
233                                 ao_flight_state = ao_flight_invalid;
234                                 /* Allow packet mode in invalid flight state,
235                                  * Still need to be able to fix the problem!
236                                  */
237                                 ao_packet_slave_start();
238
239                         } else if (ao_flight_accel < ao_config.accel_plus_g + ACCEL_NOSE_UP &&
240                                    !ao_flight_force_idle)
241                         {
242                                 /* Set pad mode - we can fly! */
243                                 ao_flight_state = ao_flight_pad;
244
245                                 /* Disable the USB controller in flight mode
246                                  * to save power
247                                  */
248                                 ao_usb_disable();
249
250                                 /* Turn on telemetry system */
251                                 ao_rdf_set(1);
252                                 ao_telemetry_set_interval(AO_TELEMETRY_INTERVAL_PAD);
253
254                                 /* signal successful initialization by turning off the LED */
255                                 ao_led_off(AO_LED_RED);
256                         } else {
257                                 /* Set idle mode */
258                                 ao_flight_state = ao_flight_idle;
259  
260                                 /* Turn on packet system in idle mode */
261                                 ao_packet_slave_start();
262
263                                 /* signal successful initialization by turning off the LED */
264                                 ao_led_off(AO_LED_RED);
265                         }
266                         /* wakeup threads due to state change */
267                         ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
268
269                         break;
270                 case ao_flight_pad:
271
272                         /* Trim velocity
273                          *
274                          * Once a second, remove any velocity from
275                          * a second ago
276                          */
277                         if ((int16_t) (ao_flight_tick - ao_old_vel_tick) >= AO_SEC_TO_TICKS(1)) {
278                                 ao_old_vel_tick = ao_flight_tick;
279                                 ao_flight_vel -= ao_old_vel;
280                                 ao_old_vel = ao_flight_vel;
281                         }
282                         /* pad to boost:
283                          *
284                          * accelerometer: > 2g AND velocity > 5m/s
285                          *             OR
286                          * barometer: > 20m vertical motion
287                          *
288                          * The accelerometer should always detect motion before
289                          * the barometer, but we use both to make sure this
290                          * transition is detected
291                          */
292                         if ((ao_flight_accel < ao_ground_accel - ACCEL_BOOST &&
293                              ao_flight_vel > ACCEL_VEL_BOOST) ||
294                             ao_flight_pres < ao_ground_pres - BARO_LAUNCH)
295                         {
296                                 ao_flight_state = ao_flight_boost;
297                                 ao_launch_tick = ao_flight_tick;
298
299                                 /* start logging data */
300                                 ao_log_start();
301
302                                 /* Increase telemetry rate */
303                                 ao_telemetry_set_interval(AO_TELEMETRY_INTERVAL_FLIGHT);
304
305                                 /* disable RDF beacon */
306                                 ao_rdf_set(0);
307
308                                 /* Record current GPS position by waking up GPS log tasks */
309                                 ao_wakeup(&ao_gps_data);
310                                 ao_wakeup(&ao_gps_tracking_data);
311
312                                 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
313                                 break;
314                         }
315                         break;
316                 case ao_flight_boost:
317
318                         /* boost to fast:
319                          *
320                          * accelerometer: start to fall at > 1/4 G
321                          *              OR
322                          * time: boost for more than 15 seconds
323                          *
324                          * Detects motor burn out by the switch from acceleration to
325                          * deceleration, or by waiting until the maximum burn duration
326                          * (15 seconds) has past.
327                          */
328                         if (ao_flight_accel > ao_ground_accel + ACCEL_COAST ||
329                             (int16_t) (ao_flight_tick - ao_launch_tick) > BOOST_TICKS_MAX)
330                         {
331                                 ao_flight_state = ao_flight_fast;
332                                 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
333                                 break;
334                         }
335                         break;
336                 case ao_flight_fast:
337
338                         /* fast to coast:
339                          *
340                          * accelerometer: integrated velocity < 200 m/s
341                          *               OR
342                          * barometer: fall at least 500m from max altitude
343                          *
344                          * This extra state is required to avoid mis-detecting
345                          * apogee due to mach transitions.
346                          *
347                          * XXX this is essentially a single-detector test
348                          * as the 500m altitude change would likely result
349                          * in a loss of the rocket. More data on precisely
350                          * how big a pressure change the mach transition
351                          * generates would be useful here.
352                          */
353                         if (ao_flight_vel < ACCEL_VEL_MACH ||
354                             ao_flight_pres > ao_min_pres + BARO_COAST)
355                         {
356                                 /* set min velocity to current velocity for
357                                  * apogee detect
358                                  */
359                                 ao_min_vel = abs(ao_flight_vel);
360                                 ao_flight_state = ao_flight_coast;
361                                 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
362                         }
363                         break;
364                 case ao_flight_coast:
365
366                         /* apogee detect: coast to drogue deploy:
367                          *
368                          * barometer: fall at least 10m
369                          *
370                          * It would be nice to use the accelerometer
371                          * to detect apogee as well, but tests have
372                          * shown that flights far from vertical would
373                          * grossly mis-detect apogee. So, for now,
374                          * we'll trust to a single sensor for this test
375                          */
376                         if (ao_flight_pres > ao_min_pres + BARO_APOGEE)
377                         {
378                                 /* ignite the drogue charge */
379                                 ao_ignite(ao_igniter_drogue);
380
381                                 /* slow down the telemetry system */
382                                 ao_telemetry_set_interval(AO_TELEMETRY_INTERVAL_RECOVER);
383
384                                 /* slow down the ADC sample rate */
385                                 ao_timer_set_adc_interval(10);
386
387                                 /*
388                                  * Start recording min/max accel and pres for a while
389                                  * to figure out when the rocket has landed
390                                  */
391                                 /* Set the 'last' limits to max range to prevent
392                                  * early resting detection
393                                  */
394                                 ao_interval_min_accel = 0;
395                                 ao_interval_max_accel = 0x7fff;
396                                 ao_interval_min_pres = 0;
397                                 ao_interval_max_pres = 0x7fff;
398
399                                 /* initialize interval values */
400                                 ao_interval_end = ao_flight_tick + AO_INTERVAL_TICKS;
401
402                                 ao_interval_cur_min_pres = ao_interval_cur_max_pres = ao_flight_pres;
403                                 ao_interval_cur_min_accel = ao_interval_cur_max_accel = ao_flight_accel;
404
405                                 /* and enter drogue state */
406                                 ao_flight_state = ao_flight_drogue;
407                                 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
408                         }
409
410                         break;
411                 case ao_flight_drogue:
412
413                         /* drogue to main deploy:
414                          *
415                          * barometer: reach main deploy altitude
416                          *
417                          * Would like to use the accelerometer for this test, but
418                          * the orientation of the flight computer is unknown after
419                          * drogue deploy, so we ignore it. Could also detect
420                          * high descent rate using the pressure sensor to
421                          * recognize drogue deploy failure and eject the main
422                          * at that point. Perhaps also use the drogue sense lines
423                          * to notice continutity?
424                          */
425                         if (ao_flight_pres >= ao_main_pres)
426                         {
427                                 ao_ignite(ao_igniter_main);
428                                 ao_flight_state = ao_flight_main;
429                                 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
430                         }
431
432                         /* fall through... */
433                 case ao_flight_main:
434
435                         /* drogue/main to land:
436                          *
437                          * accelerometer: value stable
438                          *                           AND
439                          * barometer: altitude stable and within 1000m of the launch altitude
440                          */
441
442                         if (ao_flight_pres < ao_interval_cur_min_pres)
443                                 ao_interval_cur_min_pres = ao_flight_pres;
444                         if (ao_flight_pres > ao_interval_cur_max_pres)
445                                 ao_interval_cur_max_pres = ao_flight_pres;
446                         if (ao_flight_accel < ao_interval_cur_min_accel)
447                                 ao_interval_cur_min_accel = ao_flight_accel;
448                         if (ao_flight_accel > ao_interval_cur_max_accel)
449                                 ao_interval_cur_max_accel = ao_flight_accel;
450
451                         if ((int16_t) (ao_flight_tick - ao_interval_end) >= 0) {
452                                 ao_interval_max_pres = ao_interval_cur_max_pres;
453                                 ao_interval_min_pres = ao_interval_cur_min_pres;
454                                 ao_interval_max_accel = ao_interval_cur_max_accel;
455                                 ao_interval_min_accel = ao_interval_cur_min_accel;
456                                 ao_interval_end = ao_flight_tick + AO_INTERVAL_TICKS;
457                                 ao_interval_cur_min_pres = ao_interval_cur_max_pres = ao_flight_pres;
458                                 ao_interval_cur_min_accel = ao_interval_cur_max_accel = ao_flight_accel;
459
460                                 if ((uint16_t) (ao_interval_max_accel - ao_interval_min_accel) < (uint16_t) ACCEL_INT_LAND &&
461                                     ao_flight_pres > ao_ground_pres - BARO_LAND &&
462                                     (uint16_t) (ao_interval_max_pres - ao_interval_min_pres) < (uint16_t) BARO_INT_LAND)
463                                 {
464                                         ao_flight_state = ao_flight_landed;
465
466                                         /* turn off the ADC capture */
467                                         ao_timer_set_adc_interval(0);
468                                         /* Enable RDF beacon */
469                                         ao_rdf_set(1);
470
471                                         ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
472                                 }
473                         }
474                         break;
475                 case ao_flight_landed:
476                         break;
477                 }
478         }
479 }
480
481 static __xdata struct ao_task   flight_task;
482
483 void
484 ao_flight_init(void)
485 {
486         ao_flight_state = ao_flight_startup;
487         ao_add_task(&flight_task, ao_flight, "flight");
488 }