Releases: gbmhunter/CppLinuxSerial
Releases · gbmhunter/CppLinuxSerial
v2.8.2
v2.8.1
[v2.8.1] - 2023-12-16
- Added missing header include (thanks Uglješa Lukešević).
- Added missing compare links to the CHANGELOG.
v2.8.0
v2.7.2
[v2.7.2] - 2023-07-16
- Changed CICD runner from TravisCI to GitHub Actions.
- Fixed some spelling errors in the README (thanks @JensvanEsch).
v2.7.1
[v2.7.1] - 2023-03-16
-
CMake config updated with exporting and generation of a CMake config file so that end users can simply do (thanks to https://github.com/borgmanJeremy for this contribution):
find_package(CppLinuxSerial REQUIRED) ... ... target_link_libraries(target CppLinuxSerial::CppLinuxSerial)
v2.7.0
[v2.7.0] - 2023-02-13
Read()
andReadBinary()
now append to the provided data containers (string or vector) rather than erase and write.- Added
run.sh
bash script for running local serial port tests with connected Arduino Uno (see README). Updated local tests to write and read back data in both string and binary forms.
v2.6.0
[v2.6.0] - 2023-02-02
Read()
andReadBinary()
now throw exceptions if they detect that the serial device has been disconnected (thanks to aldoshkind for helping with this one).- Added Arduino testing instructions to the README.
v2.5.0
[v2.5.0] - 2022-11-12
- Replaced all tabs in code with spaces, which should fix the ugly code rendering in GitHub.
- Added ability to set/change both hardware and software flow control (thanks to Vittorio Francescon for helping with this one).
- Added some ready-to-run examples in the new
example/
directory. - Added a section in the README on WSL (Windows Subsystem for Linux) usage.