summaryrefslogtreecommitdiff
path: root/src/ao_host.h
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_host.h
parentb3a2e1221735d54dc3f2b97b4e75ed6f33ab8227 (diff)
change all references to 'drogue' igniter to be 'apogee' instead
Diffstat (limited to 'src/ao_host.h')
-rw-r--r--src/ao_host.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ao_host.h b/src/ao_host.h
index fa03a910..c09ab0fe 100644
--- a/src/ao_host.h
+++ b/src/ao_host.h
@@ -36,7 +36,7 @@ struct ao_adc {
int16_t pres; /* pressure sensor */
int16_t temp; /* temperature sensor */
int16_t v_batt; /* battery voltage */
- int16_t sense_d; /* drogue continuity sense */
+ int16_t sense_d; /* apogee continuity sense */
int16_t sense_m; /* main continuity sense */
};
@@ -71,14 +71,14 @@ uint8_t ao_adc_head;
#define ao_telemetry_set_interval(x)
enum ao_igniter {
- ao_igniter_drogue = 0,
+ ao_igniter_apogee = 0,
ao_igniter_main = 1
};
void
ao_ignite(enum ao_igniter igniter)
{
- printf ("ignite %s\n", igniter == ao_igniter_drogue ? "drogue" : "main");
+ printf ("ignite %s\n", igniter == ao_igniter_apogee ? "apogee" : "main");
}
struct ao_task {