Subversion Repositories Projects

Rev

Rev 294 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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