C++ API for the U-BLOX 6 GPS module.
More...
UPM support for the U-BLOX 6 GPS Module
{
cerr << "Failed to setup tty port parameters" << endl;
return 1;
}
char nmeaBuffer[bufferLength];
while (shouldRun)
{
{
int rv = nmea->
readData(nmeaBuffer, bufferLength);
if (rv > 0)
write(1, nmeaBuffer, rv);
if (rv < 0)
{
cerr << "Port read error." << endl;
break;
}
continue;
}
usleep(100000);
}
|
int | ttyFd () |
|
int | setTtyFd (int fd) |
|
U-BLOX 6 GPS module constructor
- Parameters
-
uart | defualt uart to use (0 or 1) |
U-BLOX 6 GPS module Destructor
Check to see if there is data available for reading
- Returns
- true if there is data available to be read
int readData |
( |
char * |
buffer, |
|
|
size_t |
len |
|
) |
| |
read any available data into a user-supplied buffer. Note, the call will block until data is available to be read. Use dataAvailable() to determine whether there is data available beforehand, to avoid blocking.
- Parameters
-
buffer | the buffer to hold the data read |
len | the length of the buffer |
- Returns
- the number of bytes read
int writeData |
( |
char * |
buffer, |
|
|
size_t |
len |
|
) |
| |
write the data in buffer to the device
- Parameters
-
buffer | the buffer to hold the data read |
len | the length of the buffer |
- Returns
- the number of bytes written
bool setupTty |
( |
speed_t |
baud = B9600 | ) |
|
setup the proper tty i/o modes and the baudrate. The default baud rate is 9600 (B9600).
- Parameters
-
baud | the desired baud rate. |
- Returns
- true if successful
The documentation for this class was generated from the following files:
- /var/lib/jenkins/workspace/upm-doc-stable/src/ublox6/ublox6.h
- /var/lib/jenkins/workspace/upm-doc-stable/src/ublox6/ublox6.cxx