Rev 624 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 624 | Rev 683 | ||
---|---|---|---|
Line -... | Line 1... | ||
- | 1 | #ifndef _TIMER0_H |
|
- | 2 | #define _TIMER0_H |
|
Line 1... | Line -... | ||
1 | - | ||
2 | #define TIMER_TEILER CK8 |
- | |
Line 3... | Line 3... | ||
3 | #define TIMER_RELOAD_VALUE 250 |
3 | |
4 | 4 | ||
5 | void Timer_Init(void); |
5 | extern volatile uint16_t CountMilliseconds; |
6 | void Delay_ms(unsigned int); |
6 | extern volatile uint8_t UpdateMotor; |
7 | void Delay_ms_Mess(unsigned int); |
7 | extern volatile uint16_t cntKompass; |
- | 8 | extern uint16_t BeepModulation; |
|
8 | unsigned int SetDelay (unsigned int t); |
9 | extern volatile uint16_t BeepTime; |
9 | char CheckDelay (unsigned int t); |
10 | |
10 | 11 | ||
11 | extern volatile unsigned int CountMilliseconds; |
12 | void TIMER0_Init(void); |
12 | extern volatile unsigned char UpdateMotor; |
13 | void Delay_ms(uint16_t w); |
13 | extern volatile unsigned int beeptime; |
14 | void Delay_ms_Mess(uint16_t w); |
- | 15 | uint16_t SetDelay (uint16_t t); |
|
- | 16 | int8_t CheckDelay (uint16_t t); |
|
14 | extern volatile unsigned int cntKompass; |
17 |