Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
406 joko 1
#ifndef _MAIN_H
2
#define _MAIN_H
3
 
4
#include <avr/io.h>
5
#define SYSCLK F_CPU
6
 
7
 
8
#define ERROR_GPS_RX_TIMEOUT    0x0001
9
#define ERROR_LOW_BAT                   0x0002
10
 
11
extern uint16_t Error;
12
extern int16_t FollowMe_active;
13
extern int16_t UBat;
14
#endif //_MAIN_H
15
 
16
 
17
 
18
 
19
 
20
 
21