diff options
| author | Keith Packard <keithp@keithp.com> | 2017-05-25 17:29:31 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-05-25 17:29:31 -0700 | 
| commit | 4d497c1be534e2b206edec3c096198c8ea64cebe (patch) | |
| tree | 14badc6759e0d873fdad336b6dba3f3da09eb16f /altosui/AltosPad.java | |
| parent | e6eb659b0e984515a33b3ddabfe8325742a952da (diff) | |
altosui: Adapt to AltosFlightSeries for data analysis
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosPad.java')
| -rw-r--r-- | altosui/AltosPad.java | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/altosui/AltosPad.java b/altosui/AltosPad.java index d411c969..73da9933 100644 --- a/altosui/AltosPad.java +++ b/altosui/AltosPad.java @@ -46,10 +46,10 @@ public class AltosPad extends AltosUIFlightTab {  	class LoggingReady extends AltosUIIndicator {  		public void show (AltosState state, AltosListenerState listener_state) { -			if (state == null || state.flight == AltosLib.MISSING) { +			if (state == null || state.cal_data.flight == AltosLib.MISSING) {  				hide();  			} else { -				if (state.flight != 0) { +				if (state.cal_data.flight != 0) {  					if (state.state() <= Altos.ao_flight_pad)  						show("Ready to record");  					else if (state.state() < Altos.ao_flight_landed || @@ -59,7 +59,7 @@ public class AltosPad extends AltosUIFlightTab {  						show("Recorded data");  				} else  					show("Storage full"); -				set_lights(state.flight != 0); +				set_lights(state.cal_data.flight != 0);  			}  		}  		public LoggingReady (AltosUIFlightTab container, int y) {  | 
