##// END OF EJS Templates
aaguilar -
r197:198
parent child
Show More
@@ -9,6 +9,7
9 9 #define UTILS_TE_STRUCTS_H_
10 10
11 11 #include <stdint.h>
12 #include "fixpoint.h"
12 13
13 14 /*mascaras disponibles para GPS 15xL*/
14 15 #define GPNON 0x0000 /**< Unknown packet type. */
@@ -44,12 +45,14
44 45 */
45 46 typedef struct gnss_precise_time_{
46 47 int year; /*!< year of gnss data */
48 int day; /*!< day of month */
49 int month; /*!< month */
47 50 int doy; /*!< day of year of gnss data */
48 51 int hour; /*!< hour of gnss data */
49 52 int minu; /*!< minute of gnss data */
50 53 int sec; /*!< seconds of gnss data */
51 54 int usec; /*!< microseconds of gnss data */
52 gnss_precise_time_(): year(0), doy(0), hour(0), minu(0), sec(0), usec(0){}
55 gnss_precise_time_(): year(0), day(0), month(0), doy(0), hour(0), minu(0), sec(0), usec(0){}
53 56 }gnss_precise_time;
54 57
55 58 ///////////////////////////////////////////////////////////////////////////////
General Comments 0
You need to be logged in to leave comments. Login now