Details | 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; |
||
7 | |||
8 | extern void TIMER0_Init(void); |
||
9 | extern void Delay_ms(uint16_t w); |
||
10 | extern void Delay_ms_Mess(uint16_t w); |
||
11 | extern uint16_t SetDelay (uint16_t t); |
||
12 | extern int8_t CheckDelay (uint16_t t); |
||
13 | |||
14 | #endif //_TIMER0_H |