|
GPS ToolKit.NET
RawDataReceived Event
Fired when a complete NMEA 0183 sentence has been received from the GPS.
Syntax
[Visual Basic]
Private Sub myGPSToolKit_RawDataReceived(ByVal sender As Object, ByVal e As SciCom.GPSToolKit.RawDataReceivedEventArgs) Handles myGPSToolKit.RawDataReceived
[C#]
private void RawDataReceived(object sender, SciCom.GPSToolKit.RawDataReceivedEventArgs e)
[C++]
System::Void RawDataReceived(System::Object * sender, SciCom::GPSToolKit::RawDataReceivedEventArgs * e)
Parameters
sender
A reference to the GPSToolKit object.
e
The arguments associated with the event.
Arguments
RawDataBytes
A byte array containing the last complete NMEA 0183 sentence received.
RawDataString
A string containing the last complete NMEA 0183 sentence received.
Remarks
- This event provides access to the raw data stream from the GPS. It is useful for retreiving GPS information that GPS ToolKit does not natively support.
- This event is only fired when the current communication protocol is NMEA 0183.
|