Skip to content

Commit 04e4079

Browse files
committed
Added the last three zero-error (for a 16 MHz system clock) Baud rates (500,000.0, 1,000,000.0, and 2,000,000.0) to the list of available serial speeds in SerialMonitor.java. All performed flawlessly in my tests.
1 parent 1a97ec4 commit 04e4079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/AbstractMonitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener {
2020

2121
private BoardPort boardPort;
2222

23-
protected String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "74880", "115200", "230400", "250000"};
23+
protected String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "74880", "115200", "230400", "250000", "500000", "1000000", "2000000"};
2424

2525
public AbstractMonitor(BoardPort boardPort) {
2626
super(boardPort.getLabel());

0 commit comments

Comments
 (0)