Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
683 | killagreg | 1 | #ifndef _TIMER0_H |
2 | #define _TIMER0_H |
||
1 | ingob | 3 | |
685 | killagreg | 4 | #include <inttypes.h> |
1 | ingob | 5 | |
683 | killagreg | 6 | extern volatile uint16_t CountMilliseconds; |
7 | extern volatile uint8_t UpdateMotor; |
||
8 | extern volatile uint16_t cntKompass; |
||
685 | killagreg | 9 | extern volatile uint16_t BeepModulation; |
683 | killagreg | 10 | extern volatile uint16_t BeepTime; |
1 | ingob | 11 | |
683 | killagreg | 12 | |
685 | killagreg | 13 | extern void TIMER0_Init(void); |
14 | extern void Delay_ms(uint16_t w); |
||
15 | extern void Delay_ms_Mess(uint16_t w); |
||
16 | extern uint16_t SetDelay (uint16_t t); |
||
17 | extern int8_t CheckDelay (uint16_t t); |
||
683 | killagreg | 18 | |
19 | #endif //_TIMER0_H |