Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
426 killagreg 1
#ifndef _SETTINGS_H
2
#define _SETTINGS_H
3
 
4
typedef enum
5
{
6
        PID_KML_LOGGING,
7
        PID_GPX_LOGGING
8
} ParamId_t;
9
 
10
void Settings_Init(void);
11
void Settings_SetDefaultValues(void);
12
uint8_t Settings_GetParamValue(ParamId_t Pid, uint16_t* pValue);
13
 
14
#endif // _SETTINGS_H
15
 
16