energia / Energia

Fork of Arduino for the Texas Instruments LaunchPad's
http://energia.nu
Other
794 stars 672 forks source link

Extending the baud rates available in the Serial Monitor window #721

Closed dpharris closed 9 years ago

dpharris commented 9 years ago

Hi --

Can we extend the baud rates in Energia/app/src/processing/app/SerialMonitor.java? I can run the serial at higher than 115200 on Stellaris / Tiva, but can't test at that those speeds with the Serial Monitor window :-p

Is it as simple as changing: " String[] serialRateStrings = { "300","1200","2400","4800","9600","14400", "19200","28800","38400","57600","115200" };"

to: String[] serialRateStrings = { "300","1200","2400","4800","9600","14400", "19200","28800","38400","57600","115200", "230400", "250000", "460800", "500000", "921600", "1000000" };

I guess I can clone and build .... I will give that a try ...

Thanks David

rei-vilo commented 9 years ago

As a solution, use a terminal application, like

dpharris commented 9 years ago

Thanks Rei. Although those are solutions, they are not as convenient as the builtin Serial Monitor. Is there a reason why adding speeds is not desired?

Thanks again, David

On Sat, Sep 19, 2015 at 11:45 PM, Rei Vilo notifications@github.com wrote:

As a solution, use a terminal application, like

— Reply to this email directly or view it on GitHub https://github.com/energia/Energia/issues/721#issuecomment-141753149.

rei-vilo commented 9 years ago

Energia is based on Arduino. Superseding Energia is always an issue, especially for maintainability. This change should come from Arduino.

dpharris commented 9 years ago

Fair enough! Thanks. David

On Sun, Sep 20, 2015 at 12:16 AM, Rei Vilo notifications@github.com wrote:

Energia is based on Arduino. Superseding Energia is always an issue, especially for maintainability. This change should come from Arduino.

— Reply to this email directly or view it on GitHub https://github.com/energia/Energia/issues/721#issuecomment-141755058.