Serial port and GPS

MapForm.udpcb Method 

Callback function for data coming on the UDP port

[Visual Basic]
Private Sub udpcb( _
   ByVal b As Byte() _
)
[C#]
private void udpcb(
   byte[] b
);

Parameters

b
The data read from the UDP port. One rcord consistng of the latitude and longitude, each an integer number resulting from the real values multiplied by 10000000, separated with white spaces. Additional informations contained in the retrieved data is slightly ignored. The byte array is assumed to be encoded in ASCII.

Remarks

According to UdpLstnDelegate

See Also

MapForm Class | serial Namespace