Serial port and GPS

ReadByteDelegate Delegate

Callback for single byzes read from the serial port

[Visual Basic]
Public Delegate Sub ReadByteDelegate( _
   ByVal b As Byte(), _
   ByVal len As Integer _
)
[C#]
public delegate void ReadByteDelegate(
   byte[] b,
   int len
);

Parameters

b
The byte array read from the serial port
len
Number of valid bytes in b

Requirements

Namespace: serial

Assembly: gpsx (in gpsx.exe)

See Also

serial Namespace