I have a Visual Studio 2008 C# .net 2.0 CF application that reads from a serial port using the System.IO.Ports.SerialPort class. Unfortunately, the SerialDataReceivedEventHandler is never called.

I open the port like this:

private SerialPort serial_port_;
protected void OpenSerialPort(string port, int baud)
{
    if (serial_port_ == null)
    {
        serial_port_ = new SerialPort(port,
                                  baud,
                                  Parity.None,
                                  8,
                                  StopBits.One);
    }
    else
    {
        serial_port_.BaudRate = baud;
        serial_port_.PortName = port;
    }

    if (!serial_port_.IsOpen)
    {
        serial_port_.Open();
        serial_port_.DataReceived += new SerialDataReceivedEventHandler(OnSerialDataReceived);
    }
}

private void OnSerialDataReceived(object sender, SerialDataReceivedEventArgs args)
{
    Debug.WriteLine("Serial data received");
}

If, however, I add a Debug.WriteLine(serial_port_.ReadLine()); right after the port is opened, I see in the output window a line of text from the port just as I would expect.

So, why does ReadLine work, but the DataReceived event does not?

Thanks, PaulH


Edit: Further testing shows this code works on some devices, but not others. What does the DataReceived event require to work properly?

Further Frustration: On this device, ReadExisting always returns null and BytesToRead always returns 0. ReadLine() and Read() both work perfectly, though.

link|improve this question

@zsalzbank - yes. fixed the typo – PaulH Jun 24 '11 at 22:35
what does OnSerialDataReceived look like? – zsalzbank Jun 24 '11 at 22:36
@zsalzbank - I've added it to the code above. – PaulH Jun 24 '11 at 22:38
try setting DtrEnable and RtsEnable to true – zsalzbank Jun 24 '11 at 22:43
Does the device attached to the serial port send lines periodically? – dbasnett Jun 25 '11 at 15:26
show 9 more comments
feedback

1 Answer

Don't put blocking reads in the data received handler. If the handler fires and there is NOT an entire line to be read it will block. In the code you posted there is not a read of any kind.

From MSDN: "PinChanged , DataReceived, and ErrorReceived events may be called out of order, and there may be a slight delay between when the underlying stream reports the error and when the event handler is executed. Only one event handler can execute at a time."

link|improve this answer
I don't see any blocking read in the handler... – Ben Voigt Jun 25 '11 at 14:26
There isn't any read of any kind in the handler in the code the OP posted. I assumed that he moved the readline to the handler. – dbasnett Jun 25 '11 at 15:23
I did have it there at one time, so I'm glad you posted that. But, I have it commented out (and will remove it). At the moment, I'm just trying to get a DataReceived event. – PaulH Jun 27 '11 at 15:33
feedback

Your Answer

 
or
required, but never shown

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