diff --git a/README.md b/README.md index 0f0d132b..be6e0c35 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ NinjaTerm - Maintainer/Primary Author: Geoffrey Hunter (http://www.mbedded.ninja) - Created: 2015-07-15 -- Last Modified: 2018-05-16 -- Version: v0.9.0 +- Last Modified: 2018-10-31 +- Version: v0.9.1 - Company: mbedded.ninja - Project: NinjaTerm - Language: Java, JavaFX diff --git a/arduino-serial/Baud027123Test/Baud027123Test.ino b/arduino-serial/Baud027123Test/Baud027123Test.ino new file mode 100644 index 00000000..fb28d8b0 --- /dev/null +++ b/arduino-serial/Baud027123Test/Baud027123Test.ino @@ -0,0 +1,22 @@ +/** + * This code checks that NinjaTerm can handle custom baud rates. + * + * @author Geoffrey Hunter (www.mbedded.ninja) + * @since 2018-10-31 + * @last-modified 2018-10-31 + */ + +// the setup routine runs once when you press reset: +void setup() { + // Initialize serial communication + Serial.begin(27123); +} + +void loop() { + Serial.println("custom"); + // Wait until data is sent + Serial.flush(); +} + + + diff --git a/build.gradle b/build.gradle index 0418a1e0..6ef13fb0 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ group = 'NinjaTerm' // This version number is the master version number which needs to be updated // manually. This version number is used to automatically set the one in the README, // index.html, and also the one install4j uses (which in turn is the one the app uses at runtime). -version = '0.9.0' +version = '0.9.1' // Project description, shown when // "gradle -q projects" is called diff --git a/changelog.md b/changelog.md index 8419b976..c3aea05c 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [v0.9.1] - 2018-10-31 + +### Added +- NinjaTerm now supports custom (non-standard) baud rates (as long as the underlying OS/hardware also supports it), closes #222. + ## [v0.9.0] - 2018-05-17 ### Changed diff --git a/docs/index.html b/docs/index.html index 367e88b3..276da154 100644 --- a/docs/index.html +++ b/docs/index.html @@ -14,7 +14,7 @@ - +