Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

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