Subversion Repositories NaviCtrl

Compare Revisions

Ignore whitespace Rev 389 → Rev 390

/tags/V0.28h/logging.h
0,0 → 1,18
#ifndef _LOGGING_H
#define _LOGGING_H
 
void Logging_Init(void);
void Logging_Update(void); // logs the current gps position to a kml file
extern u8 SD_LoggingError;
extern u32 Logged_GPX_Counter, Logged_KML_Counter;
 
typedef struct
{
u32 KML_Interval; // the kml-log interval (0 = off)
u32 GPX_Interval; // the gpx-log interval (0 = off)
} LogCfg_t;
 
extern LogCfg_t LogCfg;
 
 
#endif //_LOGGING_H