Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
787 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
unsigned int BeepMuster = 0xffff;
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)    // 9,8kHz
23
{
24
    static uint8_t cnt_1ms = 1,cnt = 0;
25
    uint8_t pieper_ein = 0;
26
 
27
   if(!cnt--)
28
    {
29
     cnt = 9;
30
     cnt_1ms++;
31
     cnt_1ms %= 2;
32
         if(!cnt_1ms) UpdateMotor = 1;
33
     CountMilliseconds++;
34
     }  
35
 
36
PORTD |= (1<<PD4);
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) timer0_MM3();         // Kompass auslesen
66
}
67
 
68
 
69
void Timer_Init(void)
70
{
71
    TCCR0B = CK8;
72
    TCCR0A = (1<<COM0A1)|(1<<COM0B1)|3;//fast PWM
73
    OCR0A =  0;
74
    OCR0B = 120;
75
 
76
    TCCR2A=(1<<COM2A1)|(1<<COM2A0)|3;
77
    TCCR2B=(0<<CS20)|(1<<CS21)|(1<<CS22);
78
 
79
//    TIMSK2 |= _BV(TOIE2);
80
TIMSK2 |= _BV(OCIE2A);
81
 
82
    TIMSK0 |= _BV(TOIE0);
83
    OCR2A = 10;
84
    TCNT2 = 0;
85
 
86
}
87
 
88
// -----------------------------------------------------------------------
89
 
90
unsigned int SetDelay (unsigned int t)
91
{
92
//  TIMSK0 &= ~_BV(TOIE0);
93
  return(CountMilliseconds + t + 1);                                            
94
//  TIMSK0 |= _BV(TOIE0);
95
}
96
 
97
// -----------------------------------------------------------------------
98
char CheckDelay(unsigned int t)
99
{
100
//  TIMSK0 &= ~_BV(TOIE0);
101
  return(((t - CountMilliseconds) & 0x8000) >> 9);
102
//  TIMSK0 |= _BV(TOIE0);
103
}
104
 
105
// -----------------------------------------------------------------------
106
void Delay_ms(unsigned int w)
107
{
108
 unsigned int akt;
109
 akt = SetDelay(w);
110
 while (!CheckDelay(akt));
111
}
112
 
113
void Delay_ms_Mess(unsigned int w)
114
{
115
 unsigned int akt;
116
 akt = SetDelay(w);
117
 while (!CheckDelay(akt)) ANALOG_ON;
118
}
119
 
120
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
121
//  Servo ansteuern
122
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
123
SIGNAL(SIG_OUTPUT_COMPARE2A)
124
{
125
  static unsigned char timer = 10;
126
 
127
  if(!timer--)  
128
    {
129
     TCCR2A=(1<<COM2A1)|(0<<COM2A0)|3;  
130
     ServoValue =  Parameter_ServoNickControl;
131
     if(EE_Parameter.ServoNickCompInvert & 0x01) ServoValue += ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
132
     else ServoValue -= ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
133
 
134
     if(ServoValue < EE_Parameter.ServoNickMin) ServoValue = EE_Parameter.ServoNickMin;
135
     else if(ServoValue > EE_Parameter.ServoNickMax) ServoValue = EE_Parameter.ServoNickMax;
136
 
137
     OCR2A = ServoValue;// + 75;
138
     timer = EE_Parameter.ServoNickRefresh;
139
    }
140
    else
141
    {
142
     TCCR2A =3;
143
     PORTD&=~0x80;
144
    }
145
}