Subversion Repositories FlightCtrl

Rev

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

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