Subversion Repositories FlightCtrl

Rev

Rev 1156 | Rev 1171 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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