From 04e4079b689efbe61f09d508073fb0c4e29e1e2a Mon Sep 17 00:00:00 2001 From: Dan Stutts Date: Thu, 1 Dec 2016 09:23:36 -0600 Subject: [PATCH 1/3] 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. --- 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 e8cc0df75db..d83b132398e 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -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()); From 952ab630e85434abf8f72883bf579e4710a65044 Mon Sep 17 00:00:00 2001 From: Dan Stutts Date: Thu, 1 Dec 2016 20:15:33 -0600 Subject: [PATCH 2/3] Added a few build products to .gitignore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d767249cd75..e340ffba3d0 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,6 @@ avr-toolchain-*.zip manifest.mf nbbuild.xml nbproject +.project +listSerialC +liblistSerials-1.2.0.zip From 7a8ce25ce3cd59c5eecf8b1d107d88c000835749 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Wed, 8 Feb 2017 13:17:33 +0100 Subject: [PATCH 3/3] Update AbstractMonitor.java --- 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 d83b132398e..35c45857469 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -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", "500000", "1000000", "2000000"}; + 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());