vote up 2 vote down star
1

I have a simple application, which should send a single byte to a serial port once a minute. But sometimes, from some strange reason, it freezes somewhere in the WriteFile() function. Both sw and hw flow controls are turned off. I've googled some stuff about pending read operations performed from another threads, but I believe this is not a problem, because my app has single thread. Also, handle from CreateFile looks valid, so the port should not be used by any other applications. Have anybody suffered this?

flag
Also helpful is information on language, platform, etc. – Adam Oct 30 '08 at 20:19

4 Answers

vote up 2 vote down

If you google for the words writefile hangs, you'll find a number of discussions on this problem. Some leads are buffer overruns, sizing your buffer correctly, a defective COM port, clearing the status on error... Seems like there are plenty of things to try.

Another thing I would suggest is to use a communications library instead of calling the API directly, something like Async Professional (http://sourceforge.net/projects/tpapro/). Even if they add some overhead to your application, they might simplify your work and avoid a number of potential pitfalls...

link|flag
vote up 0 vote down

Well, I'm using this library: http://lhdelphi.ic.cz/uploader/storage/ComDrv32.pas in Delphi 7, on Windows XP, but the component inside is just a wrapper around some Win API calls, CreateFile, WriteFile, etc.

link|flag
ComDrv32.pas doesn't appear to have a whole lot of thought put into error handling. It may work fine as long as things are going great, but there is no error checking on API calls. I wouldn't trust this library to be very robust. – Jozz Oct 30 '08 at 23:36
vote up 0 vote down

Have you tried setting CommPortDriver.CheckLineStatus to true ("to prevent hangs when not device connected or device is OFF")? The source for the comdrv32.pas library contains that suggestion.

link|flag
vote up 0 vote down

You can also try ComPort, which was neglected for some time but is now actively developed again.

link|flag

Your Answer

Get an OpenID
or

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