diff options
| author | Keith Packard <keithp@keithp.com> | 2012-06-01 19:51:25 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-06-01 19:51:25 -0700 |
| commit | 1824761f5b98e92485e2dd347b1c4d043ec207e2 (patch) | |
| tree | 9c84ad0d7b4007ce668b901091695fc4ddbebd5e /altosui/AltosRecord.java | |
| parent | ab85337aa942cb73a08bd3b783771179773b9a67 (diff) | |
altosui: Quick hacks to download megametrum data and convert to CSV
Very little useful data crunching is done, but at least we can save
and convert files
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosRecord.java')
| -rw-r--r-- | altosui/AltosRecord.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/altosui/AltosRecord.java b/altosui/AltosRecord.java index 4dfa98be..4643d69a 100644 --- a/altosui/AltosRecord.java +++ b/altosui/AltosRecord.java @@ -67,6 +67,9 @@ public class AltosRecord implements Comparable <AltosRecord> { AltosGPS gps; boolean new_gps; + AltosIMU imu; + AltosMag mag; + double time; /* seconds since boost */ int device_type; @@ -277,6 +280,8 @@ public class AltosRecord implements Comparable <AltosRecord> { gps = new AltosGPS(old.gps); new_gps = false; companion = old.companion; + imu = old.imu; + mag = old.mag; } public AltosRecord() { |
