diff --git a/pkg/minmea/Makefile b/pkg/minmea/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..96a0dda7d0b1797fd8ea389f028eb8dd0be882d6 --- /dev/null +++ b/pkg/minmea/Makefile @@ -0,0 +1,12 @@ +PKG_NAME=minmea +PKG_URL=https://github.com/kaspar030/minmea +PKG_VERSION=f3253039a32af98924b0606316a83c8129dff4d4 +PKG_LICENSE=WTFPL + +.PHONY: all + +all: git-download + @cp Makefile.${PKG_NAME} $(PKG_BUILDDIR)/Makefile + "$(MAKE)" -C $(PKG_BUILDDIR) + +include $(RIOTBASE)/pkg/pkg.mk diff --git a/pkg/minmea/Makefile.include b/pkg/minmea/Makefile.include new file mode 100644 index 0000000000000000000000000000000000000000..5b2fdf0c318ee01d1ae21cf7a8eabe58a8daf77b --- /dev/null +++ b/pkg/minmea/Makefile.include @@ -0,0 +1 @@ +INCLUDES += -I$(PKGDIRBASE)/minmea diff --git a/pkg/minmea/Makefile.minmea b/pkg/minmea/Makefile.minmea new file mode 100644 index 0000000000000000000000000000000000000000..0c9989b558092fd7cfb519a6d95b6f3c5d3e31a7 --- /dev/null +++ b/pkg/minmea/Makefile.minmea @@ -0,0 +1,10 @@ +MODULE=minmea + +CFLAGS += -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_DARWIN_C_SOURCE + +# see minmea README.md +CFLAGS += -Dtimegm=mktime + +SRC := minmea.c + +include $(RIOTBASE)/Makefile.base diff --git a/pkg/minmea/README.md b/pkg/minmea/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f4285d7a285aa77e6c0c67376e1025dae96741b1 --- /dev/null +++ b/pkg/minmea/README.md @@ -0,0 +1,11 @@ +# Introduction + +"Minmea is a minimalistic GPS parser library written in pure C intended for +resource-constrained platforms, especially microcontrollers and other embedded +systems." + +See https://github.com/cloudyourcar/minmea for more information. + +# License + +Licensed under WTFPL. diff --git a/tests/pkg_minmea/Makefile b/tests/pkg_minmea/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..59334a3d2e88cd8cf80393c8246d1982f8968f18 --- /dev/null +++ b/tests/pkg_minmea/Makefile @@ -0,0 +1,9 @@ +APPLICATION = pkg_minmea +include ../Makefile.tests_common + +USEPKG += minmea + +# The MSP-430 toolchain lacks mktime and NAN +BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 + +include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_minmea/main.c b/tests/pkg_minmea/main.c new file mode 100644 index 0000000000000000000000000000000000000000..e85cee042663a5847f0fb0d128dd986b1f60a970 --- /dev/null +++ b/tests/pkg_minmea/main.c @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2017 Kaspar Schleiser <kaspar@schleiser.de> + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + +/** + * @ingroup test + * @{ + * + * @file + * @brief minmea GPS NMEA parser library package test application + * + * @author Kaspar Schleiser <kaspar@schleiser.de> + * + * @} + */ + +#include <stdio.h> + +#include "minmea.h" + +static const char *_gll = "$GNGLL,5229.0178,N,01326.7605,E,114350.000,A,A*45"; + +int main(void) +{ + struct minmea_sentence_gll frame; + + int res = minmea_parse_gll(&frame, _gll); + if (!res) { + puts("error parsing GPS sentence"); + } + else { + printf("parsed coordinates: lat=%f lon=%f\n", + minmea_tocoord(&frame.latitude), + minmea_tocoord(&frame.longitude)); + } + + return 0; +}