summaryrefslogtreecommitdiff
path: root/altosui/Altos.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-04-09 22:53:12 -0700
committerKeith Packard <keithp@keithp.com>2011-04-09 22:53:12 -0700
commit7f49d694e776819e03b2c708e1c4ee23ba311430 (patch)
tree9c58c83fd17633b1fb1770dca64cbfec096416b9 /altosui/Altos.java
parent835ab3a8c2741a09b27de58c37439a193c9919ce (diff)
altos/altosui: Log averaged baro sensor data in Tm/Tn
Instead of logging the best height guess from the kalman filter, log barometer data. The logged data consists of the average value betwen log points to reduce noise. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/Altos.java')
-rw-r--r--altosui/Altos.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/Altos.java b/altosui/Altos.java
index 1f791da5..54aced32 100644
--- a/altosui/Altos.java
+++ b/altosui/Altos.java
@@ -34,7 +34,7 @@ public class Altos {
static final int AO_LOG_GPS_ALT = 'H';
static final int AO_LOG_GPS_SAT = 'V';
static final int AO_LOG_GPS_DATE = 'Y';
- static final int AO_LOG_HEIGHT = 'h';
+ static final int AO_LOG_PRESSURE = 'P';
/* Added for header fields in eeprom files */
static final int AO_LOG_CONFIG_VERSION = 1000;