3
votes
3answers
535 views
How do I perform a nonblocking read using asio?
I am attempting to use boost::asio to read and write from a device on a serial port. Both boost::asio:read() and boost::asio::serial_port::read_some() block when there is nothing to read. Instead I …
2
votes
1answer
102 views
How do I read only available data off a windows COM port?
I have a file handle to a serial (COM) port. I need to read whatever data is available immediately and not wait for additional data to be sent.
How can I determine how much data is availab …
