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