Murat Calim
Murat Calim

Reputation: 580

multi virtual serial ports does not refresh the received data

I have a serial port listening console application that i developed in c# and everything was working fine.

But in recent days, the received data is not changed however actually the received data is changed (i can check from the monitor or when restart my application). The port always keeps write the same data as received string. But it refreshes the data when I restart my application. I mean serial port doesn not refresh/update received data on change.

My application was working fine before we set FIFO property to TRUE. There was no problem when the port settings were FALSE.

This is a weighbridge application and there are 20 weighbridges at the field. Each of them sends data to my server via virtual ports. (COM1....COM20)

Any idea? Thanks for any help.

Upvotes: 0

Views: 329

Answers (1)

Shaikh Farooque
Shaikh Farooque

Reputation: 2640

FIFO is the interrupt used only by the serial port. You should not used it. Kindly refer to the following link.

http://www.tldp.org/HOWTO/Serial-HOWTO-4.html

Cant you do without the FIFO setting?

Upvotes: 0

Related Questions