summaryrefslogtreecommitdiff
path: root/src/ao_flight.c
diff options
context:
space:
mode:
authorBdale Garbee <bdale@gag.com>2010-04-10 15:20:38 -0600
committerBdale Garbee <bdale@gag.com>2010-04-10 15:20:38 -0600
commitc71937b9744e7dc2d339c41a8f8f67f183352a70 (patch)
tree7a3dca8d32a04a8b22bf8d4d228cbf1c60296797 /src/ao_flight.c
parentb3a2e1221735d54dc3f2b97b4e75ed6f33ab8227 (diff)
change all references to 'drogue' igniter to be 'apogee' instead
Diffstat (limited to 'src/ao_flight.c')
-rw-r--r--src/ao_flight.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ao_flight.c b/src/ao_flight.c
index 980c16be..1307e08d 100644
--- a/src/ao_flight.c
+++ b/src/ao_flight.c
@@ -347,7 +347,7 @@ ao_flight(void)
break;
case ao_flight_coast:
- /* apogee detect: coast to drogue deploy:
+ /* apogee detect: coast to apogee drogue deploy:
*
* barometer: fall at least 10m
*
@@ -359,8 +359,8 @@ ao_flight(void)
*/
if (ao_flight_pres > ao_min_pres + BARO_APOGEE)
{
- /* ignite the drogue charge */
- ao_ignite(ao_igniter_drogue);
+ /* ignite the apogee charge */
+ ao_ignite(ao_igniter_apogee);
/* slow down the telemetry system */
ao_telemetry_set_interval(AO_TELEMETRY_INTERVAL_RECOVER);