|
GPS ToolKit.NET
GPS ToolKit Class
Root class for all communications with a GPS device.
Syntax
[Visual Basic]
Dim instance As GPSToolKit
[C#]
GPSToolKit instance
[C++]
GPSToolKit* instance
Remarks
GPSToolKit is the root class for all the functionality provided with GPS ToolKit. Each GPSToolKit
instance can communicate with one GPS. If you wish to communicate with multiple GPS devices simultaneously, you should
create one instance of GPSToolKit per device.
Instance Hierarchy
SciCom
   SciCom.GPSToolKit
     SciCom.GPSToolKit.GPSToolKit
Thread Safety
GPSToolKit is thread safe for use by multiple reader threads, or a single writing thread.
It is not thread safe for multi-thread use, when any of the threads perform write (update) operations.
Properties
Methods
Events
| Event
| Description |
FileComplete event |
Triggered when file read is complete or cancelled. |
GPSConnected event |
Triggered when a GPS connection has been made. |
GPSDisconnected event |
Triggered when communication with the GPS has stopped or been interrupted |
NavigationUpdate event |
Triggered when the new navigational information has been received from the GPS (only triggered when using the NMEA 0183 protocol). |
PositionUpdate event |
Triggered when the new position data has been received from the GPS. |
RawDataReceived event |
Triggered when a complete NMEA 0183 sentence has been received from the GPS (only triggered when using the NMEA 0183 protocol). |
SatelliteUpdate event |
Triggered when new satellite information has been received from the GPS (only triggered when using the NMEA 0183 protocol). |
See Also
Adding GPS ToolKit to your project, GPS ToolKit Basics
|