Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
716 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 unsigned char cnt_1ms = 1,cnt = 0;
25
    unsigned char pieper_ein = 0;
26
 
27
   if(!cnt--)
28
    {
29
     cnt = 10;
30
     cnt_1ms++;
31
     cnt_1ms %= 2;
32
     if(!cnt_1ms) UpdateMotor = 1;
33
     CountMilliseconds++;
34
     }  
35
 
36
     if(beeptime > 1)
37
        {
38
        beeptime--;      
39
        if(beeptime & BeepMuster)
40
         {
41
          pieper_ein = 1;
42
         }
43
         else pieper_ein = 0;
44
        }
45
     else
46
      {
47
       pieper_ein = 0;
48
       BeepMuster = 0xffff;
49
      }
50
 
51
 
52
     if(pieper_ein)
53
        {
54
          if(PlatinenVersion == 10) PORTD |= (1<<2); // Speaker an PORTD.2
55
          else                      PORTC |= (1<<7); // Speaker an PORTC.7
56
        }
57
     else  
58
        {
59
         if(PlatinenVersion == 10) PORTD &= ~(1<<2);
60
         else                      PORTC &= ~(1<<7);
61
        }
62
 
63
        if(EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV) timer0_MM3();         // Kompass auslesen
64
}
65
 
66
 
67
void Timer_Init(void)
68
{
69
    TCCR0B = CK8;
70
    TCCR0A = (1<<COM0A1)|(1<<COM0B1)|3;//fast PWM
71
    OCR0A =  0;
72
    OCR0B = 120;
73
 
74
    TCCR2A=(1<<COM2A1)|(1<<COM2A0)|3;
75
    TCCR2B=(0<<CS20)|(1<<CS21)|(1<<CS22);
76
 
77
//    TIMSK2 |= _BV(TOIE2);
78
TIMSK2 |= _BV(OCIE2A);
79
 
80
    TIMSK0 |= _BV(TOIE0);
81
    OCR2A = 10;
82
    TCNT2 = 0;
83
 
84
}
85
 
86
// -----------------------------------------------------------------------
87
 
88
unsigned int SetDelay (unsigned int t)
89
{
728 Nick666 90
   uint8_t tmp_sreg;
91
   uint16_t CountMilliseconds_local;
92
 
93
   tmp_sreg = SREG;
94
   cli();
95
   CountMilliseconds_local = CountMilliseconds;
96
   SREG = tmp_sreg;
97
   return(CountMilliseconds_local + t + 1);
716 Nick666 98
}
99
 
100
// -----------------------------------------------------------------------
101
char CheckDelay(unsigned int t)
102
{
728 Nick666 103
   uint8_t tmp_sreg;
104
   uint16_t CountMilliseconds_local;
105
 
106
   tmp_sreg = SREG;
107
   cli();
108
   CountMilliseconds_local = CountMilliseconds;
109
   SREG = tmp_sreg;
110
   return (((t - CountMilliseconds_local) & 0x8000) >> 9);
716 Nick666 111
}
112
 
113
// -----------------------------------------------------------------------
114
void Delay_ms(unsigned int w)
115
{
116
 unsigned int akt;
117
 akt = SetDelay(w);
118
 while (!CheckDelay(akt));
119
}
120
 
121
void Delay_ms_Mess(unsigned int w)
122
{
123
 unsigned int akt;
124
 akt = SetDelay(w);
125
 while (!CheckDelay(akt)) ANALOG_ON;
126
}
127
 
128
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
129
//  Servo ansteuern
130
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
131
SIGNAL(SIG_OUTPUT_COMPARE2A)
132
{
133
  static unsigned char timer = 10;
134
 
135
  if(!timer--)  
136
    {
137
     TCCR2A=(1<<COM2A1)|(0<<COM2A0)|3;  
138
     ServoValue =  Parameter_ServoNickControl;
139
     if(EE_Parameter.ServoNickCompInvert & 0x01) ServoValue += ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
140
     else ServoValue -= ((long) EE_Parameter.ServoNickComp * (IntegralNick / 128)) / 512;
141
 
142
     if(ServoValue < EE_Parameter.ServoNickMin) ServoValue = EE_Parameter.ServoNickMin;
143
     else if(ServoValue > EE_Parameter.ServoNickMax) ServoValue = EE_Parameter.ServoNickMax;
144
 
145
     OCR2A = ServoValue;// + 75;
146
     timer = EE_Parameter.ServoNickRefresh;
147
    }
148
    else
149
    {
150
     TCCR2A =3;
151
     PORTD&=~0x80;
152
    }
153
}