diff options
author | Keith Packard <keithp@keithp.com> | 2017-09-18 09:57:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-09-18 09:59:24 -0700 |
commit | b9a00856aa4cf55ae4a143288058094ef8061134 (patch) | |
tree | 2137a64bcdef7cbce092af38702ac63fe059a945 /telegps | |
parent | 95952059bbb50b5f22460418df003a87c8bd3271 (diff) |
telegps: Fix up TeleGPS UI bits after accel cal changes
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'telegps')
-rw-r--r-- | telegps/TeleGPSConfigUI.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/telegps/TeleGPSConfigUI.java b/telegps/TeleGPSConfigUI.java index 88ced192..87683c2b 100644 --- a/telegps/TeleGPSConfigUI.java +++ b/telegps/TeleGPSConfigUI.java @@ -619,7 +619,7 @@ public class TeleGPSConfigUI return true; } - void set_dirty() { + public void set_dirty() { dirty = true; save.setEnabled(true); } @@ -634,6 +634,17 @@ public class TeleGPSConfigUI super.dispose(); } + public int accel_cal_plus() { + return AltosLib.MISSING; + } + + public int accel_cal_minus() { + return AltosLib.MISSING; + } + + public void set_accel_cal(int accel_plus, int accel_minus) { + } + /* Listen for events from our buttons */ public void actionPerformed(ActionEvent e) { String cmd = e.getActionCommand(); |