vote up 2 vote down star
1

I want to read and write from serial using events/interrupts. Currently, I have it in a while loop and it continuously reads and writes through the serial. I want it to only read when something comes from the serial port. How do I implement this in C++?

This is my current code:

    while(true)
    {
        //read
        if(!ReadFile(hSerial, szBuff, n, &dwBytesRead, NULL)){
        //error occurred. Report to user.
        }

        //write
        if(!WriteFile(hSerial, szBuff, n, &dwBytesRead, NULL)){
        //error occurred. Report to user.
        }


        //print what you are reading
        printf("%s\n", szBuff);

    }
flag

28% accept rate

3 Answers

vote up 0 vote down check

Use a select statement, which will check the read and write buffers without blocking and return their status, so you only need to read when you know the port has data, or write when you know there's room in the output buffer.

The third example at http://www.developerweb.net/forum/showthread.php?t=2933 and the associated comments may be helpful.

Edit: The man page for select has a simpler and more complete example near the end. You can find it at http://linux.die.net/man/2/select if man 2 select doesn't work on your system.

Note: Mastering select() will allow you to work with both serial ports and sockets; it's at the heart of many network clients and servers.

link|flag
Can I see an example of the select statement being used or a link to an example? I couldn't find it on google. – Steve Nov 1 '08 at 0:54
I came across two, added above. I found the man page to be clearer and more concise. The developerweb link is more socket-oriented but has some Q&A that may help. – Adam Liss Nov 1 '08 at 1:07
select() only works with POSIX file descriptors (integers), NOT Windows HANDLEs. – Adam Rosenfield Nov 1 '08 at 3:28
vote up 0 vote down

For a Windows environment the more native approach would be to use asynchronous I/O. In this mode you still use calls to ReadFile and WriteFile, but instead of blocking you pass in a callback function that will be invoked when the operation completes.

It is fairly tricky to get all the details right though.

link|flag
The trouble with asynch Serial I/O is that the first byte you get is going to trigger your data-read event, after which you have to somehow figure out when you're done getting new data. I think I'm going to ask a question about that, since there doesn't seem to be a good answer yet – Coderer Nov 5 '08 at 16:04
We typically either (1) read until the buffer is empty, assuming there is a buffer, or (2) stay in the read loop until an appropriate timeout occurs. "Appropriate" is left as an exercise for the reader. :-) – Adam Liss Nov 8 '08 at 3:01
vote up 0 vote down

Here is a copy of an article that was published in the c/C++ users journal a few years ago. It goes into detail on the Win32 API.

link|flag

Your Answer

Get an OpenID
or

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