From 45738d0b9372bc0865724e1b63e622d1d962da40 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Thu, 20 Aug 2015 12:44:36 -0700 Subject: [PATCH] ublox6: interface file fix for python Grove GPS example Signed-off-by: Zion Orent Signed-off-by: Jon Trulson Signed-off-by: sisinty sasmita patra --- src/ublox6/pyupm_ublox6.i | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ublox6/pyupm_ublox6.i b/src/ublox6/pyupm_ublox6.i index ab321805..ae96d9af 100644 --- a/src/ublox6/pyupm_ublox6.i +++ b/src/ublox6/pyupm_ublox6.i @@ -1,9 +1,15 @@ %module pyupm_ublox6 %include "../upm.i" +%include "stdint.i" +%include "carrays.i" %feature("autodoc", "3"); -%include "ublox6.h" %{ #include "ublox6.h" + speed_t int_B9600 = B9600; %} + +%include "ublox6.h" +speed_t int_B9600 = B9600; +%array_class(char, charArray);