Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm handling a caller id serial device and write the following program:

serialPort = new SerialPort("COM7", 19200, Parity.None, 8, StopBits.One);
serialPort.DataReceived += serialPort_DataReceived;
serialPort.RtsEnable = true;
serialPort.Encoding = Encoding.ASCII;
serialPort.Open();

void serialPort_DataReceived(object s, SerialDataReceivedEventArgs e)
{
    byte[] data = new byte[serialPort.BytesToRead];
    serialPort.Read(data, 0, data.Length);
    Console.WriteLine(Encoding.ASCII.GetString(data));
}

At first that I receive a call, the event fires perfectly and the result is: "A0101181456926E"

The problem is the subsequent events... next time that I make a call, the event serialPort_DataReceived fires a lot of times each one with 1 char.

Is there any property to set or method to invoke to solve this behaviour?

ps. If I comment the line serialPort.RtsEnable = true;, I don't receive any subsequent event.

share|improve this question
1  
AFAIK this is normal behaviour... something similar happens for example with TCP connection - you will have to deal with that, by designing the protocol accordingly... – Yahia Nov 25 '11 at 20:33
What values is your ReceivedBytesThreshold property? – Henk Holterman Nov 25 '11 at 20:38
I didn't set this prop @henk – Alexandre Nov 25 '11 at 22:41

2 Answers

up vote 2 down vote accepted

As Henk mentioned, you can set the amount of bytes to be received before the DataReceived event is triggered with the property ReceivedBytesThreshold.

But in any case you have to deal with any number of bytes to be received at a time. You have to design your protocol in a way that you are able to recognize when a message is fully received.

share|improve this answer

It is normal behavior. You can change the ReceivedBytesThreshold property, but doing so means that you have to receive at least that amount, and if there are any errors in transmission, getting in sync again can be difficult.

My advice is to leave ReceivedBytesThreshold=1, and queue the received data up until you have what you need.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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