Subversion Repositories Projects

Rev

Rev 231 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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