mirror of
https://github.com/eclipse/upm.git
synced 2025-06-11 07:40:23 +03:00

jrvandr: removed unnecessary mraa_init() and mraa_deinit() The module implements support for the ublox-6 GPS sensor. It was tested on a Grove GPS device. This module simply allows data to be retrieved from the device in the form of NMEA sentences, and provides a method to write commands to the device for configuration purposes. It does not attempt to parse NMEA data -- that is a project in itself. There are libraries available on the Internet, such as tinyGPS++ that can handle that for you. Signed-off-by: Jon Trulson <jtrulson@ics.com> Signed-off-by: Zion Orent <zorent@ics.com> Signed-off-by: John Van Drasek <john.r.van.drasek@intel.com>
6 lines
161 B
CMake
6 lines
161 B
CMake
set (libname "ublox6")
|
|
set (libdescription "upm u-blox 6 GPS UART support module")
|
|
set (module_src ${libname}.cxx)
|
|
set (module_h ${libname}.h)
|
|
upm_module_init()
|