Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
231 killagreg 1
#ifndef _TIMER0_H
2
#define _TIMER0_H
3
 
4
#include <inttypes.h>
5
 
6
extern volatile uint16_t CountMilliseconds;
271 killagreg 7
#ifdef USE_FOLLOWME
8
extern volatile uint16_t BeepTime;
9
extern volatile uint16_t BeepModulation;
10
#endif
231 killagreg 11
extern void TIMER0_Init(void);
12
extern void Delay_ms(uint16_t w);
13
extern void Delay_ms_Mess(uint16_t w);
14
extern uint16_t SetDelay (uint16_t t);
15
extern int8_t CheckDelay (uint16_t t);
16
 
17
#endif //_TIMER0_H