Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

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