Subversion Repositories FlightCtrl

Rev

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

Rev 1639 Rev 1658
1
/*#######################################################################################
1
/*#######################################################################################
2
Decodieren eines RC Summen Signals
2
Decodieren eines RC Summen Signals
3
#######################################################################################*/
3
#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) Holger Buss, Ingo Busker
5
// + Copyright (c) Holger Buss, Ingo Busker
6
// + only for non-profit use
6
// + only for non-profit use
7
// + www.MikroKopter.com
7
// + www.MikroKopter.com
8
// + porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed
8
// + porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed
9
// + see the File "License.txt" for further Informations
9
// + see the File "License.txt" for further Informations
10
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11
 
11
 
12
#include "rc.h"
12
#include "rc.h"
13
#include "main.h"
13
#include "main.h"
14
// Achtung: ACT_S3D_SUMMENSIGNAL wird in der Main.h gesetzt
14
// Achtung: ACT_S3D_SUMMENSIGNAL wird in der Main.h gesetzt
15
 
15
 
16
volatile int PPM_in[26];
16
volatile int PPM_in[26];
17
volatile int PPM_diff[26];  // das diffenzierte Stick-Signal
17
volatile int PPM_diff[26];  // das diffenzierte Stick-Signal
18
volatile char Channels,tmpChannels = 0;
18
volatile char Channels,tmpChannels = 0;
19
volatile unsigned char NewPpmData = 1;
19
volatile unsigned char NewPpmData = 1;
20
 
20
 
21
//############################################################################
21
//############################################################################
22
//zum decodieren des PPM-Signals wird Timer1 mit seiner Input
22
//zum decodieren des PPM-Signals wird Timer1 mit seiner Input
23
//Capture Funktion benutzt:
23
//Capture Funktion benutzt:
24
void rc_sum_init (void)
24
void rc_sum_init (void)
25
//############################################################################
25
//############################################################################
26
{
26
{
27
 unsigned char i;
27
 unsigned char i;
28
 for(i=0;i<26;i++)
28
 for(i=0;i<26;i++)
29
  {
29
  {
30
   PPM_in[i] = 0;
30
   PPM_in[i] = 0;
31
   PPM_diff[i] = 0;
31
   PPM_diff[i] = 0;
32
  }
32
  }
33
 
33
 
34
    AdNeutralGier = 0;
34
    AdNeutralGier = 0;
35
    AdNeutralRoll = 0;
35
    AdNeutralRoll = 0;
36
    AdNeutralNick = 0;
36
    AdNeutralNick = 0;
37
    return;
37
    return;
38
}
38
}
39
 
39
 
40
#ifndef ACT_S3D_SUMMENSIGNAL
40
#ifndef ACT_S3D_SUMMENSIGNAL
41
//############################################################################
41
//############################################################################
42
//Diese Routine startet und inizialisiert den Timer für RC
42
//Diese Routine startet und inizialisiert den Timer für RC
43
ISR(TIMER1_CAPT_vect)
43
ISR(TIMER1_CAPT_vect)
44
//############################################################################
44
//############################################################################
45
{
45
{
46
if(!(EE_Parameter.ExtraConfig & CFG_SENSITIVE_RC))
46
if(!(EE_Parameter.ExtraConfig & CFG_SENSITIVE_RC))
47
 {
47
 {
48
        static unsigned int AltICR=0;
48
        static unsigned int AltICR=0;
49
    signed int signal = 0,tmp;
49
    signed int signal = 0,tmp;
50
        static int index;
50
        static int index;
51
 
51
 
52
        signal = (unsigned int) ICR1 - AltICR;
52
        signal = (unsigned int) ICR1 - AltICR;
53
        AltICR = ICR1;
53
        AltICR = ICR1;
54
    //Syncronisationspause? (3.52 ms < signal < 25.6 ms)
54
    //Syncronisationspause? (3.52 ms < signal < 25.6 ms)
55
        if((signal > 1100) && (signal < 8000))
55
        if((signal > 1100) && (signal < 8000))
56
        {
56
        {
57
        Channels = index;
57
        Channels = index;
58
        if(index >= 4)  NewPpmData = 0;  // Null bedeutet: Neue Daten
58
        if(index >= 4)  NewPpmData = 0;  // Null bedeutet: Neue Daten
59
        index = 1;
59
        index = 1;
60
        }
60
        }
61
        else
61
        else
62
        {
62
        {
63
        if(index < 13)
63
        if(index < 13)
64
            {
64
            {
65
            if((signal > 250) && (signal < 687))
65
            if((signal > 250) && (signal < 687))
66
                {
66
                {
67
                signal -= 466;
67
                signal -= 466;
68
                // Stabiles Signal
68
                // Stabiles Signal
69
                if(abs(signal - PPM_in[index]) < 6) { if(SenderOkay < 200) SenderOkay += 10; else SenderOkay = 200;}
69
                if(abs(signal - PPM_in[index]) < 6) { if(SenderOkay < 200) SenderOkay += 10; else SenderOkay = 200;}
70
                tmp = (3 * (PPM_in[index]) + signal) / 4;
70
                tmp = (3 * (PPM_in[index]) + signal) / 4;
71
                if(tmp > signal+1) tmp--; else
71
                if(tmp > signal+1) tmp--; else
72
                if(tmp < signal-1) tmp++;
72
                if(tmp < signal-1) tmp++;
73
                if(SenderOkay >= 195)  PPM_diff[index] = ((tmp - PPM_in[index]) / 3) * 3;
73
                if(SenderOkay >= 195)  PPM_diff[index] = ((tmp - PPM_in[index]) / 3) * 3;
74
                else PPM_diff[index] = 0;
74
                else PPM_diff[index] = 0;
75
                PPM_in[index] = tmp;
75
                PPM_in[index] = tmp;
76
                }
76
                }
77
            index++;
77
            index++;
78
                   if(PlatinenVersion < 20)
78
                   if(PlatinenVersion < 20)
79
            {  
79
            {  
80
             if(index == 5) J3High; else J3Low;  // Servosignal an J3 anlegen
80
             if(index == 5) J3High; else J3Low;  // Servosignal an J3 anlegen
81
             if(index == 6) J4High; else J4Low;  // Servosignal an J4 anlegen
81
             if(index == 6) J4High; else J4Low;  // Servosignal an J4 anlegen
82
             if(index == 7) J5High; else J5Low;  // Servosignal an J5 anlegen
82
             if(index == 7) J5High; else J5Low;  // Servosignal an J5 anlegen
83
                        }
83
                        }
84
        }
84
        }
85
        }
85
        }
86
 }
86
 }
87
 else
87
 else
88
 {
88
 {
89
        static unsigned int AltICR=0;
89
        static unsigned int AltICR=0;
90
    static int ppm_in[13];
90
    static int ppm_in[13];
91
    static int ppm_diff[13];
91
    static int ppm_diff[13];
92
    static int old_ppm_in[13];
92
    static int old_ppm_in[13];
93
    static int old_ppm_diff[13];
93
    static int old_ppm_diff[13];
94
    signed int signal = 0,tmp;
94
    signed int signal = 0,tmp;
95
        static unsigned char index, okay_cnt = 0;
95
        static unsigned char index, okay_cnt = 0;
96
        signal = (unsigned int) ICR1 - AltICR;
96
        signal = (unsigned int) ICR1 - AltICR;
97
        AltICR = ICR1;
97
        AltICR = ICR1;
98
    //Syncronisationspause? (3.52 ms < signal < 25.6 ms)
98
    //Syncronisationspause? (3.52 ms < signal < 25.6 ms)
99
        if((signal > 1100) && (signal < 8000))
99
        if((signal > 1100) && (signal < 8000))
100
        {
100
        {
101
        tmpChannels = index;
101
        tmpChannels = index;
102
        if(tmpChannels >= 4 && Channels == tmpChannels)
102
        if(tmpChannels >= 4 && Channels == tmpChannels)
103
                 {
103
                 {
104
          if(okay_cnt > 10)
104
          if(okay_cnt > 10)
105
                   {
105
                   {
106
                   NewPpmData = 0;  // Null bedeutet: Neue Daten
106
                   NewPpmData = 0;  // Null bedeutet: Neue Daten
107
                   for(index = 0; index < 13; index++)
107
                   for(index = 0; index < 13; index++)
108
                    {
108
                    {
109
                         if(okay_cnt > 30)
109
                         if(okay_cnt > 30)
110
                          {
110
                          {
111
                           old_ppm_in[index] = PPM_in[index];
111
                           old_ppm_in[index] = PPM_in[index];
112
                           old_ppm_diff[index] = PPM_diff[index];
112
                           old_ppm_diff[index] = PPM_diff[index];
113
                          }
113
                          }
114
                     PPM_in[index] = ppm_in[index];
114
                     PPM_in[index] = ppm_in[index];
115
                     PPM_diff[index] = ppm_diff[index];
115
                     PPM_diff[index] = ppm_diff[index];
116
                    }
116
                    }
117
                   }
117
                   }
118
          if(okay_cnt < 255) okay_cnt++;
118
          if(okay_cnt < 255) okay_cnt++;
119
                 }
119
                 }
120
         else
120
         else
121
                  {
121
                  {
122
                   if(okay_cnt > 100) okay_cnt = 10; else okay_cnt = 0;
122
                   if(okay_cnt > 100) okay_cnt = 10; else okay_cnt = 0;
123
                   ROT_ON;
123
                   ROT_ON;
124
                  }
124
                  }
125
        index = 1;
125
        index = 1;
126
        if(!MotorenEin) Channels = tmpChannels;
126
        if(!MotorenEin) Channels = tmpChannels;
127
        }
127
        }
128
        else
128
        else
129
        {
129
        {
130
        if(index < 13)
130
        if(index < 13)
131
            {
131
            {
132
            if((signal > 250) && (signal < 687))
132
            if((signal > 250) && (signal < 687))
133
                {
133
                {
134
                signal -= 466;
134
                signal -= 466;
135
                // Stabiles Signal
135
                // Stabiles Signal
136
                if((abs(signal - ppm_in[index]) < 6))
136
                if((abs(signal - ppm_in[index]) < 6))
137
                                 {
137
                                 {
138
                                  if(okay_cnt > 25)  SenderOkay += 10;
138
                                  if(okay_cnt > 25)  SenderOkay += 10;
139
                                  else
139
                                  else
140
                                  if(okay_cnt > 10)  SenderOkay += 2;
140
                                  if(okay_cnt > 10)  SenderOkay += 2;
141
                                  if(SenderOkay > 200) SenderOkay = 200;
141
                                  if(SenderOkay > 200) SenderOkay = 200;
142
                                 }
142
                                 }
143
                tmp = (3 * (ppm_in[index]) + signal) / 4;
143
                tmp = (3 * (ppm_in[index]) + signal) / 4;
144
                if(tmp > signal+1) tmp--; else
144
                if(tmp > signal+1) tmp--; else
145
                if(tmp < signal-1) tmp++;
145
                if(tmp < signal-1) tmp++;
146
                if(SenderOkay >= 190)  ppm_diff[index] = ((tmp - ppm_in[index]) / 3) * 3;
146
                if(SenderOkay >= 190)  ppm_diff[index] = ((tmp - ppm_in[index]) / 3) * 3;
147
                else ppm_diff[index] = 0;
147
                else ppm_diff[index] = 0;
148
                ppm_in[index] = tmp;
148
                ppm_in[index] = tmp;
149
                }
149
                }
150
                        else ROT_ON;
150
                        else ROT_ON;
151
                   if(PlatinenVersion < 20)
151
                   if(PlatinenVersion < 20)
152
            {  
152
            {  
153
             if(index == 5) J3High; else J3Low;  // Servosignal an J3 anlegen
153
             if(index == 5) J3High; else J3Low;  // Servosignal an J3 anlegen
154
             if(index == 6) J4High; else J4Low;  // Servosignal an J4 anlegen
154
             if(index == 6) J4High; else J4Low;  // Servosignal an J4 anlegen
155
             if(index == 7) J5High; else J5Low;  // Servosignal an J5 anlegen
155
             if(index == 7) J5High; else J5Low;  // Servosignal an J5 anlegen
156
                        }
156
                        }
157
          }
157
          }
158
                  if(index < 20) index++;
158
                  if(index < 20) index++;
159
          else
159
          else
160
                  if(index == 20)
160
                  if(index == 20)
161
                  {
161
                  {
162
            unsigned char i;
162
            unsigned char i;
163
            ROT_ON;
163
            ROT_ON;
164
                    index = 30;
164
                    index = 30;
165
            for(i=0;i<13;i++) // restore from older data
165
            for(i=0;i<13;i++) // restore from older data
166
                         {
166
                         {
167
                      PPM_in[i] = old_ppm_in[i];
167
                      PPM_in[i] = old_ppm_in[i];
168
                      PPM_diff[i] = 0;
168
                      PPM_diff[i] = 0;
169
//                        okay_cnt /= 2;
169
//                        okay_cnt /= 2;
170
                 }
170
                 }
171
                  }
171
                  }
172
            }
172
            }
173
 }
173
 }
174
}
174
}
175
 
175
 
176
#else
176
#else
177
//############################################################################
177
//############################################################################
178
//Diese Routine startet und inizialisiert den Timer für RC
178
//Diese Routine startet und inizialisiert den Timer für RC
179
ISR(TIMER1_CAPT_vect)
179
ISR(TIMER1_CAPT_vect)
180
//############################################################################
180
//############################################################################
181
 
181
 
182
{
182
{
183
        static unsigned int AltICR=0;
183
        static unsigned int AltICR=0;
184
    signed int signal = 0,tmp;
184
    signed int signal = 0,tmp;
185
        static int index;
185
        static int index;
186
 
186
 
187
        signal = (unsigned int) ICR1 - AltICR;
187
        signal = (unsigned int) ICR1 - AltICR;
188
//DebugOut.Analog[16] = signal;
-
 
189
        signal /= 2;
188
        signal /= 2;
190
        AltICR = ICR1;
189
        AltICR = ICR1;
191
    //Syncronisationspause?
190
    //Syncronisationspause?
192
        if((signal > 1100*2) && (signal < 8000*2))
191
        if((signal > 1100*2) && (signal < 8000*2))
193
        {
192
        {
194
        if(index >= 4)  NewPpmData = 0;  // Null bedeutet: Neue Daten
193
        if(index >= 4)  NewPpmData = 0;  // Null bedeutet: Neue Daten
195
        index = 1;
194
        index = 1;
196
        }
195
        }
197
        else
196
        else
198
        {
197
        {
199
        if(index < 13)
198
        if(index < 13)
200
            {
199
            {
201
            if((signal > 250) && (signal < 687*2))
200
            if((signal > 250) && (signal < 687*2))
202
                {
201
                {
203
                signal -= 962;
202
                signal -= 962;
204
                // Stabiles Signal
203
                // Stabiles Signal
205
                if(abs(signal - PPM_in[index]) < 6) { if(SenderOkay < 200) SenderOkay += 10;}
204
                if(abs(signal - PPM_in[index]) < 6) { if(SenderOkay < 200) SenderOkay += 10;}
206
                tmp = (3 * (PPM_in[index]) + signal) / 4;
205
                tmp = (3 * (PPM_in[index]) + signal) / 4;
207
                if(tmp > signal+1) tmp--; else
206
                if(tmp > signal+1) tmp--; else
208
                if(tmp < signal-1) tmp++;
207
                if(tmp < signal-1) tmp++;
209
                if(SenderOkay >= 195)  PPM_diff[index] = ((tmp - PPM_in[index]) / 3) * 3;
208
                if(SenderOkay >= 195)  PPM_diff[index] = ((tmp - PPM_in[index]) / 3) * 3;
210
                else PPM_diff[index] = 0;
209
                else PPM_diff[index] = 0;
211
                PPM_in[index] = tmp;
210
                PPM_in[index] = tmp;
212
                }
211
                }
213
            index++;
212
            index++;
214
        }
213
        }
215
        }
214
        }
216
}
215
}
217
#endif
216
#endif
218
 
217
 
219
 
218