From db75e677da18d10b5f55f3bdca877b14c196c089 Mon Sep 17 00:00:00 2001 From: Chris--A Date: Mon, 22 Jun 2015 10:20:45 +1000 Subject: [PATCH] =?UTF-8?q?Added=2074880=20baud=20rate=20to=20the=20serial?= =?UTF-8?q?=20monitor.=20Now=20that=20the=20latest=20IDE=20incorporates=20?= =?UTF-8?q?a=20board/core=20manager,=20the=20ESP8266=20community=20is=20no?= =?UTF-8?q?w=20using=20this=20software.=20The=20baud=20rate=20of=2074880?= =?UTF-8?q?=20is=20important=20for=20debugging=20as=20it=20is=20what=20the?= =?UTF-8?q?=20bootloader=20uses.=EF=BB=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/processing/app/AbstractMonitor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/AbstractMonitor.java b/app/src/processing/app/AbstractMonitor.java index 710e86115..18dc268b8 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -140,7 +140,7 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener { } 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(); for (String rate : serialRateStrings) {