diff options
author | Keith Packard <keithp@keithp.com> | 2014-05-28 20:48:59 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-05-28 22:02:31 -0700 |
commit | 9a4c2c7fc6af922d052e23a1b99bf847fbf9b0e9 (patch) | |
tree | 1ecc22160e68caaa6b46daff8dc026b8f86719d2 /altosui/AltosUI.java | |
parent | 82a69777c67128192b50bbf77ace0a6525f49cac (diff) |
telegps: Add scan UI
Move scan UI bits into altosuilib, allow telegps to not show telemetry
format options.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r-- | altosui/AltosUI.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 9df02ec9..ad7964e9 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -74,6 +74,10 @@ public class AltosUI extends AltosUIFrame { } } + public void scan_device_selected(AltosDevice device) { + telemetry_window(device); + } + Container pane; GridBagLayout gridbag; @@ -272,7 +276,7 @@ public class AltosUI extends AltosUIFrame { } void ScanChannels() { - new AltosScanUI(AltosUI.this); + new AltosScanUI(AltosUI.this, true); } void LoadMaps() { |