summaryrefslogtreecommitdiff
path: root/src/product/ao_micropeak.h
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-10-13 22:05:20 -0700
committerKeith Packard <keithp@keithp.com>2013-10-13 22:05:20 -0700
commit1bd9786802751391cca3b83ac3045029e00e39ee (patch)
treed154e47d76517cb86eca380ad0dde7b22b322a57 /src/product/ao_micropeak.h
parente0e98597887a970f31b33895adb77d35e06b34ff (diff)
altos/micropeak: Increase boost detect to 30m
This meant increasing the data buffering as well so that we could reliably capture the flight data back to the ground, even for slow flights. And, with the buffer extra large, we work backwards from the current buffer location to find the last ground location rather than working forwards from the first buffered location. This ensures that we don't capture noise before boost and instead capture a nice flight curve instead. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/product/ao_micropeak.h')
-rw-r--r--src/product/ao_micropeak.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/product/ao_micropeak.h b/src/product/ao_micropeak.h
index 3e3dec15..0cefca6f 100644
--- a/src/product/ao_micropeak.h
+++ b/src/product/ao_micropeak.h
@@ -20,12 +20,12 @@
#define SAMPLE_SLEEP AO_MS_TO_TICKS(96)
-/* 16 sample, or about two seconds worth */
-#define GROUND_AVG_SHIFT 4
+/* 64 sample, or about six seconds worth */
+#define GROUND_AVG_SHIFT 6
#define GROUND_AVG (1 << GROUND_AVG_SHIFT)
/* Pressure change (in Pa) to detect boost */
-#define BOOST_DETECT 120 /* 10m at sea level, 12m at 2000m */
+#define BOOST_DETECT 360 /* 30m at sea level, 36m at 2000m */
/* Wait after power on before doing anything to give the user time to assemble the rocket */
#define BOOST_DELAY AO_SEC_TO_TICKS(60)