Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/processing/app/AbstractMonitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void actionPerformed(ActionEvent event) {

String[] serialRateStrings = {
"300", "1200", "2400", "4800", "9600",
"19200", "57600", "115200"
"19200", "38400", "57600", "115200"
};

serialRates = new JComboBox();
Expand Down
2 changes: 1 addition & 1 deletion arduino-core/src/processing/app/PreferencesData.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static public void init(File file) {

private static void fixPreferences() {
String baud = get("serial.debug_rate");
if ("14400".equals(baud) || "28800".equals(baud) || "38400".equals(baud)) {
if ("14400".equals(baud) || "28800".equals(baud)) {
set("serial.debug_rate", "9600");
}
}
Expand Down