Skip to content

Commit ef5f4a9

Browse files
committed
Updated files to release of v2.8.0.
1 parent ae3c8f7 commit ef5f4a9

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## [v2.8.0] - 2023-07-22
11+
12+
- Improved error checking in read/write commands. (thanks @meetgandhi-eic).
13+
1014
## [v2.7.2] - 2023-07-16
1115

1216
- Changed CICD runner from TravisCI to GitHub Actions.

include/CppLinuxSerial/SerialPort.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@ namespace mn {
209209
/// \brief Assigns the provided tty settings to the serial port pointed to by the file descriptor.
210210
void SetTermios2(termios2 tty);
211211

212-
/// \brief checks whether the port is open or not
213-
/// \param prettyFunc Function details obtained using __PRETTY_FUNCTION__
214-
/// \throws CppLinuxSerial::Exception if port is not opened
212+
/// \brief Checks whether the port is open or not,
213+
/// \param prettyFunc Pass in function details obtained using __PRETTY_FUNCTION__ for useful exception messages.
214+
/// \throws CppLinuxSerial::Exception if port is not opened.
215215
void PortIsOpened(const std::string& prettyFunc);
216216

217217
/// \brief Keeps track of the serial port's state.

0 commit comments

Comments
 (0)