summaryrefslogtreecommitdiff
path: root/src/core/ao_flight.h
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-12-20 22:13:32 -0800
committerKeith Packard <keithp@keithp.com>2013-12-20 22:19:35 -0800
commit755082d36231c1b247bc0e1f13919dd9b5c362a8 (patch)
treedb69327dcda4706fd67e07a94104fba156e7d95b /src/core/ao_flight.h
parent758acb92cccbe4b64a35a1883b42713738c90630 (diff)
altos: mma655x also needs ao_sensor_errors
TeleMetrum has an MMA655X but no IMU, so it needs an explicit addition for sensor errors. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_flight.h')
-rw-r--r--src/core/ao_flight.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/ao_flight.h b/src/core/ao_flight.h
index c7c02ccf..01d21c11 100644
--- a/src/core/ao_flight.h
+++ b/src/core/ao_flight.h
@@ -41,7 +41,11 @@ extern __pdata enum ao_flight_state ao_flight_state;
extern __pdata uint16_t ao_boost_tick;
extern __pdata uint16_t ao_motor_number;
-#if HAS_IMU
+#if HAS_IMU || HAS_MMA655X
+#define HAS_SENSOR_ERRORS 1
+#endif
+
+#if HAS_SENSOR_ERRORS
extern __xdata uint8_t ao_sensor_errors;
#endif