Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 405 → Rev 406

/FollowMe/temp/FollowMe/settings.h
0,0 → 1,21
#ifndef _SETTINGS_H
#define _SETTINGS_H
 
#include <avr/boot.h>
 
#include <avr/io.h>
#include <avr/interrupt.h>
 
typedef enum
{
PID_KML_LOGGING,
PID_GPX_LOGGING
} ParamId_t;
 
void Settings_Init(void);
void Settings_SetDefaultValues(void);
uint8_t Settings_GetParamValue(ParamId_t Pid, uint16_t* pValue);
 
#endif // _SETTINGS_H