Rev 37 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
32 | holgerb | 1 | #ifndef _TIMER0_H |
2 | #define _TIMER0_H |
||
1 | ingob | 3 | |
32 | holgerb | 4 | #include <inttypes.h> |
1 | ingob | 5 | |
32 | holgerb | 6 | extern volatile uint16_t CountMilliseconds; |
7 | extern volatile uint16_t I2C_Timeout; |
||
1 | ingob | 8 | |
9 | |||
32 | holgerb | 10 | void TIMER0_Init(void); |
11 | uint16_t SetDelay (uint16_t t); |
||
12 | int8_t CheckDelay(uint16_t t); |
||
13 | void Delay_ms(uint16_t wait); |
||
1 | ingob | 14 | |
32 | holgerb | 15 | |
16 | #endif //_TIMER0_H |
||
17 |