mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.1.1 SWSerialOut
This commit is contained in:
parent
829195ceb2
commit
c6febd6996
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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": "*",
|
||||
|
@ -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).
|
||||
|
Loading…
Reference in New Issue
Block a user