- Welcome
- Getting Started With the NVIDIA DriveWorks SDK
- Modules
- Samples
- Tools
- Tutorials
- SDK Porting Guide
- DriveWorks API
- More
NVIDIA DriveWorks API: GPS
Description: This file defines methods to access GPS sensor.
Definition in file GPS.h.
Go to the source code of this file.
Data Structures | |
struct | dwGPSFrame |
A GPS packet containing localization information. More... | |
Enumerations | |
enum | dwGPSFlags { DW_GPS_LAT = 1 << 0 , DW_GPS_LON = 1 << 1 , DW_GPS_ALT = 1 << 2 , DW_GPS_COURSE = 1 << 3 , DW_GPS_SPEED = 1 << 4 , DW_GPS_CLIMB = 1 << 5 , DW_GPS_HDOP = 1 << 6 , DW_GPS_VDOP = 1 << 7 , DW_GPS_HACC = 1 << 8 , DW_GPS_VACC = 1 << 9 } |
Each flag shows if that value is valid in this GPS frame. More... | |
Functions | |
DW_API_PUBLIC dwStatus | dwSensorGPS_popFrame (dwGPSFrame *const frame, dwSensorHandle_t const sensor) |
Returns any GPS frame previously processed through RAW data stream. More... | |
DW_API_PUBLIC dwStatus | dwSensorGPS_processRawData (uint8_t const *const data, size_t const size, dwSensorHandle_t const sensor) |
Decodes RAW data previously read. More... | |
DW_API_PUBLIC dwStatus | dwSensorGPS_readFrame (dwGPSFrame *const frame, dwTime_t const timeoutUs, dwSensorHandle_t const sensor) |
Reads the next GPS packet with a given timeout. More... | |