Skip to content

Commit 863cb41

Browse files
committed
Merge pull request #2485 from ffissore/ide-1.5.x-reenable-38400
Re enable 38400 baud rates
2 parents 0dbd35a + 2f08fe4 commit 863cb41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/processing/app/AbstractMonitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void actionPerformed(ActionEvent event) {
135135

136136
String[] serialRateStrings = {
137137
"300", "1200", "2400", "4800", "9600",
138-
"19200", "57600", "115200"
138+
"19200", "38400", "57600", "115200"
139139
};
140140

141141
serialRates = new JComboBox();

arduino-core/src/processing/app/PreferencesData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static public void init(File file) {
8080

8181
private static void fixPreferences() {
8282
String baud = get("serial.debug_rate");
83-
if ("14400".equals(baud) || "28800".equals(baud) || "38400".equals(baud)) {
83+
if ("14400".equals(baud) || "28800".equals(baud)) {
8484
set("serial.debug_rate", "9600");
8585
}
8686
}

0 commit comments

Comments
 (0)