0.1.1 SWSerialOut

This commit is contained in:
Rob Tillaart 2023-11-22 11:38:10 +01:00
parent 829195ceb2
commit c6febd6996
5 changed files with 8 additions and 8 deletions

View File

@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.1] - 2023-11-22
- update readme.md
## [0.1.0] - 2023-09-02
- revitalized as transmit (TX) only SWSerial.
- initial release

View File

@ -127,13 +127,11 @@ interrupts during the transfer of the data.
- update documentation
- test bits, parity, stop bits
#### Should
- examples
- performance sketch
#### Could
- unit tests?
@ -143,13 +141,11 @@ interrupts during the transfer of the data.
- investigate optimized transfer per platform
- higher baud rates, especially AVR.
#### Wont
- read()
- non blocking version
## Support
If you appreciate my libraries, you can support the development and maintenance.

View File

@ -2,7 +2,7 @@
//
// FILE: SWSerialOut.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.0
// VERSION: 0.1.1
// PURPOSE: Arduino library for SWSerialOut, supports only data out (TX).
// DATE: 2023-09-02
// URL: https://github.com/RobTillaart/SWSerialOut
@ -11,7 +11,7 @@
#include "Arduino.h"
#define SWSERIALOUT_LIB_VERSION (F("0.1.0"))
#define SWSERIALOUT_LIB_VERSION (F("0.1.1"))
class SWSerialOut : public Stream

View File

@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/SWSerialOut.git"
},
"version": "0.1.0",
"version": "0.1.1",
"license": "MIT",
"frameworks": "*",
"platforms": "*",

View File

@ -1,5 +1,5 @@
name=SWSerialOut
version=0.1.0
version=0.1.1
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for SWSerialOut, supports only data out (TX).