summaryrefslogtreecommitdiff
path: root/altosui/AltosConfig.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-08-08 18:49:45 -0700
committerKeith Packard <keithp@keithp.com>2011-08-08 18:50:55 -0700
commit81bb6f42d8b859195ea5a35806c42d98ba82e8e1 (patch)
tree1a9bab3f85776e17c7511dcc9b196ecad7717496 /altosui/AltosConfig.java
parentc8c01684fa011acf3bbe5c3ebbc84aa8e8457a5e (diff)
altosui: Have single radio_to_frequency function
This takes all three radio params (setting, cal, channel) and computes the current frequency. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosConfig.java')
-rw-r--r--altosui/AltosConfig.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/altosui/AltosConfig.java b/altosui/AltosConfig.java
index d5d7d56a..7312ea6c 100644
--- a/altosui/AltosConfig.java
+++ b/altosui/AltosConfig.java
@@ -320,8 +320,6 @@ public class AltosConfig implements ActionListener {
}
double frequency() {
- System.out.printf("setting %d channel %d calibration %d\n",
- radio_setting.get(), radio_channel.get(), radio_calibration.get());
return AltosConvert.radio_to_frequency(radio_setting.get(),
radio_calibration.get(),
radio_channel.get());