From 9f95ffbad918a73cfd5460d6ce037d680465c35d Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 19 Dec 2013 00:12:21 -0800 Subject: [PATCH 1/1] altosui: When device has no valid romconfig, set RF cal to 0 This is intended to signal to the user that no valid value was found and that they'd best pick something sensible. Signed-off-by: Keith Packard --- altosui/AltosRomconfigUI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/altosui/AltosRomconfigUI.java b/altosui/AltosRomconfigUI.java index 6f9d9dc6..fa780125 100644 --- a/altosui/AltosRomconfigUI.java +++ b/altosui/AltosRomconfigUI.java @@ -91,7 +91,7 @@ public class AltosRomconfigUI c.anchor = GridBagConstraints.LINE_START; c.insets = ir; c.ipady = 5; - radio_calibration_value = new JTextField("1186611"); + radio_calibration_value = new JTextField("0"); pane.add(radio_calibration_value, c); /* Buttons */ -- 2.30.2