Skip to content

Commit

Permalink
Merge pull request #49 from gbmhunter/develop
Browse files Browse the repository at this point in the history
Release of v2.8.2.
  • Loading branch information
gbmhunter authored Jun 2, 2024
2 parents cf0520e + d1a5d4f commit 4bd338e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [2.8.2] - 2024-06-02

- Fix bug where this project could not be added into another CMake file with `add_subdirectory()` correctly (thanks [alexg-k](https://github.com/alexg-k)).

## [v2.8.1] - 2023-12-16

- Added missing header include (thanks [Uglješa Lukešević](https://github.com/ukicomputers)).
Expand Down Expand Up @@ -140,7 +144,8 @@ Big thanks to https://github.com/MadsAndreasen-Zoetis for these improvements.
### Added
- Initial commit. serial-port-cpp library has basic functions up and running.
[Unreleased]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.1...HEAD
[Unreleased]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.2...HEAD
[v2.8.2]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.1...v2.8.2
[v2.8.1]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.8.0...v2.8.1
[v2.8.0]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.7.2...v2.8.0
[v2.7.2]: https://github.com/mbedded-ninja/CppLinuxSerial/compare/v2.7.1...v2.7.2
Expand Down
2 changes: 1 addition & 1 deletion include/CppLinuxSerial/SerialPort.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ namespace mn {
void SetNumStopBits(NumStopBits numStopBits);

/// \brief Sets the read timeout (in milliseconds)/blocking mode.
/// \details Only call when state != OPEN. This method manupulates VMIN and VTIME.
/// \details Only call when state != OPEN. This method manipulates VMIN and VTIME.
/// \param timeout_ms Set to -1 to infinite timeout, 0 to return immediately with any data (non
/// blocking, or >0 to wait for data for a specified number of milliseconds). Timeout will
/// be rounded to the nearest 100ms (a Linux API restriction). Maximum value limited to
Expand Down

0 comments on commit 4bd338e

Please sign in to comment.