How to do robust SerialPort programming with .NET / C# ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T19:08:43Z http://stackoverflow.com/feeds/question/441559 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c 0 How to do robust SerialPort programming with .NET / C# ? thomask 2009-01-14T01:19:03Z 2009-02-08T11:46:22Z <p>I'm writing a Windows Service for communication with a Serial Mag-stripe reader and a relay board (access control system).</p> <p>I run into problems where the code stops working (i get IOExceptions) after another program has "interrupted" the process by opening the same serial port as my service.</p> <p>Part of the code is as follows:</p> <pre><code>public partial class Service : ServiceBase { Thread threadDoorOpener; public Service() { threadDoorOpener = new Thread(DoorOpener); } public void DoorOpener() { while (true) { SerialPort serialPort = new SerialPort(); Thread.Sleep(1000); string[] ports = SerialPort.GetPortNames(); serialPort.PortName = "COM1"; serialPort.BaudRate = 9600; serialPort.DataBits = 8; serialPort.StopBits = StopBits.One; serialPort.Parity = Parity.None; if (serialPort.IsOpen) serialPort.Close(); serialPort.Open(); serialPort.DtrEnable = true; Thread.Sleep(1000); serialPort.Close(); } } public void DoStart() { threadDoorOpener.Start(); } public void DoStop() { threadDoorOpener.Abort(); } protected override void OnStart(string[] args) { DoStart(); } protected override void OnStop() { DoStop(); } } </code></pre> <p>My sample program successfully starts the work-thread, and the opening/closing and raising of DTR causes my Mag-stripe reader to power up (wait 1sec), shut down (wait 1 sec) and so on.</p> <p>If I launch HyperTerminal and connects to the same COM port, HyperTerminal tells me the port is currently in use. If i repeatedly press ENTER in HyperTerminal, to try to reopen the port it will succeed after a few retries.</p> <p>This has the effect of causing IOExceptions in my work-thread, which is expected. However, even if I close down HyperTerminal, i still get the same IOException in my work-thread. The only cure is actually to restart the computer.</p> <p>Other programs (which is not using .NET libraries for port-access) seem to work normally at this point.</p> <p>Any ideas as to what is causing this?</p> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/441588#441588 3 Answer by Daniel for How to do robust SerialPort programming with .NET / C# ? Daniel 2009-01-14T01:33:25Z 2009-01-14T02:10:23Z <p>You can't close someone elses connection to a port, the following code will never work:</p> <pre><code>if (serialPort.IsOpen) serialPort.Close(); </code></pre> <p>Because your object didn't open the port you can't close it.</p> <p>Also you should close and dispose the serial port even after exceptions occur</p> <pre><code>try { //do serial port stuff } finally { if(serialPort != null) { if(serialPort.IsOpen) { serialPort.Close(); } serialPort.Dispose(); } } </code></pre> <p>If you want the process to be interruptible then you should Check if the port is open and then back off for a period and then try again, something like.</p> <pre><code>while(serialPort.IsOpen) { Thread.Sleep(200); } </code></pre> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/441628#441628 2 Answer by FryGuy for How to do robust SerialPort programming with .NET / C# ? FryGuy 2009-01-14T01:50:17Z 2009-01-14T02:02:59Z <p>Have you tried leaving the port open in your application, and just turning DtrEnable on/off, and then closing the port when your application closes? i.e:</p> <pre><code>using (SerialPort serialPort = new SerialPort("COM1", 9600)) { serialPort.Open(); while (true) { Thread.Sleep(1000); serialPort.DtrEnable = true; Thread.Sleep(1000); serialPort.DtrEnable = false; } serialPort.Close(); } </code></pre> <p>I'm not familiar with DTR semantics, so I don't know if this would work.</p> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/441654#441654 0 Answer by thomask for How to do robust SerialPort programming with .NET / C# ? thomask 2009-01-14T02:00:02Z 2009-01-14T02:00:02Z <p>I've tried changing the work-thread like this, with the exact same result. Once HyperTerminal once succeeds in "capturing the port" (while my thread is sleeping), my service won't be able to open the port again.</p> <pre><code> public void DoorOpener() { while (true) { SerialPort serialPort = new SerialPort(); Thread.Sleep(1000); serialPort.PortName = "COM1"; serialPort.BaudRate = 9600; serialPort.DataBits = 8; serialPort.StopBits = StopBits.One; serialPort.Parity = Parity.None; try { serialPort.Open(); } catch { } if (serialPort.IsOpen) { serialPort.DtrEnable = true; Thread.Sleep(1000); serialPort.Close(); } serialPort.Dispose(); } } </code></pre> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/441682#441682 1 Answer by FryGuy for How to do robust SerialPort programming with .NET / C# ? FryGuy 2009-01-14T02:13:55Z 2009-01-14T02:13:55Z <p>This code seems to work properly. I've tested it on my local machine in a console application, using Procomm Plus to open/close the port, and the program keeps on ticking.</p> <pre><code> using (SerialPort port = new SerialPort("COM1", 9600)) { while (true) { Thread.Sleep(1000); try { Console.Write("Open..."); port.Open(); port.DtrEnable = true; Thread.Sleep(1000); port.Close(); Console.WriteLine("Close"); } catch { Console.WriteLine("Error opening serial port"); } finally { if (port.IsOpen) port.Close(); } } } </code></pre> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/442002#442002 0 Answer by nobugz for How to do robust SerialPort programming with .NET / C# ? nobugz 2009-01-14T05:22:32Z 2009-01-14T05:22:32Z <p>The SerialPort class uses an internal helper class that runs a background thread to be able to generate events like DataReceived. The code in this class has problems. Every revision of .NET (2.0 SP1, 3.5 and 3.5 SP1) has had a patch made to this code. The trouble is somewhat obvious from this phrase in the SerialPort.Close() documentation:</p> <p><em>The best practice for any application is to wait for some amount of time after calling the Close method before attempting to call the Open method, as the port may not be closed instantly.</em></p> <p>Hmya, what exactly is "some amount of time"? The generic diagnostic is that it takes time for the background thread to shut down. During this time, the thread is in a vulnerable state. The port is closed, allowing HyperTerminal to steal it, but the thread is still waiting for an overlapped I/O request from WaitCommState() to complete. I would guess that you get it in a state where it never completes. Preventing any further use of the port.</p> <p>The workaround is to follow to doc and "wait for some amount of time". Do note that this is almost never a problem in practice. You'd never switch between apps to control a serial port. For that matter, you'd never relinquish control of the port. You open it when your app starts, you close it when it ends.</p> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/443098#443098 0 Answer by Anders R for How to do robust SerialPort programming with .NET / C# ? Anders R 2009-01-14T14:21:23Z 2009-01-14T14:21:23Z <p>This answer got to long to be a comment...</p> <p>I believe that when your program is in a Thread.Sleep(1000) and you open your HyperTerminal connection, the HyperTerminal takes control over the serial port. When your program then wakes up and trying to open the serial port, an IOException is thrown.</p> <p>Redesign your method and try to handle the opening of the port in a different way.</p> <p>EDIT: About that you have to reboot your computer when your program fails...</p> <p>That probably because your program isn´t really closed, open your taskmanager and see if you can find your program service. Be sure to stop all your threads before exiting your application.</p> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/443277#443277 0 Answer by Coderer for How to do robust SerialPort programming with .NET / C# ? Coderer 2009-01-14T15:05:21Z 2009-01-14T15:05:21Z <p>Is there a good reason to keep your service from "owning" the port? Look at the built-in UPS service -- once you tell it there's an UPS attached to, say, COM1, you can kiss that port goodbye. I'd suggest you do the same unless there's a strong operational requirement to share the port.</p> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/443307#443307 0 Answer by thomask for How to do robust SerialPort programming with .NET / C# ? thomask 2009-01-14T15:14:11Z 2009-01-14T15:14:11Z <p>I think I have come to the conclusion that HyperTerminal does not play well. I've run the following test:</p> <ol> <li><p>Start my service in "console mode", it starts switching the device on/off (i can tell by it's LED).</p></li> <li><p>Start HyperTerminal and connect to the port. The device stays on (HyperTerminal raises DTR) My service writes to the event log, that it cannot open the port</p></li> <li><p>Stop HyperTerminal, I verify it is properly closed using task manager</p></li> <li><p>The device stays off (HyperTerminal has lowered DTR), my app keeps on writing to the event log, saying it cannot open the port.</p></li> <li><p>I start a third application (the one I need to coexist with), and tell it to connect to the port. I does so. No errors here.</p></li> <li><p>I stop the above mentioned application.</p></li> <li><p>VOILA, my service kicks in again, the port opens successfully, and the LED goes ON/OFF.</p></li> </ol> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/486694#486694 0 Answer by Peter Wone for How to do robust SerialPort programming with .NET / C# ? Peter Wone 2009-01-28T06:46:53Z 2009-01-28T06:46:53Z <h1>How to do reliable async comms </h1> <p>Don't use the blocking methods, the internal helper class has some subtle bugs.</p> <p>Use APM with a session state class, instances of which manage a buffer and buffer cursor shared across calls, and a callback implementation that wraps <code>EndRead</code> in a <code>try...catch</code>. In normal operation, the last thing the <code>try</code> block should do is set up the next overlapped I/O callback with a call to <code>BeginRead()</code>. </p> <p>When things go awry, <code>catch</code> should asynchronously invoke a delegate to a restart method. The callback implementation should exit immediately after the <code>catch</code> block so that the restart logic can destroy the current session (session state is almost certainly corrupt) and create a new session. The restart method must <em>not</em> be implemented on the session state class because this would prevent it from destroying and recreating the session.</p> <p>When the SerialPort object is closed (which will happen when the application exits) there may well be a pending I/O operation. When this is so, closing the SerialPort will trigger the callback, and under these conditions <code>EndRead</code> will throw an exception that is indistinguishable from a general comms shitfit. You should set a flag in your session state to inhibit the restart behaviour in the <code>catch</code> block. This will stop your restart method from interfering with natural shutdown.</p> <p>This architecture can be relied upon not to hold onto the SerialPort object unexpectedly.</p> <p>The restart method manages the closing and re-opening of the serial port object. After you call <code>Close()</code> on the <code>SerialPort</code> object, call <code>Thread.Sleep(5)</code> to give it a chance to let go. It is possible for something else to grab the port, so be ready to deal with this while re-opening it.</p> http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/525582#525582 0 Answer by Marc for How to do robust SerialPort programming with .NET / C# ? Marc 2009-02-08T11:46:22Z 2009-02-08T11:46:22Z <p>Hi could y Peter Wone could you perhaps provide an example of your last solution?</p> <p>Cheers,</p> <p>Marc</p>