Hello,
I use a wclClient configured in wclClientTransport.ctSerial to deal with serial port.
I listen to the OnData event and then read the available data.
void wclST_OnData(object sender, wclDataEventArgs e)
{
byte[] buffLu = e.Data;
}
I have another process that takes a long time to achieve, and I don't receive in"real time" the data from my serial port.
Is there any way to set priority to the serial object , from normal to higher ?
Or is there a way to read the available data on the buffer, instead of wait for them ?
Thanks for yours answers,
Nicolas