Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
425 | Nick666 | 1 | #include "main.h" |
2 | |||
3 | volatile unsigned int CountMilliseconds = 0; |
||
4 | volatile static unsigned int tim_main; |
||
5 | volatile unsigned char UpdateMotor = 0; |
||
6 | volatile unsigned int beeptime = 0; |
||
7 | int ServoValue = 0; |
||
8 | |||
9 | enum { |
||
10 | STOP = 0, |
||
11 | CK = 1, |
||
12 | CK8 = 2, |
||
13 | CK64 = 3, |
||
14 | CK256 = 4, |
||
15 | CK1024 = 5, |
||
16 | T0_FALLING_EDGE = 6, |
||
17 | T0_RISING_EDGE = 7 |
||
18 | }; |
||
19 | |||
20 | |||
21 | SIGNAL (SIG_OVERFLOW0) // 9,8kHz |
||
22 | { |
||
23 | static unsigned char cnt_1ms = 1,cnt = 0; |
||
24 | // TCNT0 -= 250;//TIMER_RELOAD_VALUE; |
||
25 | |||
26 | if(!cnt--) |
||
27 | { |
||
28 | cnt = 10; |
||
29 | cnt_1ms++; |
||
30 | cnt_1ms %= 2; |
||
31 | if(!cnt_1ms) UpdateMotor = 1; |
||
32 | CountMilliseconds++; |
||
33 | if(Timeout) Timeout--; |
||
34 | } |
||
35 | |||
36 | if(beeptime > 1) |
||
37 | { |
||
38 | beeptime--; |
||
39 | PORTD |= (1<<PD2); |
||
40 | } |
||
41 | else |
||
42 | PORTD &= ~(1<<PD2); |
||
43 | |||
461 | Nick666 | 44 | if(EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV) timer0_MM3(); // Kompass auslesen |
425 | Nick666 | 45 | } |
46 | |||
47 | |||
48 | void Timer_Init(void) |
||
49 | { |
||
50 | tim_main = SetDelay(10); |
||
51 | TCCR0B = CK8; |
||
52 | TCCR0A = (1<<COM0A1)|(1<<COM0B1)|3;//fast PWM |
||
53 | OCR0A = 0; |
||
54 | OCR0B = 120; |
||
55 | //TCNT0 = -TIMER_RELOAD_VALUE; // reload |
||
56 | //OCR1 = 0x00; |
||
57 | |||
58 | TCCR2A=(1<<COM2A1)|(1<<COM2A0)|3; |
||
59 | TCCR2B=(0<<CS20)|(1<<CS21)|(1<<CS22); |
||
60 | |||
61 | // TIMSK2 |= _BV(TOIE2); |
||
62 | TIMSK2 |= _BV(OCIE2A); |
||
63 | |||
64 | TIMSK0 |= _BV(TOIE0); |
||
65 | OCR2A = 10; |
||
66 | TCNT2 = 0; |
||
67 | |||
68 | } |
||
69 | |||
70 | // ----------------------------------------------------------------------- |
||
71 | |||
72 | unsigned int SetDelay (unsigned int t) |
||
73 | { |
||
74 | // TIMSK0 &= ~_BV(TOIE0); |
||
75 | return(CountMilliseconds + t + 1); |
||
76 | // TIMSK0 |= _BV(TOIE0); |
||
77 | } |
||
78 | |||
79 | // ----------------------------------------------------------------------- |
||
80 | char CheckDelay(unsigned int t) |
||
81 | { |
||
82 | // TIMSK0 &= ~_BV(TOIE0); |
||
83 | return(((t - CountMilliseconds) & 0x8000) >> 9); |
||
84 | // TIMSK0 |= _BV(TOIE0); |
||
85 | } |
||
86 | |||
87 | // ----------------------------------------------------------------------- |
||
88 | void Delay_ms(unsigned int w) |
||
89 | { |
||
90 | unsigned int akt; |
||
91 | akt = SetDelay(w); |
||
92 | while (!CheckDelay(akt)); |
||
93 | } |
||
94 | |||
95 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
96 | // Servo ansteuern |
||
97 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
98 | SIGNAL(SIG_OUTPUT_COMPARE2A) |
||
99 | { |
||
100 | static unsigned char timer = 10; |
||
101 | |||
102 | if(!timer--) |
||
103 | { |
||
104 | TCCR2A=(1<<COM2A1)|(0<<COM2A0)|3; |
||
105 | ServoValue = Parameter_ServoNickControl; |
||
106 | if(EE_Parameter.ServoNickCompInvert & 0x01) ServoValue += ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512; |
||
107 | else ServoValue -= ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512; |
||
108 | |||
109 | if(ServoValue < EE_Parameter.ServoNickMin) ServoValue = EE_Parameter.ServoNickMin; |
||
110 | else if(ServoValue > EE_Parameter.ServoNickMax) ServoValue = EE_Parameter.ServoNickMax; |
||
111 | |||
112 | //DebugOut.Analog[10] = ServoValue; |
||
113 | OCR2A = ServoValue;// + 75; |
||
114 | timer = EE_Parameter.ServoNickRefresh; |
||
115 | } |
||
116 | else |
||
117 | { |
||
118 | TCCR2A =3; |
||
119 | PORTD&=~0x80; |
||
120 | } |
||
121 | } |