Subversion Repositories BL-Ctrl

Rev

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

Rev Author Line No. Line
1 ingob 1
#if defined (__AVR_ATmega8__)
2
#define TIMER_TEILER          CK8
3
//#define TIMER_RELOAD_VALUE    125
4
#endif
5
 
6
 
7
extern volatile unsigned int CountMilliseconds;
8
extern volatile unsigned char Timer0Overflow;
9
 
10
 
11
void Timer1_Init(void);
12
void Delay_ms(unsigned int);
13
unsigned int SetDelay (unsigned int t);
14
char CheckDelay (unsigned int t);
15