Subversion Repositories NaviCtrl

Rev

Rev 351 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 351 Rev 380
Line 2... Line 2...
2
#define _LOGGING_H
2
#define _LOGGING_H
Line 3... Line 3...
3
 
3
 
4
void Logging_Init(void);
4
void Logging_Init(void);
5
void Logging_Update(void); // logs the current gps position to a kml file
5
void Logging_Update(void); // logs the current gps position to a kml file
-
 
6
extern u8 SD_LoggingError;
-
 
7
extern u32 Logged_GPX_Counter, Logged_KML_Counter;
-
 
8
 
-
 
9
typedef struct
-
 
10
{
-
 
11
        u32 KML_Interval;  // the kml-log interval (0 = off)
-
 
12
        u32 GPX_Interval;  // the gpx-log interval (0 = off)
-
 
13
} LogCfg_t;
-
 
14
 
-
 
15
extern LogCfg_t LogCfg;
Line 6... Line 16...
6
extern u8 SD_LoggingError;
16