1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

Add 500Kbps, 1Mbps and 2Mbps to the list of available serial speeds

This commit is contained in:
Dan Stutts 2016-12-01 09:23:36 -06:00 committed by Martino Facchin
parent 26ae0ac868
commit a095d2a3c8

View File

@ -20,7 +20,7 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener {
private BoardPort boardPort;
protected String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "74880", "115200", "230400", "250000"};
protected String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "74880", "115200", "230400", "250000", "500000", "1000000", "2000000"};
public AbstractMonitor(BoardPort boardPort) {
super(boardPort.getLabel());