ReceivedBytesThreshold
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Can I change the ReceivedBytesThreshold in a serial port ? I have some packets that will be large, and some that will be small, and I want to be able to allocate more time when I'm doing the large ones
-
Can I change the ReceivedBytesThreshold in a serial port ? I have some packets that will be large, and some that will be small, and I want to be able to allocate more time when I'm doing the large ones
add some id in packet header and define the id according to the size of the packet like '0' for small packet '1' for large packet.First parse the header and then according to the id allocate time.