Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2751 - 1
#include "main.h"
2
 
3
 
4
volatile unsigned int CountMilliseconds = 0;
5
volatile static unsigned int tim_main;
6
volatile unsigned char UpdateMotor = 0;
7
volatile unsigned int cntKompass = 0;
8
volatile unsigned int beeptime = 0;
9
volatile unsigned char SendSPI = 0, ServoActive = 0;
10
 
11
unsigned int BeepMuster = 0xffff;
12
 
13
volatile int16_t        ServoNickValue = 0;
14
volatile int16_t        ServoRollValue = 0;
15
 
16
 
17
enum {
18
  STOP             = 0,
19
  CK               = 1,
20
  CK8              = 2,
21
  CK64             = 3,
22
  CK256            = 4,
23
  CK1024           = 5,
24
  T0_FALLING_EDGE  = 6,
25
  T0_RISING_EDGE   = 7
26
};
27
 
28
 
29
ISR(TIMER0_OVF_vect)    // 9,7kHz
30
{
31
   static unsigned char cnt_1ms = 1,cnt = 0, compass_active = 0;
32
   unsigned char pieper_ein = 0;
33
   if(SendSPI) SendSPI--;
34
   if(SpektrumTimer) SpektrumTimer--;
35
   if(!cnt--)
36
    {
37
     cnt = 9;
38
     CountMilliseconds++;
39
     cnt_1ms++;
40
     cnt_1ms %= 2;
41
 
42
     if(!cnt_1ms) UpdateMotor = 1;
43
         if(!PINC & 0x10) compass_active = 1;
44
 
45
     if(beeptime)
46
        {
47
        if(beeptime > 10) beeptime -= 10; else beeptime = 0;
48
        if(beeptime & BeepMuster)
49
         {
50
          pieper_ein = 1;
51
         }
52
         else pieper_ein = 0;
53
        }
54
     else
55
      {
56
       pieper_ein = 0;
57
       BeepMuster = 0xffff;
58
      }
59
     if(pieper_ein)
60
        {
61
          if(PlatinenVersion == 10) PORTD |= (1<<2); // Speaker an PORTD.2
62
          else                      PORTC |= (1<<7); // Speaker an PORTC.7
63
        }
64
     else
65
        {
66
         if(PlatinenVersion == 10) PORTD &= ~(1<<2);
67
         else                      PORTC &= ~(1<<7);
68
        }
69
        }
70
 if(compass_active && !NaviDataOkay && EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV)
71
 {
72
  if(PINC & 0x10)
73
   {
74
        if(++cntKompass > 1000) compass_active = 0;
75
   }
76
  else
77
   {
78
    if((cntKompass) && (cntKompass < 362))
79
    {
80
     cntKompass += cntKompass / 41;
81
     if(cntKompass > 10) KompassValue = cntKompass - 10; else KompassValue = 0;
82
     KompassRichtung = ((540 + KompassValue - KompassStartwert) % 360) - 180;
83
    }
84
    cntKompass = 0;
85
   }
86
 }
87
}
88
 
89
 
90
// -----------------------------------------------------------------------
91
unsigned int SetDelay (unsigned int t)
92
{
93
//  TIMSK0 &= ~_BV(TOIE0);
94
  return(CountMilliseconds + t + 1);
95
//  TIMSK0 |= _BV(TOIE0);
96
}
97
 
98
// -----------------------------------------------------------------------
99
char CheckDelay(unsigned int t)
100
{
101
//  TIMSK0 &= ~_BV(TOIE0);
102
  return(((t - CountMilliseconds) & 0x8000) >> 9);
103
//  TIMSK0 |= _BV(TOIE0);
104
}
105
 
106
// -----------------------------------------------------------------------
107
void Delay_ms(unsigned int w)
108
{
109
 unsigned int akt;
110
 akt = SetDelay(w);
111
 while (!CheckDelay(akt));
112
}
113
 
114
void Delay_ms_Mess(unsigned int w)
115
{
116
 unsigned int akt;
117
 akt = SetDelay(w);
118
 while (!CheckDelay(akt)) if(AdReady) {AdReady = 0; ANALOG_ON;}
119
}
120
 
121
/*****************************************************/
122
/*              Initialize Timer 2                   */
123
/*****************************************************/
124
// The timer 2 is used to generate the PWM at PD7 (J7)
125
// to control a camera servo for nick compensation.
126
void TIMER2_Init(void)
127
{
128
        uint8_t sreg = SREG;
129
 
130
        // disable all interrupts before reconfiguration
131
        cli();
132
 
133
        PORTD &= ~(1<<PORTD7);  // set PD7 to low
134
 
135
        DDRC  |= (1<<DDC6);     // set PC6 as output (Reset for HEF4017)
136
    HEF4017R_ON;
137
        // Timer/Counter 2 Control Register A
138
 
139
        // Timer Mode is FastPWM with timer reload at OCR2A (Bits: WGM22 = 1, WGM21 = 1, WGM20 = 1)
140
    // PD7: Normal port operation, OC2A disconnected, (Bits: COM2A1 = 0, COM2A0 = 0)
141
    // PD6: Normal port operation, OC2B disconnected, (Bits: COM2B1 = 0, COM2B0 = 0)
142
        TCCR2A &= ~((1<<COM2A1)|(1<<COM2A0)|(1<<COM2B1)|(1<<COM2B0));
143
    TCCR2A |= (1<<WGM21)|(1<<WGM20);
144
 
145
    // Timer/Counter 2 Control Register B
146
 
147
        // Set clock divider for timer 2 to SYSKLOCK/32 = 20MHz / 32 = 625 kHz
148
        // The timer increments from 0x00 to 0xFF with an update rate of 625 kHz or 1.6 us
149
        // hence the timer overflow interrupt frequency is 625 kHz / 256 = 2.44 kHz or 0.4096 ms
150
 
151
    // divider 32 (Bits: CS022 = 0, CS21 = 1, CS20 = 1)
152
        TCCR2B &= ~((1<<FOC2A)|(1<<FOC2B)|(1<<CS22));
153
    TCCR2B |= (1<<CS21)|(1<<CS20)|(1<<WGM22);
154
 
155
        // Initialize the Timer/Counter 2 Register
156
    TCNT2 = 0;
157
 
158
        // Initialize the Output Compare Register A used for PWM generation on port PD7.
159
        OCR2A = 255;
160
        TCCR2A |= (1<<COM2A1); // set or clear at compare match depends on value of COM2A0
161
 
162
        // Timer/Counter 2 Interrupt Mask Register
163
        // Enable timer output compare match A Interrupt only
164
        TIMSK2 &= ~((1<<OCIE2B)|(1<<TOIE2));
165
        TIMSK2 |= (1<<OCIE2A);
166
 
167
    SREG = sreg;
168
}
169
 
170
//----------------------------
171
void Timer_Init(void)
172
{
173
    tim_main = SetDelay(10);
174
    TCCR0B = CK8;
175
    TCCR0A = (1<<COM0A1)|(1<<COM0B1)|3;//fast PWM
176
    OCR0A =  0;
177
    OCR0B = 180;
178
    TCNT0 = (unsigned char)-TIMER_RELOAD_VALUE;  // reload
179
    //OCR1  = 0x00;
180
    TIMSK0 |= _BV(TOIE0);
181
}
182
 
183
 
184
/*****************************************************/
185
/*              Control Servo Position               */
186
/*****************************************************/
187
 
188
ISR(TIMER2_COMPA_vect)
189
{
190
        // frame len 22.5 ms = 14063 * 1.6 us
191
        // stop pulse: 0.3 ms = 188 * 1.6 us
192
        // min servo pulse: 0.6 ms =  375 * 1.6 us
193
        // max servo pulse: 2.4 ms = 1500 * 1.6 us
194
        // resolution: 1500 - 375 = 1125 steps
195
 
196
        #define IRS_RUNTIME 127
197
        #define PPM_STOPPULSE 188
198
//      #define PPM_FRAMELEN (14063
199
    #define PPM_FRAMELEN (1757 * EE_Parameter.ServoNickRefresh)
200
        #define MINSERVOPULSE 375
201
        #define MAXSERVOPULSE 1500
202
        #define SERVORANGE (MAXSERVOPULSE - MINSERVOPULSE)
203
 
204
        static uint8_t  PulseOutput = 0;
205
        static uint16_t RemainingPulse = 0;
206
        static uint16_t ServoFrameTime = 0;
207
        static uint8_t  ServoIndex = 0;
208
 
209
        #define MULTIPLYER 4
210
        static int16_t ServoNickOffset = (255 / 2) * MULTIPLYER; // initial value near center positon
211
        static int16_t ServoRollOffset = (255 / 2) * MULTIPLYER; // initial value near center positon
212
 
213
        if(PlatinenVersion < 20)
214
        {
215
                //---------------------------
216
                // Nick servo state machine
217
                //---------------------------
218
                if(!PulseOutput) // pulse output complete
219
                {
220
                        if(TCCR2A & (1<<COM2A0)) // we had a low pulse
221
                        {
222
                                TCCR2A &= ~(1<<COM2A0);// make a high pulse
223
                                RemainingPulse  = MINSERVOPULSE + SERVORANGE/2; // center position ~ 1.5ms
224
 
225
                                ServoNickOffset = (ServoNickOffset * 3 + (int16_t)Parameter_ServoNickControl * MULTIPLYER) / 4; // lowpass offset
226
                                ServoNickValue = ServoNickOffset; // offset (Range from 0 to 255 * 3 = 765)
227
                                if(EE_Parameter.ServoCompInvert & 0x01)
228
                                {       // inverting movement of servo
229
                                        ServoNickValue += (int16_t)( ( (int32_t)EE_Parameter.ServoNickComp * MULTIPLYER * (IntegralNick / 128L ) ) / (256L) );
230
                                }
231
                                else
232
                                {       // non inverting movement of servo
233
                                        ServoNickValue -= (int16_t)( ( (int32_t)EE_Parameter.ServoNickComp * MULTIPLYER * (IntegralNick / 128L ) ) / (256L) );
234
                                }
235
                                // limit servo value to its parameter range definition
236
                                if(ServoNickValue < ((int16_t)EE_Parameter.ServoNickMin * MULTIPLYER) )
237
                                {
238
                                        ServoNickValue = (int16_t)EE_Parameter.ServoNickMin * MULTIPLYER;
239
                                }
240
                                else
241
                                if(ServoNickValue > ((int16_t)EE_Parameter.ServoNickMax * MULTIPLYER) )
242
                                {
243
                                        ServoNickValue = (int16_t)EE_Parameter.ServoNickMax * MULTIPLYER;
244
                                }
245
 
246
                                RemainingPulse += ServoNickValue - (256 / 2) * MULTIPLYER; // shift ServoNickValue to center position
247
 
248
                                ServoNickValue /= MULTIPLYER;
249
 
250
                                // range servo pulse width
251
                                if(RemainingPulse > MAXSERVOPULSE )                     RemainingPulse = MAXSERVOPULSE; // upper servo pulse limit
252
                                else if(RemainingPulse < MINSERVOPULSE )        RemainingPulse = MINSERVOPULSE; // lower servo pulse limit
253
                                // accumulate time for correct update rate
254
                                ServoFrameTime = RemainingPulse;
255
                        }
256
                        else // we had a high pulse
257
                        {
258
                                TCCR2A |= (1<<COM2A0); // make a low pulse
259
                                RemainingPulse = PPM_FRAMELEN - ServoFrameTime;
260
                        }
261
                        // set pulse output active
262
                        PulseOutput = 1;
263
                }
264
        } // EOF Nick servo state machine
265
        else
266
        {
267
                //-----------------------------------------------------
268
                // PPM state machine, onboard demultiplexed by HEF4017
269
                //-----------------------------------------------------
270
                if(!PulseOutput) // pulse output complete
271
                {
272
                        if(TCCR2A & (1<<COM2A0)) // we had a low pulse
273
                        {
274
                                TCCR2A &= ~(1<<COM2A0);// make a high pulse
275
 
276
                                if(ServoIndex == 0) // if we are at the sync gap
277
                                {
278
                                        RemainingPulse = PPM_FRAMELEN - ServoFrameTime; // generate sync gap by filling time to full frame time
279
                                        ServoFrameTime = 0; // reset servo frame time
280
                                        HEF4017R_ON; // enable HEF4017 reset
281
                                }
282
                                else // servo channels
283
                                {
284
                                        RemainingPulse  = MINSERVOPULSE + SERVORANGE/2; // center position ~ 1.5ms
285
                                        switch(ServoIndex) // map servo channels
286
                                        {
287
                                                case 1: // Nick Compensation Servo
288
                                                        ServoNickOffset = (ServoNickOffset * 3 + (int16_t)Parameter_ServoNickControl * MULTIPLYER) / 4; // lowpass offset
289
                                                        ServoNickValue = ServoNickOffset; // offset (Range from 0 to 255 * 3 = 765)
290
                                                        if(EE_Parameter.ServoCompInvert & 0x01)
291
                                                        {       // inverting movement of servo
292
                                                                ServoNickValue += (int16_t)( ( (int32_t)EE_Parameter.ServoNickComp * MULTIPLYER * (IntegralNick / 128L ) ) / (256L) );
293
                                                        }
294
                                                        else
295
                                                        {       // non inverting movement of servo
296
                                                                ServoNickValue -= (int16_t)( ( (int32_t)EE_Parameter.ServoNickComp * MULTIPLYER * (IntegralNick / 128L ) ) / (256L) );
297
                                                        }
298
                                                        // limit servo value to its parameter range definition
299
                                                        if(ServoNickValue < ((int16_t)EE_Parameter.ServoNickMin * MULTIPLYER) )
300
                                                        {
301
                                                                ServoNickValue = (int16_t)EE_Parameter.ServoNickMin * MULTIPLYER;
302
                                                        }
303
                                                        else
304
                                                        if(ServoNickValue > ((int16_t)EE_Parameter.ServoNickMax * MULTIPLYER) )
305
                                                        {
306
                                                                ServoNickValue = (int16_t)EE_Parameter.ServoNickMax * MULTIPLYER;
307
                                                        }
308
                                                        RemainingPulse += ServoNickValue - (256 / 2) * MULTIPLYER; // shift ServoNickValue to center position
309
                                                        ServoNickValue /= MULTIPLYER;
310
                                                        break;
311
                                         case 2: // Roll Compensation Servo
312
                                                        ServoRollOffset = (ServoRollOffset * 3 + (int16_t) Parameter_ServoRollControl  * MULTIPLYER) / 4; // lowpass offset
313
                                                        ServoRollValue = ServoRollOffset; // offset (Range from 0 to 255 * 3 = 765)
314
                                                        if(EE_Parameter.ServoCompInvert & 0x02)
315
                                                        {       // inverting movement of servo
316
                                                                ServoRollValue += (int16_t)( ( (int32_t) EE_Parameter.ServoRollComp * MULTIPLYER * (IntegralRoll / 128L ) ) / (256L) );
317
                                                        }
318
                                                        else
319
                                                        {       // non inverting movement of servo
320
                                                                ServoRollValue -= (int16_t)( ( (int32_t) EE_Parameter.ServoRollComp * MULTIPLYER * (IntegralRoll / 128L ) ) / (256L) );
321
                                                        }
322
                                                    // limit servo value to its parameter range definition
323
                                                        if(ServoRollValue < ((int16_t)EE_Parameter.ServoRollMin * MULTIPLYER) )
324
                                                        {
325
                                                                ServoRollValue = (int16_t)EE_Parameter.ServoRollMin * MULTIPLYER;
326
                                                        }
327
                                                        else
328
                                                        if(ServoRollValue > ((int16_t)EE_Parameter.ServoRollMax * MULTIPLYER) )
329
                                                        {
330
                                                                ServoRollValue = (int16_t)EE_Parameter.ServoRollMax * MULTIPLYER;
331
                                                        }
332
                                                        RemainingPulse += ServoRollValue - (256 / 2) * MULTIPLYER; // shift ServoNickValue to center position
333
                                                        ServoRollValue /= MULTIPLYER;
334
                                                        //DebugOut.Analog[20] = ServoRollValue;
335
                                                        break;
336
                                         case 3:
337
                                                        RemainingPulse += ((int16_t)Parameter_Servo3 * MULTIPLYER) - (256 / 2) * MULTIPLYER;
338
                                                        break;
339
                                         case 4:
340
                                                        RemainingPulse += ((int16_t)Parameter_Servo4 * MULTIPLYER) - (256 / 2) * MULTIPLYER;
341
                                                        break;
342
                                         case 5:
343
                                                        RemainingPulse += ((int16_t)Parameter_Servo5 * MULTIPLYER) - (256 / 2) * MULTIPLYER;
344
                                                        break;
345
                                                default: // other servo channels
346
                                                        RemainingPulse += 2 * PPM_in[ServoIndex]; // add channel value, factor of 2 because timer 1 increments 3.2µs
347
                                                        break;
348
                                        }
349
                                        // range servo pulse width
350
                                        if(RemainingPulse > MAXSERVOPULSE )                     RemainingPulse = MAXSERVOPULSE; // upper servo pulse limit
351
                                        else if(RemainingPulse < MINSERVOPULSE )        RemainingPulse = MINSERVOPULSE; // lower servo pulse limit
352
                                        // substract stop pulse width
353
                                        RemainingPulse -= PPM_STOPPULSE;
354
                                        // accumulate time for correct sync gap
355
                                        ServoFrameTime += RemainingPulse;
356
                                }
357
                        }
358
                        else // we had a high pulse
359
                        {
360
                                TCCR2A |= (1<<COM2A0); // make a low pulse
361
                                // set pulsewidth to stop pulse width
362
                                RemainingPulse = PPM_STOPPULSE;
363
                                // accumulate time for correct sync gap
364
                                ServoFrameTime += RemainingPulse;
365
                                if((ServoActive && SenderOkay > 180) || ServoActive == 2) HEF4017R_OFF; // disable HEF4017 reset
366
                                else HEF4017R_ON;
367
                                ServoIndex++; // change to next servo channel
368
                                if(ServoIndex > EE_Parameter.ServoNickRefresh) ServoIndex = 0; // reset to the sync gap
369
                        }
370
                        // set pulse output active
371
                        PulseOutput = 1;
372
                }
373
        } // EOF PPM state machine
374
 
375
        // General pulse output generator
376
        if(RemainingPulse > (255 + IRS_RUNTIME))
377
        {
378
                OCR2A = 255;
379
                RemainingPulse -= 255;
380
        }
381
        else
382
        {
383
                if(RemainingPulse > 255) // this is the 2nd last part
384
                {
385
                        if((RemainingPulse - 255) < IRS_RUNTIME)
386
                        {
387
                                OCR2A = 255 - IRS_RUNTIME;
388
                                RemainingPulse -= 255 - IRS_RUNTIME;
389
 
390
                        }
391
                        else // last part > ISR_RUNTIME
392
                        {
393
                                OCR2A = 255;
394
                                RemainingPulse -= 255;
395
                        }
396
                }
397
                else // this is the last part
398
                {
399
                        OCR2A = RemainingPulse;
400
                        RemainingPulse = 0;
401
                        PulseOutput = 0; // trigger to stop pulse
402
                }
403
        } // EOF general pulse output generator
404
}