Subversion Repositories FlightCtrl

Rev

Rev 313 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
308 osiair 1
#include "main.h"
2
 
3
volatile unsigned int CountMilliseconds = 0;
4
volatile static unsigned int tim_main;
5
volatile unsigned char UpdateMotor = 0;
316 osiair 6
volatile unsigned int cntKompass = 0;
309 osiair 7
volatile unsigned int beeptime = 0;
316 osiair 8
unsigned int BeepMuster = 0xffff;
308 osiair 9
int ServoValue = 0;
316 osiair 10
 
308 osiair 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;
316 osiair 26
    unsigned char pieper_ein = 0;
308 osiair 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
 
316 osiair 65
 if(EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV)
308 osiair 66
 {
316 osiair 67
  if(PINC & 0x10)
68
   {
69
    cntKompass++;
70
   }
71
  else
72
   {
73
 
308 osiair 74
                MM3_timer0();           // Kompass auslesen
75
 
76
                if (!cntKompass--)              // Aufruf mit 25 Hz
77
                {
313 osiair 78
 
309 osiair 79
 
313 osiair 80
                if (MM3_heading() > 0) { KompassValue = 360-MM3_heading();}
81
                if (MM3_heading() < 0 ) { KompassValue = MM3_heading()*-1;}
82
 
309 osiair 83
 
84
 
85
                KompassRichtung = ((540 + KompassValue - KompassStartwert) % 360);
316 osiair 86
                            cntKompass = 640;
87
   }
88
 }
309 osiair 89
}
316 osiair 90
}
308 osiair 91
 
92
 
93
void Timer_Init(void)
94
{
95
    tim_main = SetDelay(10);
96
    TCCR0B = CK8;
97
    TCCR0A = (1<<COM0A1)|(1<<COM0B1)|3;//fast PWM
98
    OCR0A =  0;
99
    OCR0B = 120;
100
    TCNT0 = -TIMER_RELOAD_VALUE;  // reload
101
    //OCR1  = 0x00;
102
 
103
    TCCR2A=(1<<COM2A1)|(1<<COM2A0)|3;
104
    TCCR2B=(0<<CS20)|(1<<CS21)|(1<<CS22);
105
 
106
//    TIMSK2 |= _BV(TOIE2);
107
TIMSK2 |= _BV(OCIE2A);
108
 
109
    TIMSK0 |= _BV(TOIE0);
110
    OCR2A = 10;
111
    TCNT2 = 0;
112
 
113
}
114
 
115
// -----------------------------------------------------------------------
116
 
117
unsigned int SetDelay (unsigned int t)
118
{
119
//  TIMSK0 &= ~_BV(TOIE0);
120
  return(CountMilliseconds + t + 1);                                            
121
//  TIMSK0 |= _BV(TOIE0);
122
}
123
 
124
// -----------------------------------------------------------------------
125
char CheckDelay(unsigned int t)
126
{
127
//  TIMSK0 &= ~_BV(TOIE0);
128
  return(((t - CountMilliseconds) & 0x8000) >> 9);
129
//  TIMSK0 |= _BV(TOIE0);
130
}
131
 
132
// -----------------------------------------------------------------------
133
void Delay_ms(unsigned int w)
134
{
135
 unsigned int akt;
136
 akt = SetDelay(w);
137
 while (!CheckDelay(akt));
138
}
139
 
140
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
141
//  Servo ansteuern
142
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
143
SIGNAL(SIG_OUTPUT_COMPARE2A)
144
{
145
  static unsigned char timer = 10;
146
 
147
  if(!timer--)  
148
    {
149
     TCCR2A=(1<<COM2A1)|(0<<COM2A0)|3;  
150
     ServoValue =  Parameter_ServoNickControl;
151
     if(EE_Parameter.ServoNickCompInvert & 0x01) ServoValue += ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
152
     else ServoValue -= ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
153
 
154
     if(ServoValue < EE_Parameter.ServoNickMin) ServoValue = EE_Parameter.ServoNickMin;
155
     else if(ServoValue > EE_Parameter.ServoNickMax) ServoValue = EE_Parameter.ServoNickMax;
156
 
157
     OCR2A = ServoValue;// + 75;
158
     timer = EE_Parameter.ServoNickRefresh;
159
    }
160
    else
161
    {
162
     TCCR2A =3;
163
     PORTD&=~0x80;
164
    }
165
}