vote up 0 vote down star

Hi

I am developing some monitoring tool for some kind of protocol based on serial communication.

Serial BaudRate=187,5kb I use System.IO.Ports.SerialPort class.

This protocol has 4 kinds of frames. They have 1Byte,3Bytes,6Bytes, 10-255Bytes. I can work with them but I receive them too late to respond.

For the beginning I receive first packed after ex. 96ms (too late), and it contains about 1000B. This means 20-50 frames (too much, too late). Later its work more stable, 3-10Bytes but it is still too late because it contains 1-2 frames. Of Course 1 frame is OK, but 2 is too late.

Can you point me how can I deal with it more reliable? I know it is possible.

Revision1:

I tried straight way:

private void serialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
       if (!serialPort1.IsOpen) return;
       this.BeginInvoke(new EventHandler(this.DataReceived));
}

And Backgroud worker: And ... new Tread(Read) and... always the same. Too late, too slow. Do I have to go back to WinApi and import some kernel32.dll functions?

Revision 2: this is the part of code use in the Treading way:

int c = serialPort1.BytesToRead;
byte[] b = new byte[c];
serialPort1.Read(b, 0, c);

I guess it is some problem with stream use inside SerialPort class. Or some synchronization problem.

Revision 3: I do not use both at once!! I just tried different ways.

Regards MarekK

flag
Without some kind of code and some sort of information very few people will be able to help you. How do you read from the port? – Henk Holterman Aug 21 at 12:47
Generaly the code works and is quite big. It looks that some part of code is waiting for something. I do not know witch one. – MarekK Aug 21 at 12:57
**I tried to use BaseStream which is SerialPort sub class. I got the same result. BUT !!!!!! I started to look for PCIe card for my laptop and I've found that converters based on USB even in PCI expresscard does not provide good communication level because of USB stack. Where as I think data stream is waiting for USB procedures. I can imagine that this makes the most difficulties. I'm going to buy PCIe 232 card.** – MarekK Aug 27 at 14:01

1 Answer

vote up 0 vote down

Maybe this gives you a clue, why it is too slow: Performance Of System.IO.Ports Versus Unmanaged Serial Port Code

link|flag
OK. I just building up my SerialPort class based on that information. There isn't about how to read data from serial stream, but I found it. When I finish I'll share that knowledge. THX. – MarekK Aug 22 at 17:21

Your Answer

Get an OpenID
or

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