Subversion Repositories NaviCtrl

Rev

Rev 88 | Rev 351 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 88 Rev 247
1
#ifndef _SETTINGS_H
1
#ifndef _SETTINGS_H
2
#define _SETTINGS_H
2
#define _SETTINGS_H
3
 
3
 
4
#include "91x_lib.h"
4
#include "91x_lib.h"
5
 
5
 
6
typedef enum
6
typedef enum
7
{
7
{
8
        PID_KML_LOGGING,
8
        PID_KML_LOGGING,
9
        PID_GPX_LOGGING
9
        PID_GPX_LOGGING,
-
 
10
        PID_GPS_AUTOCONFIG
10
} ParamId_t;
11
} ParamId_t;
11
 
12
 
12
void Settings_Init(void);
13
void Settings_Init(void);
13
void Settings_SetDefaultValues(void);
14
void Settings_SetDefaultValues(void);
14
u8 Settings_GetParamValue(ParamId_t Pid, u16* pValue);
15
u8 Settings_GetParamValue(ParamId_t Pid, u16* pValue);
15
 
16
 
16
#endif // _SETTINGS_H
17
#endif // _SETTINGS_H
17
 
18
 
18
 
19
 
19
 
20