summaryrefslogtreecommitdiff
path: root/src/core/ao_pyro.h
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-10-22 08:52:08 -0700
committerKeith Packard <keithp@keithp.com>2012-10-22 08:52:08 -0700
commitfd619a01bf3489b1df017aca20362757b087ec11 (patch)
tree57280f51c5b98bf7d747a8e9af9d1d62a30ade5f /src/core/ao_pyro.h
parent8cb09f8a3e2dae5f7f3d2d3dbbc81ba40b491e75 (diff)
altos: Add state comparisons to pyro channel conditions
Let pyro channels block waiting for flight state changes. This allows for pyro channels to be synchronized with the main iginiter channels. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_pyro.h')
-rw-r--r--src/core/ao_pyro.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/ao_pyro.h b/src/core/ao_pyro.h
index 5deb69d0..cde850ad 100644
--- a/src/core/ao_pyro.h
+++ b/src/core/ao_pyro.h
@@ -42,6 +42,9 @@ enum ao_pyro_flag {
ao_pyro_after_motor = 0x00001000,
ao_pyro_delay = 0x00002000,
+
+ ao_pyro_state_less = 0x00004000,
+ ao_pyro_state_greater_or_equal = 0x00008000,
};
struct ao_pyro {
@@ -52,6 +55,7 @@ struct ao_pyro {
int16_t orient_less, orient_greater;
int16_t time_less, time_greater;
int16_t delay;
+ uint8_t state_less, state_greater_or_equal;
int16_t motor;
uint16_t delay_done;
uint8_t fired;