mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Added 74880 baud rate to the serial monitor.
Now that the latest IDE incorporates a board/core manager, the ESP8266 community is now using this software. The baud rate of 74880 is important for debugging as it is what the bootloader uses.
This commit is contained in:
parent
3076c63c7a
commit
db75e677da
@ -140,7 +140,7 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener {
|
|||||||
}
|
}
|
||||||
lineEndings.setMaximumSize(lineEndings.getMinimumSize());
|
lineEndings.setMaximumSize(lineEndings.getMinimumSize());
|
||||||
|
|
||||||
String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "115200", "230400", "250000"};
|
String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "74880", "115200", "230400", "250000"};
|
||||||
|
|
||||||
serialRates = new JComboBox();
|
serialRates = new JComboBox();
|
||||||
for (String rate : serialRateStrings) {
|
for (String rate : serialRateStrings) {
|
||||||
|
Loading…
Reference in New Issue
Block a user