We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This lib missing a way to access socket properties.
struct sSerialPort { char interfaceName[100]; int fd; int baudRate; uint8_t dataBits; char parity; uint8_t stopBits; uint64_t lastSentTime; struct timeval timeout; SerialPortError lastError; };
The text was updated successfully, but these errors were encountered:
It's an internal structure. The user shouldn't manipulate it.
Sorry, something went wrong.
User could need access to fd if he want to configure flag with ioctl (e.g. like the Modbus lib.)
No branches or pull requests
This lib missing a way to access socket properties.
struct sSerialPort {
char interfaceName[100];
int fd;
int baudRate;
uint8_t dataBits;
char parity;
uint8_t stopBits;
uint64_t lastSentTime;
struct timeval timeout;
SerialPortError lastError;
};
The text was updated successfully, but these errors were encountered: