vote up 2 vote down star
1

The software im currently working on sometimes hangs when I close the serial port. Its intermittent and works fine 90% of the time but I clearly have an issue. When I ctl+Alt+Break it shows that its waiting on serial.Close().

I have lots a data coming in and out on the serial port which is being invoked to a number of forms so is this a threading issue?

flag

1 Answer

vote up 2 vote down check

Yes, this may be the case. See this post. See also here, which suggests that using BeginInvoke rather than Invoke may solve your problem.

Also, if you're using a USB serial adapator, you could have a driver problem. Some of those drivers are poorly written and can cause a whole host of problems.

link|flag
BeginInvoke on all of my module GUI code was going to be too scary so i used the other tip from the link you posted. I spawn another thread which closes the port! – Tim Jun 4 at 14:15

Your Answer

Get an OpenID
or

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