diff options
| author | Keith Packard <keithp@keithp.com> | 2017-09-26 18:00:36 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-09-26 18:00:36 -0700 | 
| commit | cfc09e8f1f263595972cbb6af23f22e2d749c744 (patch) | |
| tree | 76fe95e1ec9bced22460c4ad261678413ae97016 /altoslib/AltosLib.java | |
| parent | df39a30c762d57c7d04110e054f74d50fa8d85de (diff) | |
altoslib: Add tilt and pyro data to CSV export
It's now version 6. Also removed duplicate time values and made radio
values conditional on having radio data.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosLib.java')
| -rw-r--r-- | altoslib/AltosLib.java | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/altoslib/AltosLib.java b/altoslib/AltosLib.java index d1063509..77b3fcc4 100644 --- a/altoslib/AltosLib.java +++ b/altoslib/AltosLib.java @@ -587,7 +587,11 @@ public class AltosLib {  	}  	public static String igniter_name(int i) { -		return String.format("Ignitor %c", 'A' + i); +		return String.format("Igniter %c", 'A' + i); +	} + +	public static String igniter_short_name(int i) { +		return String.format("igniter_%c", 'a' + i);  	}  	public static AltosRecordSet record_set(File file) throws FileNotFoundException, IOException { | 
