diff options
| author | Keith Packard <keithp@keithp.com> | 2011-03-30 11:47:07 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2011-03-30 11:47:07 -0700 | 
| commit | a9df9fc257eb2d7038d66ac7c2539aae4474bf12 (patch) | |
| tree | b075056c89047bae1bac840559dffe6e456b5a45 /altosui/Altos.java | |
| parent | 87bff181a95f6bf92c2cec350d331ba6af779e80 (diff) | |
altosui: Parse and export Max flight log value
New configuration field might as well get dumped to the .csv files.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/Altos.java')
| -rw-r--r-- | altosui/Altos.java | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/altosui/Altos.java b/altosui/Altos.java index 3ef4d799..1f791da5 100644 --- a/altosui/Altos.java +++ b/altosui/Altos.java @@ -44,10 +44,11 @@ public class Altos {  	static final int AO_LOG_CALLSIGN = 1004;  	static final int AO_LOG_ACCEL_CAL = 1005;  	static final int AO_LOG_RADIO_CAL = 1006; -	static final int AO_LOG_MANUFACTURER = 1007; -	static final int AO_LOG_PRODUCT = 1008; -	static final int AO_LOG_SERIAL_NUMBER = 1009; -	static final int AO_LOG_SOFTWARE_VERSION = 1010; +	static final int AO_LOG_MAX_FLIGHT_LOG = 1007; +	static final int AO_LOG_MANUFACTURER = 2000; +	static final int AO_LOG_PRODUCT = 2001; +	static final int AO_LOG_SERIAL_NUMBER = 2002; +	static final int AO_LOG_SOFTWARE_VERSION = 9999;  	/* Added to flag invalid records */  	static final int AO_LOG_INVALID = -1;  | 
