2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
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.
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.
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.
18 #ifndef AO_FLIGHT_TEST
24 #error Please define HAS_ACCEL
28 #error Please define HAS_GPS
32 #error Please define HAS_USB
36 #define HAS_TELEMETRY HAS_RADIO
39 /* Main flight thread. */
41 __pdata enum ao_flight_state ao_flight_state; /* current flight state */
42 __pdata uint16_t ao_boost_tick; /* time of launch detect */
43 __pdata uint16_t ao_motor_number; /* number of motors burned so far */
46 * track min/max data over a long interval to detect
49 static __data uint16_t ao_interval_end;
50 static __data int16_t ao_interval_min_height;
51 static __data int16_t ao_interval_max_height;
53 static __data int16_t ao_coast_avg_accel;
56 __pdata uint8_t ao_flight_force_idle;
58 /* We also have a clock, which can be used to sanity check things in
59 * case of other failures
62 #define BOOST_TICKS_MAX AO_SEC_TO_TICKS(15)
64 /* Landing is detected by getting constant readings from both pressure and accelerometer
65 * for a fairly long time (AO_INTERVAL_TICKS)
67 #define AO_INTERVAL_TICKS AO_SEC_TO_TICKS(10)
69 #define abs(a) ((a) < 0 ? -(a) : (a))
75 ao_flight_state = ao_flight_startup;
79 * Process ADC samples, just looping
80 * until the sensors are calibrated.
85 switch (ao_flight_state) {
86 case ao_flight_startup:
88 /* Check to see what mode we should go to.
89 * - Invalid mode if accel cal appears to be out
90 * - pad mode if we're upright,
91 * - idle mode otherwise
94 if (ao_config.accel_plus_g == 0 ||
95 ao_config.accel_minus_g == 0 ||
96 ao_ground_accel < ao_config.accel_plus_g - ACCEL_NOSE_UP ||
97 ao_ground_accel > ao_config.accel_minus_g + ACCEL_NOSE_UP)
99 /* Detected an accel value outside -1.5g to 1.5g
100 * (or uncalibrated values), so we go into invalid mode
102 ao_flight_state = ao_flight_invalid;
104 #if HAS_RADIO && PACKET_HAS_SLAVE
105 /* Turn on packet system in invalid mode on TeleMetrum */
106 ao_packet_slave_start();
110 if (!ao_flight_force_idle
112 && ao_ground_accel < ao_config.accel_plus_g + ACCEL_NOSE_UP
116 /* Set pad mode - we can fly! */
117 ao_flight_state = ao_flight_pad;
118 #if HAS_USB && HAS_RADIO && !HAS_FLIGHT_DEBUG && !HAS_SAMPLE_PROFILE
119 /* Disable the USB controller in flight mode
126 /* Disable packet mode in pad state on TeleMini */
127 ao_packet_slave_stop();
131 /* Turn on telemetry system */
133 ao_telemetry_set_interval(AO_TELEMETRY_INTERVAL_PAD);
135 /* signal successful initialization by turning off the LED */
136 ao_led_off(AO_LED_RED);
139 ao_flight_state = ao_flight_idle;
141 #if HAS_ACCEL && HAS_RADIO && PACKET_HAS_SLAVE
142 /* Turn on packet system in idle mode on TeleMetrum */
143 ao_packet_slave_start();
146 /* signal successful initialization by turning off the LED */
147 ao_led_off(AO_LED_RED);
149 /* wakeup threads due to state change */
150 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
157 * barometer: > 20m vertical motion
159 * accelerometer: > 2g AND velocity > 5m/s
161 * The accelerometer should always detect motion before
162 * the barometer, but we use both to make sure this
163 * transition is detected. If the device
164 * doesn't have an accelerometer, then ignore the
165 * speed and acceleration as they are quite noisy
168 if (ao_height > AO_M_TO_HEIGHT(20)
170 || (ao_accel > AO_MSS_TO_ACCEL(20) &&
171 ao_speed > AO_MS_TO_SPEED(5))
175 ao_flight_state = ao_flight_boost;
176 ao_boost_tick = ao_sample_tick;
178 /* start logging data */
182 /* Increase telemetry rate */
183 ao_telemetry_set_interval(AO_TELEMETRY_INTERVAL_FLIGHT);
185 /* disable RDF beacon */
190 /* Record current GPS position by waking up GPS log tasks */
191 ao_wakeup(&ao_gps_data);
192 ao_wakeup(&ao_gps_tracking_data);
195 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
198 case ao_flight_boost:
202 * accelerometer: start to fall at > 1/4 G
204 * time: boost for more than 15 seconds
206 * Detects motor burn out by the switch from acceleration to
207 * deceleration, or by waiting until the maximum burn duration
208 * (15 seconds) has past.
210 if ((ao_accel < AO_MSS_TO_ACCEL(-2.5) && ao_height > AO_M_TO_HEIGHT(100)) ||
211 (int16_t) (ao_sample_tick - ao_boost_tick) > BOOST_TICKS_MAX)
214 ao_flight_state = ao_flight_fast;
215 ao_coast_avg_accel = ao_accel;
217 ao_flight_state = ao_flight_coast;
220 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
226 * This is essentially the same as coast,
227 * but the barometer is being ignored as
228 * it may be unreliable.
230 if (ao_speed < AO_MS_TO_SPEED(AO_MAX_BARO_SPEED))
232 ao_flight_state = ao_flight_coast;
233 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
238 case ao_flight_coast:
241 * By customer request - allow the user
242 * to lock out apogee detection for a specified
245 if (ao_config.apogee_lockout) {
246 if ((ao_sample_tick - ao_boost_tick) <
247 AO_SEC_TO_TICKS(ao_config.apogee_lockout))
251 /* apogee detect: coast to drogue deploy:
255 * Also make sure the model altitude is tracking
256 * the measured altitude reasonably closely; otherwise
257 * we're probably transsonic.
261 && (ao_sample_alt >= AO_MAX_BARO_HEIGHT || ao_error_h_sq_avg < 100)
266 /* ignite the drogue charge */
267 ao_ignite(ao_igniter_drogue);
271 /* slow down the telemetry system */
272 ao_telemetry_set_interval(AO_TELEMETRY_INTERVAL_RECOVER);
274 /* Turn the RDF beacon back on */
278 /* and enter drogue state */
279 ao_flight_state = ao_flight_drogue;
280 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
285 ao_coast_avg_accel = ao_coast_avg_accel - (ao_coast_avg_accel >> 6) + (ao_accel >> 6);
286 if (ao_coast_avg_accel > AO_MSS_TO_ACCEL(20)) {
287 ao_boost_tick = ao_sample_tick;
288 ao_flight_state = ao_flight_boost;
289 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
295 case ao_flight_drogue:
297 /* drogue to main deploy:
299 * barometer: reach main deploy altitude
301 * Would like to use the accelerometer for this test, but
302 * the orientation of the flight computer is unknown after
303 * drogue deploy, so we ignore it. Could also detect
304 * high descent rate using the pressure sensor to
305 * recognize drogue deploy failure and eject the main
306 * at that point. Perhaps also use the drogue sense lines
307 * to notice continutity?
309 if (ao_height <= ao_config.main_deploy)
312 ao_ignite(ao_igniter_main);
316 * Start recording min/max height
317 * to figure out when the rocket has landed
320 /* initialize interval values */
321 ao_interval_end = ao_sample_tick + AO_INTERVAL_TICKS;
323 ao_interval_min_height = ao_interval_max_height = ao_avg_height;
325 ao_flight_state = ao_flight_main;
326 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
330 /* fall through... */
335 * barometer: altitude stable
338 if (ao_avg_height < ao_interval_min_height)
339 ao_interval_min_height = ao_avg_height;
340 if (ao_avg_height > ao_interval_max_height)
341 ao_interval_max_height = ao_avg_height;
343 if ((int16_t) (ao_sample_tick - ao_interval_end) >= 0) {
344 if (ao_interval_max_height - ao_interval_min_height <= AO_M_TO_HEIGHT(4))
346 ao_flight_state = ao_flight_landed;
348 /* turn off the ADC capture */
349 ao_timer_set_adc_interval(0);
351 ao_wakeup(DATA_TO_XDATA(&ao_flight_state));
353 ao_interval_min_height = ao_interval_max_height = ao_avg_height;
354 ao_interval_end = ao_sample_tick + AO_INTERVAL_TICKS;
364 static inline int int_part(int16_t i) { return i >> 4; }
365 static inline int frac_part(int16_t i) { return ((i & 0xf) * 100 + 8) / 16; }
373 accel = ((ao_ground_accel - ao_sample_accel) * ao_accel_scale) >> 16;
376 printf ("sample:\n");
377 printf (" tick %d\n", ao_sample_tick);
378 printf (" raw pres %d\n", ao_sample_pres);
380 printf (" raw accel %d\n", ao_sample_accel);
382 printf (" ground pres %d\n", ao_ground_pres);
383 printf (" ground alt %d\n", ao_ground_height);
385 printf (" raw accel %d\n", ao_sample_accel);
386 printf (" groundaccel %d\n", ao_ground_accel);
387 printf (" accel_2g %d\n", ao_accel_2g);
390 printf (" alt %d\n", ao_sample_alt);
391 printf (" height %d\n", ao_sample_height);
393 printf (" accel %d.%02d\n", int_part(accel), frac_part(accel));
397 printf ("kalman:\n");
398 printf (" height %d\n", ao_height);
399 printf (" speed %d.%02d\n", int_part(ao_speed), frac_part(ao_speed));
400 printf (" accel %d.%02d\n", int_part(ao_accel), frac_part(ao_accel));
401 printf (" max_height %d\n", ao_max_height);
402 printf (" avg_height %d\n", ao_avg_height);
403 printf (" error_h %d\n", ao_error_h);
404 printf (" error_avg %d\n", ao_error_h_sq_avg);
407 __code struct ao_cmds ao_flight_cmds[] = {
408 { ao_flight_dump, "F\0Dump flight status" },
413 static __xdata struct ao_task flight_task;
418 ao_flight_state = ao_flight_startup;
420 ao_cmd_register(&ao_flight_cmds[0]);
422 ao_add_task(&flight_task, ao_flight, "flight");