summaryrefslogtreecommitdiff
path: root/src/core/ao_log.h
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-08-29 19:22:18 -0500
committerKeith Packard <keithp@keithp.com>2013-08-29 19:22:18 -0500
commitce1378385ef273010498e81c205f42d8e32c7dc1 (patch)
tree3defcc30bef446ea681a358c51f418e3a685bfe5 /src/core/ao_log.h
parent04d7d0f829ba953ffeca8ad9887a4b6b2b5d5087 (diff)
altos: Split EasyMini and TeleMini log formats
Same data, but EasyMini uses a 3.0V supply while TeleMini uses 3.3V, which changes the intepretation of all of the ADC values Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_log.h')
-rw-r--r--src/core/ao_log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ao_log.h b/src/core/ao_log.h
index f6ab4520..a2f342d7 100644
--- a/src/core/ao_log.h
+++ b/src/core/ao_log.h
@@ -44,8 +44,9 @@ extern __pdata enum ao_flight_state ao_log_state;
#define AO_LOG_FORMAT_TELEMETRY 3 /* 32 byte ao_telemetry records */
#define AO_LOG_FORMAT_TELESCIENCE 4 /* 32 byte typed telescience records */
#define AO_LOG_FORMAT_TELEMEGA 5 /* 32 byte typed telemega records */
-#define AO_LOG_FORMAT_MINI 6 /* 16-byte MS5607 baro only */
+#define AO_LOG_FORMAT_EASYMINI 6 /* 16-byte MS5607 baro only, 3.0V supply */
#define AO_LOG_FORMAT_TELEMETRUM 7 /* 16-byte typed telemetrum records */
+#define AO_LOG_FORMAT_TELEMINI 8 /* 16-byte MS5607 baro only, 3.3V supply */
#define AO_LOG_FORMAT_NONE 127 /* No log at all */
extern __code uint8_t ao_log_format;