From 9fb024b1f236ff63c70c9942a2775cec2fb0ddec Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Sun, 17 Feb 2013 13:07:40 +0100 Subject: Removed old GPS app --- apps/gps/nmealib/time.c | 63 ------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 apps/gps/nmealib/time.c (limited to 'apps/gps/nmealib/time.c') diff --git a/apps/gps/nmealib/time.c b/apps/gps/nmealib/time.c deleted file mode 100644 index a24319630..000000000 --- a/apps/gps/nmealib/time.c +++ /dev/null @@ -1,63 +0,0 @@ -/* - * - * NMEA library - * URL: http://nmea.sourceforge.net - * Author: Tim (xtimor@gmail.com) - * Licence: http://www.gnu.org/licenses/lgpl.html - * $Id: time.c 4 2007-08-27 13:11:03Z xtimor $ - * - */ - -/*! \file time.h */ - -#include "nmea/time.h" - -#ifdef NMEA_WIN -# pragma warning(disable: 4201) -# pragma warning(disable: 4214) -# pragma warning(disable: 4115) -# include -# pragma warning(default: 4201) -# pragma warning(default: 4214) -# pragma warning(default: 4115) -#else -# include -#endif - -#ifdef NMEA_WIN - -void nmea_time_now(nmeaTIME *stm) -{ - SYSTEMTIME st; - - GetSystemTime(&st); - - stm->year = st.wYear - 1900; - stm->mon = st.wMonth - 1; - stm->day = st.wDay; - stm->hour = st.wHour; - stm->min = st.wMinute; - stm->sec = st.wSecond; - stm->hsec = st.wMilliseconds / 10; -} - -#else /* NMEA_WIN */ - -void nmea_time_now(nmeaTIME *stm) -{ - time_t lt; - struct tm *tt; - - time(<); - tt = gmtime(<); - - stm->year = tt->tm_year; - stm->mon = tt->tm_mon; - stm->day = tt->tm_mday; - stm->hour = tt->tm_hour; - stm->min = tt->tm_min; - stm->sec = tt->tm_sec; - stm->hsec = 0; -} - -#endif -- cgit v1.2.3