Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

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