up vote 2 down vote favorite
share [g+] share [fb]

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 available? I can call SetCommMask(myHandle, EV_RXCHAR) and then wait for an event to tell me that some data is available, but that won't tell me how much I can now read without blocking.

At the moment I am using CreateFile() and overlapping I/O to perform my reads so they are asynchronous, but they still wait until the buffer is filled to report the I/O as complete.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 4 down vote accepted

The ClearCommError() function is what you are looking for - it returns in the COMSTAT structure how many chars are in the input and output queues.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.