Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 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 cntKompass = 0;
7
volatile unsigned int beeptime = 0;
8
int ServoValue = 0;
9
 
10
enum {
11
  STOP             = 0,
12
  CK               = 1,
13
  CK8              = 2,
14
  CK64             = 3,
15
  CK256            = 4,
16
  CK1024           = 5,
17
  T0_FALLING_EDGE  = 6,
18
  T0_RISING_EDGE   = 7
19
};
20
 
21
 
22
SIGNAL (SIG_OVERFLOW0)    // 8kHz
23
{
24
    static unsigned char cnt_1ms = 1,cnt = 0;
25
//    TCNT0 -= 250;//TIMER_RELOAD_VALUE;
26
 
27
   if(!cnt--)
28
    {
29
     cnt = 9;
30
     cnt_1ms++;
31
     cnt_1ms %= 2;
32
     if(!cnt_1ms) UpdateMotor = 1;
33
     CountMilliseconds++;
34
     if(Timeout) Timeout--;
35
     }  
36
 
37
     if(beeptime > 1)
38
        {
39
        beeptime--;
40
        PORTD |= (1<<2);
41
        }
42
     else  
43
        PORTD &= ~(1<<2);
44
 
45
 if(EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV)
46
 {
47
  if(PINC & 0x10)
48
   {
49
    cntKompass++;
50
   }
51
  else
52
   {
53
    if((cntKompass) && (cntKompass < 4000))
54
    {
84 salvo 55
     KompassValue = cntKompass;
56
    // Salvo Korrektur Ausrichtung kompass  ****************************
57
                KompassValue -= KOMPASS_OFFSET ;
58
                 if (KompassValue < 0)
59
                 {
60
                        KompassValue = KompassValue +360;
61
                 }
62
                 if (KompassValue >= 360)  
63
                 {
64
                        KompassValue = KompassValue -360;
65
                 }        
66
// Salvo End ********************                               
67
        }
68
 
69
         cntKompass = 0;
70
         KompassRichtung = ((540 + KompassValue - KompassStartwert) % 360) - 180;
1 ingob 71
   }
72
 }
73
}
74
 
75
 
76
void Timer_Init(void)
77
{
78
    tim_main = SetDelay(10);
79
    TCCR0B = CK8;
80
    TCCR0A = (1<<COM0A1)|(1<<COM0B1)|3;//fast PWM
81
    OCR0A =  0;
82
    OCR0B = 120;
83
    TCNT0 = -TIMER_RELOAD_VALUE;  // reload
84
    //OCR1  = 0x00;
85
 
86
    TCCR2A=(1<<COM2A1)|(1<<COM2A0)|3;
87
    TCCR2B=(0<<CS20)|(1<<CS21)|(1<<CS22);
88
 
89
//    TIMSK2 |= _BV(TOIE2);
90
TIMSK2 |= _BV(OCIE2A);
91
 
92
    TIMSK0 |= _BV(TOIE0);
93
    OCR2A = 10;
94
    TCNT2 = 0;
95
 
96
}
97
 
98
// -----------------------------------------------------------------------
99
 
100
unsigned int SetDelay (unsigned int t)
101
{
102
//  TIMSK0 &= ~_BV(TOIE0);
103
  return(CountMilliseconds + t + 1);                                            
104
//  TIMSK0 |= _BV(TOIE0);
105
}
106
 
107
// -----------------------------------------------------------------------
108
char CheckDelay(unsigned int t)
109
{
110
//  TIMSK0 &= ~_BV(TOIE0);
111
  return(((t - CountMilliseconds) & 0x8000) >> 9);
112
//  TIMSK0 |= _BV(TOIE0);
113
}
114
 
115
// -----------------------------------------------------------------------
116
void Delay_ms(unsigned int w)
117
{
118
 unsigned int akt;
119
 akt = SetDelay(w);
120
 while (!CheckDelay(akt));
121
}
122
 
123
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
124
//  Servo ansteuern
125
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
126
SIGNAL(SIG_OUTPUT_COMPARE2A)
127
{
128
  static unsigned char timer = 10;
129
 
130
  if(!timer--)  
131
    {
132
     TCCR2A=(1<<COM2A1)|(0<<COM2A0)|3;  
133
     ServoValue =  Parameter_ServoNickControl;
134
     if(EE_Parameter.ServoNickCompInvert & 0x01) ServoValue += ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
135
     else ServoValue -= ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
136
 
137
     if(ServoValue < EE_Parameter.ServoNickMin) ServoValue = EE_Parameter.ServoNickMin;
138
     else if(ServoValue > EE_Parameter.ServoNickMax) ServoValue = EE_Parameter.ServoNickMax;
139
 
140
     DebugOut.Analog[10] = ServoValue;    
141
     OCR2A = ServoValue;// + 75;
142
     timer = EE_Parameter.ServoNickRefresh;
143
    }
144
    else
145
    {
146
     TCCR2A =3;
147
     PORTD&=~0x80;
148
    }
149
}