Serial port and GPS

Serial2IP.copyFkt Method 

Sends data from the serial port

[Visual Basic]
Private Sub copyFkt( _
   ByVal b As Byte(), _
   ByVal len As Integer _
)
[C#]
private void copyFkt(
   byte[] b,
   int len
);

Parameters

b
array of bytes read from the serial port
len
number of valid bytes in b

Remarks

Sends the given data from the serial port to any connected client. This method is called as a callback for bytes retrieved from the serial port (RdByteCb).

See Also

Serial2IP Class | serial Namespace