CppLinuxSerial icon indicating copy to clipboard operation
CppLinuxSerial copied to clipboard

Serial port library written in C++.

Results 16 CppLinuxSerial issues
Sort by recently updated
recently updated
newest added

I try to use this library to communicate with arduino. Now, I try the example code to test. However, I always receive the wrong message. ![Screenshot from 2022-07-11 18-51-20](https://user-images.githubusercontent.com/48173999/178248768-1779f533-ded0-4553-91b2-0b1c5f6c8b9f.png) Thank...

I'm running Windows 10 (which might be a problem, since this is literally called Cpp**Linux**Serial) and in VS2022 I'm getting a few errors with the SerialPort.hpp file. ![img](https://user-images.githubusercontent.com/96541955/169079275-b8dee511-c816-4485-a281-7a778b9b2cb6.png) I don't...

Hi, First of all, thank you for providing this library, it has really helped during my current project. At this point if my application uses Ser.Write("my string"), it will stay...

Feel free to close this if you don't think it is an issue. I was using your library to communicate with a USB serial port on Ubuntu 20.04. The device...

Hi, I'm trying to read data from Arduino analog port. For some reason i get line breaks, what could be causing this ![Screenshot from 2022-04-29 22-07-40](https://user-images.githubusercontent.com/74534587/166024347-eb91dd2f-170c-48a1-9efa-10662ddcba2f.png) ![Screenshot from 2022-04-29 22-14-12](https://user-images.githubusercontent.com/74534587/166028388-9f9d9257-3077-4b49-a304-299822f223a7.png)

A sensor I am using requires flow control on, but the rest of the system does not. Therefore I implemented an overloaded constructor and enum class to set it as...

my code is #include using namespace mn::CppLinuxSerial; int main() { // Create serial port object and open serial port SerialPort serialPort("/dev/ttyACM1", 19200); // Use SerialPort serialPort("/dev/ttyACM0", 13000); instead if you...

Hi @gbmhunter Thanks for your work! How can I set the parity EVEN, stop bit 1, Databits 7

Hi, my english is not so good sorry. I make this Command during installation: "cmake .." Then I become this errormessage: ------------------------------------------ BUILD_TESTS=TRUE, unit tests will be built. CMake Deprecation...

Hi, First, thanks for this great library! I need to send HEX commands over serial, and AFAIK it is possible to send only String commands over serial. Would it be...