Skip to content

Commit 2f08fe4

Browse files
author
Federico Fissore
committed
38400 baud rate had issues with RXTX and linux. With JSSC, it seems to be working fine again. Fixes #2296
1 parent 6c4f7dc commit 2f08fe4

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
@@ -111,7 +111,7 @@ public void actionPerformed(ActionEvent event) {
111111

112112
String[] serialRateStrings = {
113113
"300", "1200", "2400", "4800", "9600",
114-
"19200", "57600", "115200"
114+
"19200", "38400", "57600", "115200"
115115
};
116116

117117
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)