Skip to content

Commit db75e67

Browse files
committed
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.
1 parent 3076c63 commit db75e67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/src/processing/app/AbstractMonitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public void actionPerformed(ActionEvent event) {
140140
}
141141
lineEndings.setMaximumSize(lineEndings.getMinimumSize());
142142

143-
String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "115200", "230400", "250000"};
143+
String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "74880", "115200", "230400", "250000"};
144144

145145
serialRates = new JComboBox();
146146
for (String rate : serialRateStrings) {

0 commit comments

Comments
 (0)