diff options
| author | Keith Packard <keithp@keithp.com> | 2010-09-19 02:52:29 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-09-19 02:52:29 -0700 |
| commit | 1260589976c1a95848b298497fd251c4ee7d3f93 (patch) | |
| tree | aea8dc7f78e9580147d3f4c5459d9b54bc7d7028 /ao-tools/altosui/AltosState.java | |
| parent | 7a4d7110debb88f4e906fee7c46f2badd561809d (diff) | |
altosui: Write raw sensor data to .csv files
For data export, provide the raw sensor samples instead of the
filtered values.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/altosui/AltosState.java')
| -rw-r--r-- | ao-tools/altosui/AltosState.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/altosui/AltosState.java b/ao-tools/altosui/AltosState.java index 3ef00f35..90e73f5e 100644 --- a/ao-tools/altosui/AltosState.java +++ b/ao-tools/altosui/AltosState.java @@ -80,7 +80,7 @@ public class AltosState { data = cur; ground_altitude = data.ground_altitude(); - height = data.altitude() - ground_altitude; + height = data.filtered_altitude() - ground_altitude; report_time = System.currentTimeMillis(); |
