Subversion Repositories Projects

Rev

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

Rev 406 Rev 411
1
#ifndef _SETTINGS_H
1
#ifndef _SETTINGS_H
2
#define _SETTINGS_H
2
#define _SETTINGS_H
3
 
-
 
4
#include <avr/boot.h>
-
 
5
 
-
 
6
#include <avr/io.h>
-
 
7
#include <avr/interrupt.h>
-
 
8
 
3
 
9
typedef enum
4
typedef enum
10
{
5
{
11
        PID_KML_LOGGING,
6
        PID_KML_LOGGING,
12
        PID_GPX_LOGGING
7
        PID_GPX_LOGGING
13
} ParamId_t;
8
} ParamId_t;
14
 
9
 
15
void Settings_Init(void);
10
void Settings_Init(void);
16
void Settings_SetDefaultValues(void);
11
void Settings_SetDefaultValues(void);
17
uint8_t Settings_GetParamValue(ParamId_t Pid, uint16_t* pValue);
12
uint8_t Settings_GetParamValue(ParamId_t Pid, uint16_t* pValue);
18
 
13
 
19
#endif // _SETTINGS_H
14
#endif // _SETTINGS_H
20
 
15
 
21
 
16
 
22
 
17