mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-26 11:50:52 +00:00
gps: Fix GPS example application
This commit is contained in:
parent
89ec8cbf96
commit
d03b87b1bc
2 changed files with 9 additions and 3 deletions
|
|
@ -28,7 +28,7 @@ STACKSIZE = $(CONFIG_EXAMPLES_GPS_STACKSIZE)
|
|||
MODULE = $(CONFIG_EXAMPLES_GPS)
|
||||
|
||||
# GPS Example
|
||||
|
||||
CFLAGS += -I$(APPDIR)$(DELIM)gpsutils$(DELIM)minmea
|
||||
MAINSRC = gps_main.c
|
||||
|
||||
include $(APPDIR)/Application.mk
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* apps/examples/hello/gps_main.c
|
||||
* apps/examples/gps/gps_main.c
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
|
|
@ -29,7 +29,13 @@
|
|||
#include <wchar.h>
|
||||
#include <syslog.h>
|
||||
|
||||
#include "gpsutils/minmea.h"
|
||||
#include "minmea/minmea.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
#define MINMEA_MAX_LENGTH 256
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue