You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
413 B
22 lines
413 B
13 years ago
|
/*
|
||
|
*
|
||
|
* NMEA library
|
||
|
* URL: http://nmea.sourceforge.net
|
||
|
* Author: Tim (xtimor@gmail.com)
|
||
|
* Licence: http://www.gnu.org/licenses/lgpl.html
|
||
|
* $Id: info.c 17 2008-03-11 11:56:11Z xtimor $
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "nmea/info.h"
|
||
|
|
||
|
void nmea_zero_INFO(nmeaINFO *info)
|
||
|
{
|
||
|
memset(info, 0, sizeof(nmeaINFO));
|
||
|
nmea_time_now(&info->utc);
|
||
|
info->sig = NMEA_SIG_BAD;
|
||
|
info->fix = NMEA_FIX_BAD;
|
||
|
}
|