mirror of
https://github.com/eclipse/upm.git
synced 2025-07-06 03:41:13 +03:00
ublox6: Initial implementation
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>
This commit is contained in:

committed by
John Van Drasek

parent
0c63500b36
commit
f53fab80fd
13
src/ublox6/jsupm_ublox6.i
Normal file
13
src/ublox6/jsupm_ublox6.i
Normal file
@ -0,0 +1,13 @@
|
||||
%module jsupm_ublox6
|
||||
%include "../upm.i"
|
||||
%include "stdint.i"
|
||||
%include "carrays.i"
|
||||
|
||||
%{
|
||||
#include "ublox6.h"
|
||||
speed_t int_B9600 = B9600;
|
||||
%}
|
||||
|
||||
%include "ublox6.h"
|
||||
speed_t int_B9600 = B9600;
|
||||
%array_class(char, charArray);
|
Reference in New Issue
Block a user