From a49762d350590df2c71eb1b76cbf99b42ac18509 Mon Sep 17 00:00:00 2001 From: Aleksei Date: Fri, 8 Nov 2019 16:41:36 +1000 Subject: [PATCH 1/2] Update Release_notes.txt --- Release_notes.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Release_notes.txt b/Release_notes.txt index b334c3a0..aa223dc4 100644 --- a/Release_notes.txt +++ b/Release_notes.txt @@ -1,5 +1,12 @@ == ver. 0.9.1 ======================================= - + - Fixed CRC8 bug with HDLC/Light protocol + - Added new API for keep alive timeout, auto-reconnect + - Fixed issues in TinyPacket + - Fix compilation for Windows Arduino IDE + - Removed sperf tool (use tiny_loopback) + - Fixed crc32 bug + - Improved HDLC logging + - Fixed C-compilation for avr gcc == ver. 0.9.0 ======================================= - Initial full duplex implementation: From e3008d27cc541a561dd6572a29c3997df6d8bef2 Mon Sep 17 00:00:00 2001 From: Aleksei Date: Fri, 8 Nov 2019 16:42:49 +1000 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 19709ca3..5f90d7cf 100644 --- a/README.md +++ b/README.md @@ -114,17 +114,17 @@ void loop() { * Connect your Arduino board to PC * Run your sketch or tinylight_loopback * Compile tiny_loopback tool - * Run tiny_loopback tool: `./bld/tiny_loopback -p /dev/ttyUSB0 -t light -g -c 8 -r` + * Run tiny_loopback tool: `./bld/tiny_loopback -p /dev/ttyUSB0 -t light -g -c 8 -a -r` * Connect your Arduino board to PC * Run your sketch or tinyhd_loopback * Compile tiny_loopback tool - * Run tiny_loopback tool: `./bld/tiny_loopback -p /dev/ttyUSB0 -t hd -c 8 -g -r` + * Run tiny_loopback tool: `./bld/tiny_loopback -p /dev/ttyUSB0 -t hd -c 8 -g -a -r` * Connect your Arduino board to PC * Run your sketch or tinyfd_loopback * Compile tiny_loopback tool - * Run tiny_loopback tool: `./bld/tiny_loopback -p /dev/ttyUSB0 -t fd -c 8 -w 3 -g -r` + * Run tiny_loopback tool: `./bld/tiny_loopback -p /dev/ttyUSB0 -t fd -c 8 -w 3 -g -a -r` For more information about this library, please, visit https://github.com/lexus2k/tinyproto. Doxygen documentation can be found at [github.io site](http://lexus2k.github.io/tinyproto).