Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1184 pangu 1
/*#######################################################################################
2
Flight Control
3
#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) 04.2007 Holger Buss
6
// + Nur für den privaten Gebrauch
7
// + www.MikroKopter.com
8
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
10
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
11
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
12
// + bzgl. der Nutzungsbedingungen aufzunehmen.
13
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
14
// + Verkauf von Luftbildaufnahmen, usw.
15
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
17
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
18
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
19
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
20
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
21
// + eindeutig als Ursprung verlinkt werden
22
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
23
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
24
// + Benutzung auf eigene Gefahr
25
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
26
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
27
// + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
28
// + mit unserer Zustimmung zulässig
29
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
30
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
31
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
32
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
33
// + this list of conditions and the following disclaimer.
34
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
35
// +     from this software without specific prior written permission.
36
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permittet
37
// +     for non-commercial use (directly or indirectly)
38
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
39
// +     with our written permission
40
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
41
// +     clearly linked as origin
42
// +   * porting to systems other than hardware from www.mikrokopter.de is not allowed
43
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
44
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
47
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
48
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
49
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
50
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
52
// +  POSSIBILITY OF SUCH DAMAGE.
53
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
54
 
55
#include "main.h"
56
#include "eeprom.c"
57
 
58
unsigned char h,m,s;
59
volatile unsigned int I2CTimeout = 100;
60
int MesswertNick,MesswertRoll,MesswertGier,MesswertGierBias, RohMesswertNick,RohMesswertRoll;
61
int TrimNick, TrimRoll;
62
int AdNeutralGierBias;
63
int AdNeutralNick = 0,AdNeutralRoll = 0,AdNeutralGier = 0,StartNeutralRoll = 0,StartNeutralNick = 0;
64
int Mittelwert_AccNick, Mittelwert_AccRoll,Mittelwert_AccHoch, NeutralAccX=0, NeutralAccY=0;
65
int NaviAccNick, NaviAccRoll,NaviCntAcc = 0;
66
volatile float NeutralAccZ = 0;
67
unsigned char CosinusNickWinkel = 0, CosinusRollWinkel = 0;
68
long IntegralNick = 0,IntegralNick2 = 0;
69
long IntegralRoll = 0,IntegralRoll2 = 0;
70
long IntegralAccNick = 0,IntegralAccRoll = 0,IntegralAccZ = 0;
71
long Integral_Gier = 0;
72
long Mess_IntegralNick = 0,Mess_IntegralNick2 = 0;
73
long Mess_IntegralRoll = 0,Mess_IntegralRoll2 = 0;
74
long Mess_Integral_Gier = 0,Mess_Integral_Gier2 = 0;
75
long MittelIntegralNick,MittelIntegralRoll,MittelIntegralNick2,MittelIntegralRoll2;
76
volatile long Mess_Integral_Hoch = 0;
77
int  KompassValue = 0;
78
int  KompassStartwert = 0;
79
int  KompassRichtung = 0;
80
unsigned int  KompassSignalSchlecht = 500;
81
unsigned char  MAX_GAS,MIN_GAS;
82
unsigned char Notlandung = 0;
83
unsigned char HoehenReglerAktiv = 0;
84
unsigned char TrichterFlug = 0;
85
long Umschlag180Nick = 250000L, Umschlag180Roll = 250000L;
86
long  ErsatzKompass;
87
int   ErsatzKompassInGrad; // Kompasswert in Grad
88
int   GierGyroFehler = 0;
89
char GyroFaktor;
90
char IntegralFaktor;
91
int  DiffNick,DiffRoll;
92
int  Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0;
93
volatile unsigned char Motor_Vorne,Motor_Hinten,Motor_Rechts,Motor_Links;
94
volatile unsigned char Motor1, Motor2,Motor3,Motor4,Motor5,Motor6,Motor7,Motor8;
95
volatile unsigned char SenderOkay = 0;
96
int StickNick = 0,StickRoll = 0,StickGier = 0,StickGas = 0;
97
char MotorenEin = 0;
98
int HoehenWert = 0;
99
int SollHoehe = 0;
100
int LageKorrekturRoll = 0,LageKorrekturNick = 0;
101
//float Ki =  FAKTOR_I;
102
int Ki = 10300 / 33;
103
unsigned char Looping_Nick = 0,Looping_Roll = 0;
104
unsigned char Looping_Links = 0, Looping_Rechts = 0, Looping_Unten = 0, Looping_Oben = 0;
105
 
106
unsigned char Parameter_Luftdruck_D  = 48;      // Wert : 0-250
107
unsigned char Parameter_MaxHoehe     = 251;      // Wert : 0-250
108
unsigned char Parameter_Hoehe_P      = 16;      // Wert : 0-32
109
unsigned char Parameter_Hoehe_ACC_Wirkung = 58; // Wert : 0-250
110
unsigned char Parameter_KompassWirkung = 64;    // Wert : 0-250
111
unsigned char Parameter_Gyro_D = 8;             // Wert : 0-250
112
unsigned char Parameter_Gyro_P = 150;           // Wert : 10-250
113
unsigned char Parameter_Gyro_I = 150;           // Wert : 0-250
114
unsigned char Parameter_Gier_P = 2;             // Wert : 1-20
115
unsigned char Parameter_I_Faktor = 10;          // Wert : 1-20
116
unsigned char Parameter_UserParam1 = 0;
117
unsigned char Parameter_UserParam2 = 0;
118
unsigned char Parameter_UserParam3 = 0;
119
unsigned char Parameter_UserParam4 = 0;
120
unsigned char Parameter_UserParam5 = 0;
121
unsigned char Parameter_UserParam6 = 0;
122
unsigned char Parameter_UserParam7 = 0;
123
unsigned char Parameter_UserParam8 = 0;
124
unsigned char Parameter_ServoNickControl = 100;
125
unsigned char Parameter_LoopGasLimit = 70;
126
unsigned char Parameter_AchsKopplung1 = 90;
127
unsigned char Parameter_AchsKopplung2 = 65;
128
unsigned char Parameter_CouplingYawCorrection = 64;
129
//unsigned char Parameter_AchsGegenKopplung1 = 0;
130
unsigned char Parameter_DynamicStability = 100;
131
unsigned char Parameter_J16Bitmask;             // for the J16 Output
132
unsigned char Parameter_J16Timing;              // for the J16 Output
133
unsigned char Parameter_J17Bitmask;             // for the J17 Output
134
unsigned char Parameter_J17Timing;              // for the J17 Output
135
unsigned char Parameter_NaviGpsModeControl;     // Parameters for the Naviboard
136
unsigned char Parameter_NaviGpsGain;
137
unsigned char Parameter_NaviGpsP;
138
unsigned char Parameter_NaviGpsI;
139
unsigned char Parameter_NaviGpsD;
140
unsigned char Parameter_NaviGpsACC;
141
unsigned char Parameter_NaviOperatingRadius;
142
unsigned char Parameter_NaviWindCorrection;
143
unsigned char Parameter_NaviSpeedCompensation;
144
unsigned char Parameter_ExternalControl;
145
struct mk_param_struct EE_Parameter;
146
signed int ExternStickNick = 0,ExternStickRoll = 0,ExternStickGier = 0, ExternHoehenValue = -20;
147
int MaxStickNick = 0,MaxStickRoll = 0;
148
unsigned int  modell_fliegt = 0;
149
unsigned char MikroKopterFlags = 0;
150
long GIER_GRAD_FAKTOR = 1291;
151
signed int KopplungsteilNickRoll,KopplungsteilRollNick;
152
 
153
 
154
int MotorSmoothing(int neu, int alt)
155
{
156
 int motor;
157
 if(neu > alt) motor = (1*(int)alt + neu) / 2;
158
 else   motor = neu - (alt - neu)*1;
159
//if(Poti2 < 20)  return(neu);
160
 return(motor);
161
}
162
 
163
 
164
void Piep(unsigned char Anzahl)
165
{
166
 while(Anzahl--)
167
 {
168
  if(MotorenEin) return; //auf keinen Fall im Flug!
169
  beeptime = 100;
170
  Delay_ms(250);
171
 }
172
}
173
 
174
//############################################################################
175
//  Nullwerte ermitteln
176
void SetNeutral(void)
177
//############################################################################
178
{
179
 unsigned char i;
180
 unsigned int gier_neutral=0, nick_neutral=0, roll_neutral=0;
181
    ServoActive = 0; HEF4017R_ON;
182
        NeutralAccX = 0;
183
        NeutralAccY = 0;
184
        NeutralAccZ = 0;
185
    AdNeutralNick = 0;
186
        AdNeutralRoll = 0;
187
        AdNeutralGier = 0;
188
    AdNeutralGierBias = 0;
189
    Parameter_AchsKopplung1 = 0;
190
    Parameter_AchsKopplung2 = 0;
191
    ExpandBaro = 0;
192
    CalibrierMittelwert();
193
    Delay_ms_Mess(100);
194
        CalibrierMittelwert();
195
    if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
196
     {
197
      if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
198
     }
199
#define NEUTRAL_FILTER 32
200
    for(i=0; i<NEUTRAL_FILTER; i++)
201
         {
202
          Delay_ms_Mess(10);
203
          gier_neutral += AdWertGier;
204
          nick_neutral += AdWertNick;
205
          roll_neutral += AdWertRoll;
206
         }
207
     AdNeutralNick= (nick_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER / 8);
208
         AdNeutralRoll= (roll_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER / 8);
209
         AdNeutralGier= (gier_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER);
210
     AdNeutralGierBias = AdNeutralGier;
211
     StartNeutralRoll = AdNeutralRoll;
212
     StartNeutralNick = AdNeutralNick;
213
    if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) > 4)
214
    {
215
      NeutralAccY = abs(Mittelwert_AccRoll) / (2*ACC_AMPLIFY);
216
          NeutralAccX = abs(Mittelwert_AccNick) / (2*ACC_AMPLIFY);
217
          NeutralAccZ = Aktuell_az;
218
    }
219
    else
220
    {
221
      NeutralAccX = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1]);
222
          NeutralAccY = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1]);
223
          NeutralAccZ = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1]);
224
    }
225
 
226
    MesswertNick = 0;
227
    MesswertRoll = 0;
228
    MesswertGier = 0;
229
    Delay_ms_Mess(100);
230
    Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
231
    Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
232
    IntegralNick = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccNick;
233
    IntegralRoll = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccRoll;
234
    Mess_IntegralNick2 = IntegralNick;
235
    Mess_IntegralRoll2 = IntegralRoll;
236
    Mess_Integral_Gier = 0;
237
    StartLuftdruck = Luftdruck;
238
    HoeheD = 0;
239
    Mess_Integral_Hoch = 0;
240
    KompassStartwert = KompassValue;
241
    GPS_Neutral();
242
    beeptime = 50;
243
        Umschlag180Nick = ((long) EE_Parameter.WinkelUmschlagNick * 2500L) + 15000L;
244
        Umschlag180Roll = ((long) EE_Parameter.WinkelUmschlagRoll * 2500L) + 15000L;
245
    ExternHoehenValue = 0;
246
    ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
247
    GierGyroFehler = 0;
248
    SendVersionToNavi = 1;
249
    LED_Init();
250
    MikroKopterFlags |= FLAG_CALIBRATE;
251
    FromNaviCtrl_Value.Kalman_K = -1;
252
    FromNaviCtrl_Value.Kalman_MaxDrift = 0;
253
    FromNaviCtrl_Value.Kalman_MaxFusion = 32;
254
    Poti1 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110;
255
    Poti2 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110;
256
    Poti3 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110;
257
    Poti4 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110;
258
    ServoActive = 1;   
259
    SenderOkay = 100;
260
}
261
 
262
//############################################################################
263
// Bearbeitet die Messwerte
264
void Mittelwert(void)
265
//############################################################################
266
{
267
    static signed long tmpl,tmpl2,tmpl3,tmpl4;
268
        static signed int oldNick, oldRoll, d2Roll, d2Nick;
269
        signed long winkel_nick, winkel_roll;
270
 
271
        MesswertGier = (signed int) AdNeutralGier - AdWertGier;
272
//    MesswertGierBias = (signed int) AdNeutralGierBias - AdWertGier;
273
    MesswertNick = (signed int) AdWertNickFilter / 8;
274
    MesswertRoll = (signed int) AdWertRollFilter / 8;
275
    RohMesswertNick = MesswertNick;
276
    RohMesswertRoll = MesswertRoll;
277
//DebugOut.Analog[21] = MesswertNick;
278
//DebugOut.Analog[22] = MesswertRoll;
279
//DebugOut.Analog[22] = Mess_Integral_Gier;
280
//DebugOut.Analog[21] = MesswertNick;  
281
//DebugOut.Analog[22] = MesswertRoll; 
282
 
283
// Beschleunigungssensor  ++++++++++++++++++++++++++++++++++++++++++++++++
284
        Mittelwert_AccNick = ((long)Mittelwert_AccNick * 3 + ((ACC_AMPLIFY * (long)AdWertAccNick))) / 4L;
285
        Mittelwert_AccRoll = ((long)Mittelwert_AccRoll * 3 + ((ACC_AMPLIFY * (long)AdWertAccRoll))) / 4L;
286
        Mittelwert_AccHoch = ((long)Mittelwert_AccHoch * 3 + ((long)AdWertAccHoch)) / 4L;
287
    IntegralAccNick += ACC_AMPLIFY * AdWertAccNick;
288
    IntegralAccRoll += ACC_AMPLIFY * AdWertAccRoll;
289
    NaviAccNick    += AdWertAccNick;
290
    NaviAccRoll    += AdWertAccRoll;
291
    NaviCntAcc++;
292
    IntegralAccZ  += Aktuell_az - NeutralAccZ;
293
 
294
//++++++++++++++++++++++++++++++++++++++++++++++++
295
// ADC einschalten
296
    ANALOG_ON;
297
        AdReady = 0;
298
//++++++++++++++++++++++++++++++++++++++++++++++++
299
 
300
    if(Mess_IntegralRoll > 93000L) winkel_roll = 93000L;
301
        else if(Mess_IntegralRoll <-93000L) winkel_roll = -93000L;
302
        else winkel_roll = Mess_IntegralRoll;
303
 
304
    if(Mess_IntegralNick > 93000L) winkel_nick = 93000L;
305
        else if(Mess_IntegralNick <-93000L) winkel_nick = -93000L;
306
        else winkel_nick = Mess_IntegralNick;
307
 
308
// Gier  ++++++++++++++++++++++++++++++++++++++++++++++++
309
   Mess_Integral_Gier += MesswertGier;
310
   ErsatzKompass += MesswertGier;
311
// Kopplungsanteil  +++++++++++++++++++++++++++++++++++++
312
      if(!Looping_Nick && !Looping_Roll && (EE_Parameter.GlobalConfig & CFG_ACHSENKOPPLUNG_AKTIV))
313
         {
314
            tmpl3 = (MesswertRoll * winkel_nick) / 2048L;
315
            tmpl3 *= Parameter_AchsKopplung2; //65
316
            tmpl3 /= 4096L;
317
            tmpl4 = (MesswertNick * winkel_roll) / 2048L;
318
            tmpl4 *= Parameter_AchsKopplung2; //65  
319
            tmpl4 /= 4096L;
320
            KopplungsteilNickRoll = tmpl3;
321
            KopplungsteilRollNick = tmpl4;
322
            tmpl4 -= tmpl3;
323
            ErsatzKompass += tmpl4;
324
            if(!Parameter_CouplingYawCorrection) Mess_Integral_Gier -= tmpl4/2; // Gier nachhelfen
325
 
326
            tmpl = ((MesswertGier + tmpl4) * winkel_nick) / 2048L;
327
            tmpl *= Parameter_AchsKopplung1;  // 90
328
            tmpl /= 4096L;
329
            tmpl2 = ((MesswertGier + tmpl4) * winkel_roll) / 2048L;
330
            tmpl2 *= Parameter_AchsKopplung1;
331
            tmpl2 /= 4096L;
332
            if(labs(tmpl) > 128 || labs(tmpl2) > 128 /* || abs(KopplungsteilNickRoll) > 128 || abs(KopplungsteilRollNick) > 128)*/) TrichterFlug = 1;
333
            //MesswertGier += (Parameter_CouplingYawCorrection * tmpl4) / 256;
334
         }
335
      else  tmpl = tmpl2 = KopplungsteilNickRoll = KopplungsteilRollNick = 0;
336
 
337
TrimRoll = tmpl - tmpl2 / 100L;
338
TrimNick = -tmpl2 + tmpl / 100L;
339
 
340
// Kompasswert begrenzen  ++++++++++++++++++++++++++++++++++++++++++++++++
341
                    if(ErsatzKompass >= (360L * GIER_GRAD_FAKTOR)) ErsatzKompass -= 360L * GIER_GRAD_FAKTOR;  // 360° Umschlag
342
                    if(ErsatzKompass < 0)                          ErsatzKompass += 360L * GIER_GRAD_FAKTOR;
343
// Roll  ++++++++++++++++++++++++++++++++++++++++++++++++
344
            Mess_IntegralRoll2 += MesswertRoll + TrimRoll;
345
            Mess_IntegralRoll +=  MesswertRoll + TrimRoll - LageKorrekturRoll;
346
            if(Mess_IntegralRoll > Umschlag180Roll)
347
            {
348
             Mess_IntegralRoll  = -(Umschlag180Roll - 25000L);
349
             Mess_IntegralRoll2 = Mess_IntegralRoll;
350
            }
351
            if(Mess_IntegralRoll <-Umschlag180Roll)
352
            {
353
             Mess_IntegralRoll =  (Umschlag180Roll - 25000L);
354
             Mess_IntegralRoll2 = Mess_IntegralRoll;
355
            }
356
// Nick  ++++++++++++++++++++++++++++++++++++++++++++++++
357
            Mess_IntegralNick2 += MesswertNick + TrimNick;
358
            Mess_IntegralNick  += MesswertNick + TrimNick - LageKorrekturNick;
359
            if(Mess_IntegralNick > Umschlag180Nick)
360
             {
361
              Mess_IntegralNick = -(Umschlag180Nick - 25000L);
362
              Mess_IntegralNick2 = Mess_IntegralNick;
363
             }
364
            if(Mess_IntegralNick <-Umschlag180Nick)
365
            {
366
             Mess_IntegralNick =  (Umschlag180Nick - 25000L);
367
             Mess_IntegralNick2 = Mess_IntegralNick;
368
            }
369
 
370
    Integral_Gier  = Mess_Integral_Gier;
371
    IntegralNick = Mess_IntegralNick;
372
    IntegralRoll = Mess_IntegralRoll;
373
    IntegralNick2 = Mess_IntegralNick2;
374
    IntegralRoll2 = Mess_IntegralRoll2;
375
 
376
#define D_LIMIT 128
377
 
378
   MesswertNick = HiResNick / 8;
379
   MesswertRoll = HiResRoll / 8;
380
 
381
   if(AdWertNick < 15)   MesswertNick = -1000;  if(AdWertNick <  7)   MesswertNick = -2000;
382
   if(PlatinenVersion == 10)  { if(AdWertNick > 1010) MesswertNick = +1000;  if(AdWertNick > 1017) MesswertNick = +2000; }
383
   else  {  if(AdWertNick > 2000) MesswertNick = +1000;  if(AdWertNick > 2015) MesswertNick = +2000; }
384
   if(AdWertRoll < 15)   MesswertRoll = -1000;  if(AdWertRoll <  7)   MesswertRoll = -2000;
385
   if(PlatinenVersion == 10) { if(AdWertRoll > 1010) MesswertRoll = +1000;  if(AdWertRoll > 1017) MesswertRoll = +2000; }
386
   else { if(AdWertRoll > 2000) MesswertRoll = +1000;  if(AdWertRoll > 2015) MesswertRoll = +2000;  }
387
 
388
  if(Parameter_Gyro_D)
389
  {
390
   d2Nick = HiResNick - oldNick;
391
   oldNick = (oldNick + HiResNick)/2;
392
   if(d2Nick > D_LIMIT) d2Nick = D_LIMIT;
393
   else if(d2Nick < -D_LIMIT) d2Nick = -D_LIMIT;
394
   MesswertNick += (d2Nick * (signed int) Parameter_Gyro_D) / 16;
395
   d2Roll = HiResRoll - oldRoll;
396
   oldRoll = (oldRoll + HiResRoll)/2;
397
   if(d2Roll > D_LIMIT) d2Roll = D_LIMIT;
398
   else if(d2Roll < -D_LIMIT) d2Roll = -D_LIMIT;
399
   MesswertRoll += (d2Roll * (signed int) Parameter_Gyro_D) / 16;
400
   HiResNick += (d2Nick * (signed int) Parameter_Gyro_D);
401
   HiResRoll += (d2Roll * (signed int) Parameter_Gyro_D);
402
  }
403
 
404
 if(RohMesswertRoll > 0) TrimRoll  += ((long) abs(KopplungsteilNickRoll) * Parameter_CouplingYawCorrection) / 64L;
405
 else                    TrimRoll -= ((long) abs(KopplungsteilNickRoll) * Parameter_CouplingYawCorrection) / 64L;
406
 if(RohMesswertNick > 0) TrimNick += ((long) abs(KopplungsteilRollNick) * Parameter_CouplingYawCorrection) / 64L;
407
 else                    TrimNick -= ((long) abs(KopplungsteilRollNick) * Parameter_CouplingYawCorrection) / 64L;
408
 
409
  if(EE_Parameter.GlobalConfig & CFG_DREHRATEN_BEGRENZER && !Looping_Nick && !Looping_Roll)
410
  {
411
    if(RohMesswertNick > 256)       MesswertNick += 1 * (RohMesswertNick - 256);
412
    else if(RohMesswertNick < -256) MesswertNick += 1 * (RohMesswertNick + 256);
413
    if(RohMesswertRoll > 256)       MesswertRoll += 1 * (RohMesswertRoll - 256);
414
    else if(RohMesswertRoll < -256) MesswertRoll += 1 * (RohMesswertRoll + 256);
415
  }
416
 
417
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
418
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
419
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
420
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
421
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
422
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
423
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
424
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
425
}
426
 
427
//############################################################################
428
// Messwerte beim Ermitteln der Nullage
429
void CalibrierMittelwert(void)
430
//############################################################################
431
{
432
    if(PlatinenVersion == 13) SucheGyroOffset();
433
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
434
        ANALOG_OFF;
435
        MesswertNick = AdWertNick;
436
        MesswertRoll = AdWertRoll;
437
        MesswertGier = AdWertGier;
438
        Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
439
        Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
440
        Mittelwert_AccHoch = (long)AdWertAccHoch;
441
   // ADC einschalten
442
    ANALOG_ON;
443
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
444
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
445
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
446
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
447
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
448
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
449
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
450
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
451
 
452
        Umschlag180Nick = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
453
        Umschlag180Roll = (long) EE_Parameter.WinkelUmschlagRoll * 2500L;
454
}
455
 
456
//############################################################################
457
// Senden der Motorwerte per I2C-Bus
458
void SendMotorData(void)
459
//############################################################################
460
{
461
    if(!MotorenEin)
462
        {
463
#if defined(OCTO) || defined(OCTO2) || defined (OCTO3)
464
                Motor1 = 0;Motor2 = 0;Motor3 = 0;Motor4 = 0;Motor5 = 0;Motor6 = 0;Motor7 = 0;Motor8 = 0;
465
        if(MotorTest[0]) {Motor1 = MotorTest[0]; Motor2 = MotorTest[0];}
466
        if(MotorTest[3]) {Motor3 = MotorTest[3]; Motor4 = MotorTest[3];}
467
        if(MotorTest[1]) {Motor5 = MotorTest[1]; Motor6 = MotorTest[1];}
468
        if(MotorTest[2]) {Motor7 = MotorTest[2]; Motor8 = MotorTest[2];}
469
#endif
470
#ifdef QUADRO 
471
        Motor_Hinten = 0; Motor_Vorne = 0; Motor_Rechts = 0; Motor_Links = 0;
472
        if(MotorTest[0]) Motor_Vorne = MotorTest[0];
473
        if(MotorTest[1]) Motor_Hinten = MotorTest[1];
474
        if(MotorTest[2]) Motor_Links = MotorTest[2];
475
        if(MotorTest[3]) Motor_Rechts = MotorTest[3];
476
#endif
477
#if defined(HEXA1) || defined(HEXA2) 
478
                Motor1 = 0;Motor2 = 0;Motor3 = 0;Motor4 = 0;Motor5 = 0;Motor6 = 0;
479
        if(MotorTest[0]) {Motor1 = MotorTest[0]; Motor3 = MotorTest[0];}
480
        if(MotorTest[3]) {Motor5 = MotorTest[3];}
481
        if(MotorTest[1]) {Motor2 = MotorTest[1]; Motor4 = MotorTest[1];}
482
        if(MotorTest[2]) {Motor6 = MotorTest[2];}
483
#endif
484
        MikroKopterFlags &= ~(FLAG_MOTOR_RUN | FLAG_FLY);
485
        } else MikroKopterFlags |= FLAG_MOTOR_RUN;
486
 
487
    DebugOut.Analog[12] = Motor_Vorne;
488
    DebugOut.Analog[13] = Motor_Hinten;
489
    DebugOut.Analog[14] = Motor_Links;
490
    DebugOut.Analog[15] = Motor_Rechts;
491
 
492
    //Start I2C Interrupt Mode
493
    twi_state = 0;
494
    motor = 0;
495
    i2c_start();
496
}
497
 
498
 
499
 
500
//############################################################################
501
// Trägt ggf. das Poti als Parameter ein
502
void ParameterZuordnung(void)
503
//############################################################################
504
{
505
 #define CHK_POTI_MM(b,a,min,max) { if(a > 250) { if(a == 251) b = Poti1; else if(a == 252) b = Poti2; else if(a == 253) b = Poti3; else if(a == 254) b = Poti4;} else b = a; if(b <= min) b = min; else if(b >= max) b = max;}
506
 #define CHK_POTI(b,a,min,max) { if(a > 250) { if(a == 251) b = Poti1; else if(a == 252) b = Poti2; else if(a == 253) b = Poti3; else if(a == 254) b = Poti4;} else b = a; }
507
 CHK_POTI(Parameter_MaxHoehe,EE_Parameter.MaxHoehe,0,255);
508
 CHK_POTI_MM(Parameter_Luftdruck_D,EE_Parameter.Luftdruck_D,0,100);
509
 CHK_POTI_MM(Parameter_Hoehe_P,EE_Parameter.Hoehe_P,0,100);
510
 CHK_POTI(Parameter_Hoehe_ACC_Wirkung,EE_Parameter.Hoehe_ACC_Wirkung,0,255);
511
 CHK_POTI(Parameter_KompassWirkung,EE_Parameter.KompassWirkung,0,255);
512
 CHK_POTI_MM(Parameter_Gyro_P,EE_Parameter.Gyro_P,10,255);
513
 CHK_POTI(Parameter_Gyro_I,EE_Parameter.Gyro_I,0,255);
514
 CHK_POTI(Parameter_Gyro_D,EE_Parameter.Gyro_D,0,255);
515
 CHK_POTI(Parameter_I_Faktor,EE_Parameter.I_Faktor,0,255);
516
 CHK_POTI(Parameter_UserParam1,EE_Parameter.UserParam1,0,255);
517
 CHK_POTI(Parameter_UserParam2,EE_Parameter.UserParam2,0,255);
518
 CHK_POTI(Parameter_UserParam3,EE_Parameter.UserParam3,0,255);
519
 CHK_POTI(Parameter_UserParam4,EE_Parameter.UserParam4,0,255);
520
 CHK_POTI(Parameter_UserParam5,EE_Parameter.UserParam5,0,255);
521
 CHK_POTI(Parameter_UserParam6,EE_Parameter.UserParam6,0,255);
522
 CHK_POTI(Parameter_UserParam7,EE_Parameter.UserParam7,0,255);
523
 CHK_POTI(Parameter_UserParam8,EE_Parameter.UserParam8,0,255);
524
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
525
 CHK_POTI(Parameter_LoopGasLimit,EE_Parameter.LoopGasLimit,0,255);
526
 CHK_POTI(Parameter_AchsKopplung1,    EE_Parameter.AchsKopplung1,0,255);
527
 CHK_POTI(Parameter_AchsKopplung2,    EE_Parameter.AchsKopplung2,0,255);
528
 CHK_POTI(Parameter_CouplingYawCorrection,EE_Parameter.CouplingYawCorrection,0,255);
529
// CHK_POTI(Parameter_AchsGegenKopplung1,EE_Parameter.AchsGegenKopplung1,0,255);
530
 CHK_POTI(Parameter_DynamicStability,EE_Parameter.DynamicStability,0,255);
531
 CHK_POTI_MM(Parameter_J16Timing,EE_Parameter.J16Timing,1,255);
532
 CHK_POTI_MM(Parameter_J17Timing,EE_Parameter.J17Timing,1,255);
533
 CHK_POTI(Parameter_ExternalControl,EE_Parameter.ExternalControl,0,255);
534
 Ki = 10300 / (Parameter_I_Faktor + 1);
535
 MAX_GAS = EE_Parameter.Gas_Max;
536
 MIN_GAS = EE_Parameter.Gas_Min;
537
}
538
 
539
 
540
 
541
//############################################################################
542
//
543
void MotorRegler(void)
544
//############################################################################
545
{
546
         int motorwert,pd_ergebnis_nick,pd_ergebnis_roll,h,tmp_int;
547
         int GierMischanteil,GasMischanteil;
548
     static long SummeNick=0,SummeRoll=0;
549
     static long sollGier = 0,tmp_long,tmp_long2;
550
     static long IntegralFehlerNick = 0;
551
     static long IntegralFehlerRoll = 0;
552
         static unsigned int RcLostTimer;
553
         static unsigned char delay_neutral = 0;
554
         static unsigned char delay_einschalten = 0,delay_ausschalten = 0;
555
     static int hoehenregler = 0;
556
         static int motorwert1,motorwert2,motorwert3,motorwert4,motorwert5,motorwert6,motorwert7,motorwert8;
557
     static char TimerWerteausgabe = 0;
558
     static char NeueKompassRichtungMerken = 0;
559
     static long ausgleichNick, ausgleichRoll;
560
     int IntegralNickMalFaktor,IntegralRollMalFaktor;
561
        Mittelwert();
562
 
563
    GRN_ON;
564
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
565
// Gaswert ermitteln
566
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
567
        GasMischanteil = StickGas;
568
    if(GasMischanteil < MIN_GAS + 10) GasMischanteil = MIN_GAS + 10;
569
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
570
// Empfang schlecht
571
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
572
   if(SenderOkay < 100)
573
        {
574
        if(!PcZugriff)
575
         {
576
           if(BeepMuster == 0xffff)
577
            {
578
             beeptime = 15000;
579
             BeepMuster = 0x0c00;
580
            }
581
         }
582
        if(RcLostTimer) RcLostTimer--;
583
        else
584
         {
585
          MotorenEin = 0;
586
          Notlandung = 0;
587
         }
588
        ROT_ON;
589
        if(modell_fliegt > 1000)  // wahrscheinlich in der Luft --> langsam absenken
590
            {
591
            GasMischanteil = EE_Parameter.NotGas;
592
            Notlandung = 1;
593
            PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
594
            PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
595
            PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
596
            PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
597
            PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] = 0;
598
            }
599
         else MotorenEin = 0;
600
        }
601
        else
602
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
603
// Emfang gut
604
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
605
        if(SenderOkay > 140)
606
            {
607
            Notlandung = 0;
608
            RcLostTimer = EE_Parameter.NotGasZeit * 50;
609
            if(GasMischanteil > 40 && MotorenEin)
610
                {
611
                if(modell_fliegt < 0xffff) modell_fliegt++;
612
                }
613
            if((modell_fliegt < 256))
614
                {
615
                SummeNick = 0;
616
                SummeRoll = 0;
617
                if(modell_fliegt == 250)
618
                 {
619
                  NeueKompassRichtungMerken = 1;
620
                  sollGier = 0;
621
                  Mess_Integral_Gier = 0;
622
//                  Mess_Integral_Gier2 = 0;
623
                 }
624
                } else MikroKopterFlags |= FLAG_FLY;
625
 
626
            if((PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] > 80) && MotorenEin == 0)
627
                {
628
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
629
// auf Nullwerte kalibrieren
630
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
631
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)  // Neutralwerte
632
                    {
633
                    if(++delay_neutral > 200)  // nicht sofort
634
                        {
635
                        GRN_OFF;
636
                        MotorenEin = 0;
637
                        delay_neutral = 0;
638
                        modell_fliegt = 0;
639
                        if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70 || abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) > 70)
640
                        {
641
                         unsigned char setting=1;
642
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 1;
643
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 2;
644
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 3;
645
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 4;
646
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 5;
647
                         SetActiveParamSetNumber(setting);  // aktiven Datensatz merken
648
                        }
649
//                        else
650
                         if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) < 30 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -70)
651
                          {
652
                           WinkelOut.CalcState = 1;
653
                           beeptime = 1000;
654
                          }
655
                          else
656
                          {
657
                               ReadParameterSet(GetActiveParamSetNumber(), (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE);
658
                           if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
659
                            {
660
                             if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
661
                            }
662
                           SetNeutral();
663
                           Piep(GetActiveParamSetNumber());
664
                         }
665
                        }
666
                    }
667
                 else
668
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)  // ACC Neutralwerte speichern
669
                    {
670
                    if(++delay_neutral > 200)  // nicht sofort
671
                        {
672
                        GRN_OFF;
673
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],0xff); // Werte löschen
674
                        MotorenEin = 0;
675
                        delay_neutral = 0;
676
                        modell_fliegt = 0;
677
                        SetNeutral();
678
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],NeutralAccX / 256); // ACC-NeutralWerte speichern
679
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1],NeutralAccX % 256); // ACC-NeutralWerte speichern
680
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL],NeutralAccY / 256);
681
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1],NeutralAccY % 256);
682
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z],(int)NeutralAccZ / 256);
683
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1],(int)NeutralAccZ % 256);
684
                        Piep(GetActiveParamSetNumber());
685
                        }
686
                    }
687
                 else delay_neutral = 0;
688
                }
689
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
690
// Gas ist unten
691
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
692
            if(PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] < 35-120)
693
                {
694
                // Starten
695
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)
696
                    {
697
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
698
// Einschalten
699
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
700
                    if(++delay_einschalten > 200)
701
                        {
702
                        delay_einschalten = 200;
703
                        modell_fliegt = 1;
704
                        MotorenEin = 1;
705
                        sollGier = 0;
706
                        Mess_Integral_Gier = 0;
707
                        Mess_Integral_Gier2 = 0;
708
                        Mess_IntegralNick = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccNick;
709
                        Mess_IntegralRoll = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccRoll;
710
                        Mess_IntegralNick2 = IntegralNick;
711
                        Mess_IntegralRoll2 = IntegralRoll;
712
                        SummeNick = 0;
713
                        SummeRoll = 0;
714
                        MikroKopterFlags |= FLAG_START;
715
                        }
716
                    }
717
                    else delay_einschalten = 0;
718
                //Auf Neutralwerte setzen
719
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
720
// Auschalten
721
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
722
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)
723
                    {
724
                    if(++delay_ausschalten > 200)  // nicht sofort
725
                        {
726
                        MotorenEin = 0;
727
                        delay_ausschalten = 200;
728
                        modell_fliegt = 0;
729
                        }
730
                    }
731
                else delay_ausschalten = 0;
732
                }
733
            }
734
 
735
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
736
// neue Werte von der Funke
737
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
738
 
739
 if(!NewPpmData-- || Notlandung)
740
  {
741
    int tmp_int;
742
        static int stick_nick,stick_roll;
743
    ParameterZuordnung();
744
    stick_nick = (stick_nick * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_P) / 4;
745
    stick_nick += PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_D;
746
    StickNick = stick_nick - (GPS_Nick + GPS_Nick2);
747
 
748
    stick_roll = (stick_roll * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_P) / 4;
749
    stick_roll += PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_D;
750
    StickRoll = stick_roll - (GPS_Roll + GPS_Roll2);
751
 
752
    StickGier = -PPM_in[EE_Parameter.Kanalbelegung[K_GIER]];
753
        if(StickGier > 2) StickGier -= 2;       else
754
        if(StickGier < -2) StickGier += 2; else StickGier = 0;
755
 
756
        StickGas  = PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] + 120;
757
 
758
/*   if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]]) > MaxStickNick)
759
     MaxStickNick = abs(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]]); else MaxStickNick--;
760
   if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) > MaxStickRoll)
761
     MaxStickRoll = abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]); else MaxStickRoll--;
762
*/
763
//    GyroFaktor     = ((float)Parameter_Gyro_P + 10.0) / (256.0/STICK_GAIN);
764
    GyroFaktor     = (Parameter_Gyro_P + 10.0);
765
//    IntegralFaktor = ((float) Parameter_Gyro_I) / (44000 / STICK_GAIN);
766
    IntegralFaktor = Parameter_Gyro_I;
767
 
768
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
769
//+ Analoge Steuerung per Seriell
770
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
771
   if(ExternControl.Config & 0x01 && Parameter_ExternalControl > 128)
772
    {
773
         StickNick += (int) ExternControl.Nick * (int) EE_Parameter.Stick_P;
774
         StickRoll += (int) ExternControl.Roll * (int) EE_Parameter.Stick_P;
775
         StickGier += ExternControl.Gier;
776
     ExternHoehenValue =  (int) ExternControl.Hight * (int)EE_Parameter.Hoehe_Verstaerkung;
777
     if(ExternControl.Gas < StickGas) StickGas = ExternControl.Gas;
778
    }
779
    if(StickGas < 0) StickGas = 0;
780
 
781
    if(EE_Parameter.GlobalConfig & CFG_HEADING_HOLD) IntegralFaktor =  0;
782
    if(GyroFaktor < 0) GyroFaktor = 0;
783
    if(IntegralFaktor < 0) IntegralFaktor = 0;
784
 
785
    if(abs(StickNick/STICK_GAIN) > MaxStickNick)
786
     {
787
      MaxStickNick = abs(StickNick)/STICK_GAIN;
788
      if(MaxStickNick > 100) MaxStickNick = 100;
789
     }
790
     else MaxStickNick--;
791
    if(abs(StickRoll/STICK_GAIN) > MaxStickRoll)
792
     {
793
      MaxStickRoll = abs(StickRoll)/STICK_GAIN;
794
      if(MaxStickRoll > 100) MaxStickRoll = 100;
795
     }
796
     else MaxStickRoll--;
797
    if(Notlandung)  {MaxStickNick = 0; MaxStickRoll = 0;}
798
 
799
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
800
// Looping?
801
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
802
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_LINKS)  Looping_Links = 1;
803
  else
804
   {
805
     {
806
      if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Links = 0;
807
     }
808
   }
809
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < -EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_RECHTS) Looping_Rechts = 1;
810
   else
811
   {
812
   if(Looping_Rechts) // Hysterese
813
     {
814
      if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Rechts = 0;
815
     }
816
   }
817
 
818
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_OBEN) Looping_Oben = 1;
819
  else
820
   {
821
    if(Looping_Oben)  // Hysterese
822
     {
823
      if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Oben = 0;
824
     }
825
   }
826
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_UNTEN) Looping_Unten = 1;
827
   else
828
   {
829
    if(Looping_Unten) // Hysterese
830
     {
831
      if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Unten = 0;
832
     }
833
   }
834
 
835
   if(Looping_Links || Looping_Rechts)   Looping_Roll = 1; else Looping_Roll = 0;
836
   if(Looping_Oben  || Looping_Unten) {  Looping_Nick = 1; Looping_Roll = 0; Looping_Links = 0; Looping_Rechts = 0;} else Looping_Nick = 0;
837
  } // Ende neue Funken-Werte
838
 
839
  if(Looping_Roll || Looping_Nick)
840
   {
841
    if(GasMischanteil > EE_Parameter.LoopGasLimit) GasMischanteil = EE_Parameter.LoopGasLimit;
842
        TrichterFlug = 1;
843
   }
844
 
845
 
846
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
847
// Bei Empfangsausfall im Flug
848
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
849
   if(Notlandung)
850
    {
851
     StickGier = 0;
852
     StickNick = 0;
853
     StickRoll = 0;
854
     GyroFaktor     = 90;//(float) 100 / (256.0 / STICK_GAIN);
855
     IntegralFaktor = 120;//(float) 120 / (44000 / STICK_GAIN);
856
     Looping_Roll = 0;
857
     Looping_Nick = 0;
858
    }
859
 
860
 
861
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
862
// Integrale auf ACC-Signal abgleichen
863
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
864
#define ABGLEICH_ANZAHL 256L
865
 
866
 MittelIntegralNick  += IntegralNick;    // Für die Mittelwertbildung aufsummieren
867
 MittelIntegralRoll  += IntegralRoll;
868
 MittelIntegralNick2 += IntegralNick2;
869
 MittelIntegralRoll2 += IntegralRoll2;
870
 
871
 if(Looping_Nick || Looping_Roll)
872
  {
873
    IntegralAccNick = 0;
874
    IntegralAccRoll = 0;
875
    MittelIntegralNick = 0;
876
    MittelIntegralRoll = 0;
877
    MittelIntegralNick2 = 0;
878
    MittelIntegralRoll2 = 0;
879
    Mess_IntegralNick2 = Mess_IntegralNick;
880
    Mess_IntegralRoll2 = Mess_IntegralRoll;
881
    ZaehlMessungen = 0;
882
    LageKorrekturNick = 0;
883
    LageKorrekturRoll = 0;
884
  }
885
 
886
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
887
  if(!Looping_Nick && !Looping_Roll && Aktuell_az > 512)
888
  {
889
   long tmp_long, tmp_long2;
890
   if(FromNaviCtrl_Value.Kalman_K != -1 /*&& !TrichterFlug*/)
891
     {
892
      tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
893
      tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
894
      tmp_long  = (tmp_long  * FromNaviCtrl_Value.Kalman_K) / (32 * 16);
895
      tmp_long2 = (tmp_long2 * FromNaviCtrl_Value.Kalman_K) / (32 * 16);
896
     if((MaxStickNick > 64) || (MaxStickRoll > 64))
897
      {
898
      tmp_long  /= 2;
899
      tmp_long2 /= 2;
900
      }
901
     if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)
902
      {
903
      tmp_long  /= 3;
904
      tmp_long2 /= 3;
905
      }
906
      if(tmp_long >  (long) FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long  = (long) FromNaviCtrl_Value.Kalman_MaxFusion;
907
      if(tmp_long <  (long)-FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long  = (long)-FromNaviCtrl_Value.Kalman_MaxFusion;
908
      if(tmp_long2 > (long) FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long2 = (long) FromNaviCtrl_Value.Kalman_MaxFusion;
909
      if(tmp_long2 < (long)-FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long2 = (long)-FromNaviCtrl_Value.Kalman_MaxFusion;
910
     }
911
     else
912
     {
913
      tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
914
      tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
915
      tmp_long /= 16;
916
      tmp_long2 /= 16;
917
     if((MaxStickNick > 64) || (MaxStickRoll > 64))
918
      {
919
      tmp_long  /= 3;
920
      tmp_long2 /= 3;
921
      }
922
     if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)
923
      {
924
      tmp_long  /= 3;
925
      tmp_long2 /= 3;
926
      }
927
 
928
#define AUSGLEICH  32
929
      if(tmp_long >  AUSGLEICH)  tmp_long  = AUSGLEICH;
930
      if(tmp_long < -AUSGLEICH)  tmp_long  =-AUSGLEICH;
931
      if(tmp_long2 > AUSGLEICH)  tmp_long2 = AUSGLEICH;
932
      if(tmp_long2 <-AUSGLEICH)  tmp_long2 =-AUSGLEICH;
933
     }
934
 
935
//if(Poti2 > 20) { tmp_long = 0; tmp_long2 = 0;}
936
   Mess_IntegralNick -= tmp_long;
937
   Mess_IntegralRoll -= tmp_long2;
938
  }
939
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
940
 if(ZaehlMessungen >= ABGLEICH_ANZAHL)
941
 {
942
  static int cnt = 0;
943
  static char last_n_p,last_n_n,last_r_p,last_r_n;
944
  static long MittelIntegralNick_Alt,MittelIntegralRoll_Alt;
945
  if(!Looping_Nick && !Looping_Roll && !TrichterFlug && EE_Parameter.Driftkomp)
946
  {
947
    MittelIntegralNick  /= ABGLEICH_ANZAHL;
948
    MittelIntegralRoll  /= ABGLEICH_ANZAHL;
949
        IntegralAccNick = (EE_Parameter.GyroAccFaktor * IntegralAccNick) / ABGLEICH_ANZAHL;
950
        IntegralAccRoll = (EE_Parameter.GyroAccFaktor * IntegralAccRoll) / ABGLEICH_ANZAHL;
951
    IntegralAccZ    = IntegralAccZ / ABGLEICH_ANZAHL;
952
#define MAX_I 0//(Poti2/10)
953
// Nick ++++++++++++++++++++++++++++++++++++++++++++++++
954
    IntegralFehlerNick = (long)(MittelIntegralNick - (long)IntegralAccNick);
955
    ausgleichNick = IntegralFehlerNick / EE_Parameter.GyroAccAbgleich;
956
// Roll ++++++++++++++++++++++++++++++++++++++++++++++++
957
    IntegralFehlerRoll = (long)(MittelIntegralRoll - (long)IntegralAccRoll);
958
    ausgleichRoll = IntegralFehlerRoll / EE_Parameter.GyroAccAbgleich;
959
 
960
    LageKorrekturNick = ausgleichNick / ABGLEICH_ANZAHL;
961
    LageKorrekturRoll = ausgleichRoll / ABGLEICH_ANZAHL;
962
 
963
   if(((MaxStickNick > 64) || (MaxStickRoll > 64) || (abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)) && (FromNaviCtrl_Value.Kalman_K == -1))
964
    {
965
     LageKorrekturNick /= 2;
966
     LageKorrekturRoll /= 2;
967
    }
968
 
969
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
970
// Gyro-Drift ermitteln
971
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
972
    MittelIntegralNick2 /= ABGLEICH_ANZAHL;
973
    MittelIntegralRoll2 /= ABGLEICH_ANZAHL;
974
    tmp_long  = IntegralNick2 - IntegralNick;
975
    tmp_long2 = IntegralRoll2 - IntegralRoll;
976
    //DebugOut.Analog[25] = MittelIntegralRoll2 / 26;
977
 
978
    IntegralFehlerNick = tmp_long;
979
    IntegralFehlerRoll = tmp_long2;
980
    Mess_IntegralNick2 -= IntegralFehlerNick;
981
    Mess_IntegralRoll2 -= IntegralFehlerRoll;
982
 
983
//    IntegralFehlerNick = (IntegralFehlerNick * 1 + tmp_long) / 2;
984
//    IntegralFehlerRoll = (IntegralFehlerRoll * 1 + tmp_long2) / 2;
985
  if(EE_Parameter.Driftkomp)
986
   {
987
    if(GierGyroFehler > ABGLEICH_ANZAHL/2) { AdNeutralGier++; AdNeutralGierBias++; }
988
    if(GierGyroFehler <-ABGLEICH_ANZAHL/2) { AdNeutralGier--; AdNeutralGierBias--; }
989
   }
990
//DebugOut.Analog[22] = MittelIntegralRoll / 26;
991
//DebugOut.Analog[24] = GierGyroFehler;
992
    GierGyroFehler = 0;
993
 
994
 
995
/*DebugOut.Analog[17] = IntegralAccNick / 26;
996
DebugOut.Analog[18] = IntegralAccRoll / 26;
997
DebugOut.Analog[19] = IntegralFehlerNick;// / 26;
998
DebugOut.Analog[20] = IntegralFehlerRoll;// / 26;
999
*/
1000
//DebugOut.Analog[21] = MittelIntegralNick / 26;
1001
//MittelIntegralRoll = MittelIntegralRoll;
1002
//DebugOut.Analog[28] = ausgleichNick;
1003
/*
1004
DebugOut.Analog[29] = ausgleichRoll;
1005
DebugOut.Analog[30] = LageKorrekturRoll * 10;
1006
*/
1007
 
1008
#define FEHLER_LIMIT  (ABGLEICH_ANZAHL * 4)
1009
#define FEHLER_LIMIT2 (ABGLEICH_ANZAHL * 16)
1010
#define BEWEGUNGS_LIMIT 20000
1011
// Nick +++++++++++++++++++++++++++++++++++++++++++++++++
1012
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
1013
        if(labs(MittelIntegralNick_Alt - MittelIntegralNick) < BEWEGUNGS_LIMIT || (FromNaviCtrl_Value.Kalman_MaxDrift > 3*8))
1014
        {
1015
        if(IntegralFehlerNick >  FEHLER_LIMIT2)
1016
         {
1017
           if(last_n_p)
1018
           {
1019
            cnt += labs(IntegralFehlerNick) / (FEHLER_LIMIT2 / 8);
1020
            ausgleichNick = IntegralFehlerNick / 8;
1021
            if(ausgleichNick > 5000) ausgleichNick = 5000;
1022
            LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
1023
           }
1024
           else last_n_p = 1;
1025
         } else  last_n_p = 0;
1026
        if(IntegralFehlerNick < -FEHLER_LIMIT2)
1027
         {
1028
           if(last_n_n)
1029
            {
1030
             cnt += labs(IntegralFehlerNick) / (FEHLER_LIMIT2 / 8);
1031
             ausgleichNick = IntegralFehlerNick / 8;
1032
             if(ausgleichNick < -5000) ausgleichNick = -5000;
1033
             LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
1034
            }
1035
           else last_n_n = 1;
1036
         } else  last_n_n = 0;
1037
        }
1038
        else
1039
        {
1040
         cnt = 0;
1041
         KompassSignalSchlecht = 1000;
1042
        }
1043
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
1044
                if(FromNaviCtrl_Value.Kalman_MaxDrift) if(cnt > FromNaviCtrl_Value.Kalman_MaxDrift) cnt = FromNaviCtrl_Value.Kalman_MaxDrift;
1045
        if(IntegralFehlerNick >  FEHLER_LIMIT)   AdNeutralNick += cnt;
1046
        if(IntegralFehlerNick < -FEHLER_LIMIT)   AdNeutralNick -= cnt;
1047
 
1048
// Roll +++++++++++++++++++++++++++++++++++++++++++++++++
1049
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
1050
 
1051
        ausgleichRoll = 0;
1052
        if(labs(MittelIntegralRoll_Alt - MittelIntegralRoll) < BEWEGUNGS_LIMIT || (FromNaviCtrl_Value.Kalman_MaxDrift > 3*8))
1053
        {
1054
        if(IntegralFehlerRoll >  FEHLER_LIMIT2)
1055
         {
1056
           if(last_r_p)
1057
           {
1058
            cnt += labs(IntegralFehlerRoll) / (FEHLER_LIMIT2 / 8);
1059
            ausgleichRoll = IntegralFehlerRoll / 8;
1060
            if(ausgleichRoll > 5000) ausgleichRoll = 5000;
1061
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
1062
           }
1063
           else last_r_p = 1;
1064
         } else  last_r_p = 0;
1065
        if(IntegralFehlerRoll < -FEHLER_LIMIT2)
1066
         {
1067
           if(last_r_n)
1068
           {
1069
            cnt += labs(IntegralFehlerRoll) / (FEHLER_LIMIT2 / 8);
1070
            ausgleichRoll = IntegralFehlerRoll / 8;
1071
            if(ausgleichRoll < -5000) ausgleichRoll = -5000;
1072
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
1073
           }
1074
           else last_r_n = 1;
1075
         } else  last_r_n = 0;
1076
        } else
1077
        {
1078
         cnt = 0;
1079
         KompassSignalSchlecht = 1000;
1080
        }
1081
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
1082
                if(FromNaviCtrl_Value.Kalman_MaxDrift) if(cnt > FromNaviCtrl_Value.Kalman_MaxDrift) cnt = FromNaviCtrl_Value.Kalman_MaxDrift;
1083
        if(IntegralFehlerRoll >  FEHLER_LIMIT)   AdNeutralRoll += cnt;
1084
        if(IntegralFehlerRoll < -FEHLER_LIMIT)   AdNeutralRoll -= cnt;
1085
  }
1086
  else
1087
  {
1088
   LageKorrekturRoll = 0;
1089
   LageKorrekturNick = 0;
1090
   TrichterFlug = 0;
1091
  }
1092
 
1093
  if(!IntegralFaktor) { LageKorrekturRoll = 0; LageKorrekturNick = 0;} // z.B. bei HH
1094
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
1095
   MittelIntegralNick_Alt = MittelIntegralNick;
1096
   MittelIntegralRoll_Alt = MittelIntegralRoll;
1097
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
1098
    IntegralAccNick = 0;
1099
    IntegralAccRoll = 0;
1100
    IntegralAccZ = 0;
1101
    MittelIntegralNick = 0;
1102
    MittelIntegralRoll = 0;
1103
    MittelIntegralNick2 = 0;
1104
    MittelIntegralRoll2 = 0;
1105
    ZaehlMessungen = 0;
1106
 } //  ZaehlMessungen >= ABGLEICH_ANZAHL
1107
 
1108
 
1109
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1110
//  Gieren
1111
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1112
//    if(GasMischanteil < 35) { if(StickGier > 10) StickGier = 10; else if(StickGier < -10) StickGier = -10;};
1113
    if(abs(StickGier) > 15) // war 35
1114
     {
1115
      KompassSignalSchlecht = 1000;
1116
      if(!(EE_Parameter.GlobalConfig & CFG_KOMPASS_FIX))
1117
       {
1118
         NeueKompassRichtungMerken = 1;
1119
        };
1120
     }
1121
    tmp_int  = (long) EE_Parameter.Gier_P * ((long)StickGier * abs(StickGier)) / 512L; // expo  y = ax + bx²
1122
    tmp_int += (EE_Parameter.Gier_P * StickGier) / 4;
1123
    sollGier = tmp_int;
1124
    Mess_Integral_Gier -= tmp_int;
1125
    if(Mess_Integral_Gier > 50000) Mess_Integral_Gier = 50000;  // begrenzen
1126
    if(Mess_Integral_Gier <-50000) Mess_Integral_Gier =-50000;
1127
 
1128
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1129
//  Kompass
1130
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1131
//DebugOut.Analog[16] = KompassSignalSchlecht;
1132
 
1133
    if(KompassValue && (EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV))
1134
     {
1135
       int w,v,r,fehler,korrektur;
1136
       w = abs(IntegralNick /512); // mit zunehmender Neigung den Einfluss drosseln
1137
       v = abs(IntegralRoll /512);
1138
       if(v > w) w = v; // grösste Neigung ermitteln
1139
       korrektur = w / 8 + 1;
1140
       fehler = ((540 + KompassValue - (ErsatzKompass/GIER_GRAD_FAKTOR)) % 360) - 180;
1141
       if(abs(MesswertGier) > 128)
1142
            {
1143
                 fehler = 0;
1144
                }
1145
 
1146
           if(NeueKompassRichtungMerken)
1147
            {
1148
//       ErsatzKompass += (fehler * 32) / korrektur;
1149
//               fehler = 0;
1150
//               fehler /= 4;
1151
//               ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
1152
                }
1153
       if(!KompassSignalSchlecht && w < 25)
1154
        {
1155
        GierGyroFehler += fehler;
1156
        if(NeueKompassRichtungMerken)
1157
         {
1158
          beeptime = 200;
1159
//         KompassStartwert = KompassValue;
1160
                  ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
1161
          KompassStartwert = (ErsatzKompass/GIER_GRAD_FAKTOR);
1162
          NeueKompassRichtungMerken = 0;
1163
         }
1164
        }
1165
       ErsatzKompass += (fehler * 8) / korrektur;
1166
       w = (w * Parameter_KompassWirkung) / 32;           // auf die Wirkung normieren
1167
       w = Parameter_KompassWirkung - w;                  // Wirkung ggf drosseln
1168
       if(w >= 0)
1169
        {
1170
          if(!KompassSignalSchlecht)
1171
          {
1172
           v = 64 + ((MaxStickNick + MaxStickRoll)) / 8;
1173
           r = ((540 + (ErsatzKompass/GIER_GRAD_FAKTOR) - KompassStartwert) % 360) - 180;
1174
//           r = KompassRichtung;
1175
           v = (r * w) / v;  // nach Kompass ausrichten
1176
           w = 3 * Parameter_KompassWirkung;
1177
           if(v > w) v = w; // Begrenzen
1178
           else
1179
           if(v < -w) v = -w;
1180
           Mess_Integral_Gier += v;
1181
          }
1182
          if(KompassSignalSchlecht) KompassSignalSchlecht--;
1183
        }
1184
        else KompassSignalSchlecht = 500; // so lange das Signal taub stellen --> ca. 1 sek
1185
     }
1186
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1187
 
1188
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1189
//  Debugwerte zuordnen
1190
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1191
  if(!TimerWerteausgabe--)
1192
   {
1193
    TimerWerteausgabe = 24;
1194
 
1195
    DebugOut.Analog[0] = IntegralNick / (EE_Parameter.GyroAccFaktor * 4);
1196
    DebugOut.Analog[1] = IntegralRoll / (EE_Parameter.GyroAccFaktor * 4);
1197
    DebugOut.Analog[2] = Mittelwert_AccNick / 4;
1198
    DebugOut.Analog[3] = Mittelwert_AccRoll / 4;
1199
    DebugOut.Analog[4] = MesswertGier;
1200
    DebugOut.Analog[5] = HoehenWert;
1201
    DebugOut.Analog[6] = (Mess_Integral_Hoch / 512);//Aktuell_az;
1202
    DebugOut.Analog[8] = KompassValue;
1203
    DebugOut.Analog[9] = UBat;
1204
    DebugOut.Analog[11] = ErsatzKompass / GIER_GRAD_FAKTOR;
1205
    DebugOut.Analog[10] = SenderOkay;
1206
    //DebugOut.Analog[16] = Mittelwert_AccHoch;
1207
    //DebugOut.Analog[17] = FromNaviCtrl_Value.Distance;
1208
    //DebugOut.Analog[18] = (int)FromNaviCtrl_Value.OsdBar;
1209
    DebugOut.Analog[19] = WinkelOut.CalcState;
1210
    DebugOut.Analog[20] = ServoValue;
1211
//    DebugOut.Analog[24] = MesswertNick/2;
1212
//    DebugOut.Analog[25] = MesswertRoll/2;
1213
    DebugOut.Analog[27] = (int)FromNaviCtrl_Value.Kalman_MaxDrift;
1214
//    DebugOut.Analog[28] = (int)FromNaviCtrl_Value.Kalman_MaxFusion;
1215
//    DebugOut.Analog[29] = (int)FromNaviCtrl_Value.Kalman_K;
1216
    DebugOut.Analog[30] = GPS_Nick;
1217
    DebugOut.Analog[31] = GPS_Roll;
1218
 
1219
 
1220
//    DebugOut.Analog[19] -= DebugOut.Analog[19]/128;
1221
//    if(DebugOut.Analog[19] > 0) DebugOut.Analog[19]--; else DebugOut.Analog[19]++;
1222
 
1223
/*    DebugOut.Analog[16] = motor_rx[0];
1224
    DebugOut.Analog[17] = motor_rx[1];
1225
    DebugOut.Analog[18] = motor_rx[2];
1226
    DebugOut.Analog[19] = motor_rx[3];
1227
    DebugOut.Analog[20] = motor_rx[0] + motor_rx[1] + motor_rx[2] + motor_rx[3];
1228
    DebugOut.Analog[20] /= 14;
1229
    DebugOut.Analog[21] = motor_rx[4];
1230
    DebugOut.Analog[22] = motor_rx[5];
1231
    DebugOut.Analog[23] = motor_rx[6];
1232
    DebugOut.Analog[24] = motor_rx[7];
1233
    DebugOut.Analog[25] = motor_rx[4] + motor_rx[5] + motor_rx[6] + motor_rx[7];
1234
*/
1235
//    DebugOut.Analog[9] = MesswertNick;
1236
//    DebugOut.Analog[9] = SollHoehe;
1237
//    DebugOut.Analog[10] = Mess_Integral_Gier / 128;
1238
//    DebugOut.Analog[11] = KompassStartwert;
1239
//    DebugOut.Analog[10] = Parameter_Gyro_I;
1240
//    DebugOut.Analog[10] = EE_Parameter.Gyro_I;
1241
//    DebugOut.Analog[9] = KompassRichtung;
1242
//    DebugOut.Analog[10] = GasMischanteil;
1243
//    DebugOut.Analog[3] = HoeheD * 32;
1244
//    DebugOut.Analog[4] = hoehenregler;
1245
  }
1246
 
1247
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1248
//  Drehgeschwindigkeit und -winkel zu einem Istwert zusammenfassen
1249
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1250
  if(TrichterFlug)  { SummeRoll = 0; SummeNick = 0;};
1251
 
1252
  if(!Looping_Nick) IntegralNickMalFaktor = (IntegralNick * IntegralFaktor) /  (44000 / STICK_GAIN); else IntegralNickMalFaktor = 0;
1253
  if(!Looping_Roll) IntegralRollMalFaktor = (IntegralRoll * IntegralFaktor) /  (44000 / STICK_GAIN); else IntegralRollMalFaktor = 0;
1254
 
1255
#define TRIM_MAX 200
1256
 if(TrimNick > TRIM_MAX) TrimNick = TRIM_MAX; else  if(TrimNick <-TRIM_MAX) TrimNick =-TRIM_MAX;
1257
 if(TrimRoll > TRIM_MAX) TrimRoll = TRIM_MAX; else  if(TrimRoll <-TRIM_MAX) TrimRoll =-TRIM_MAX;
1258
 
1259
 {
1260
    MesswertNick = IntegralNickMalFaktor + (long)((long)MesswertNick * GyroFaktor + (long)TrimNick * 128L) / (256L / STICK_GAIN);
1261
    MesswertRoll = IntegralRollMalFaktor + (long)((long)MesswertRoll * GyroFaktor + (long)TrimRoll * 128L) / (256L / STICK_GAIN);
1262
 }
1263
 
1264
#ifndef QUADRO
1265
    MesswertGier =   (long)(MesswertGier * 4 * (long)GyroFaktor) / (256L / STICK_GAIN) + (long)(Integral_Gier * IntegralFaktor) / (4 * (44000 / STICK_GAIN));
1266
#else 
1267
    MesswertGier =   (long)(MesswertGier * 2 * (long)GyroFaktor) / (256L / STICK_GAIN) + (long)(Integral_Gier * IntegralFaktor) / (2 * (44000 / STICK_GAIN));
1268
#endif 
1269
 
1270
    // Maximalwerte abfangen
1271
//    #define MAX_SENSOR  (4096*STICK_GAIN)
1272
    #define MAX_SENSOR  (4096*4)
1273
    if(MesswertNick >  MAX_SENSOR) MesswertNick =  MAX_SENSOR;
1274
    if(MesswertNick < -MAX_SENSOR) MesswertNick = -MAX_SENSOR;
1275
    if(MesswertRoll >  MAX_SENSOR) MesswertRoll =  MAX_SENSOR;
1276
    if(MesswertRoll < -MAX_SENSOR) MesswertRoll = -MAX_SENSOR;
1277
    if(MesswertGier >  MAX_SENSOR) MesswertGier =  MAX_SENSOR;
1278
    if(MesswertGier < -MAX_SENSOR) MesswertGier = -MAX_SENSOR;
1279
 
1280
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1281
// Höhenregelung
1282
// Die Höhenregelung schwächt lediglich das Gas ab, erhöht es allerdings nicht
1283
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1284
 
1285
  GasMischanteil *= STICK_GAIN;
1286
 if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung
1287
  {
1288
    int tmp_int;
1289
        static char delay = 100;
1290
    if(EE_Parameter.GlobalConfig & CFG_HOEHEN_SCHALTER)  // Regler wird über Schalter gesteuert
1291
    {
1292
    if(((EE_Parameter.BitConfig & CFG_HIGHT_3SWITCH) && ((Parameter_MaxHoehe > 80) && (Parameter_MaxHoehe < 140))) ||
1293
      (!(EE_Parameter.BitConfig & CFG_HIGHT_3SWITCH) && (Parameter_MaxHoehe < 50)))
1294
      {
1295
       if(!delay--)
1296
            {
1297
         if(MessLuftdruck > 1000)
1298
                  {
1299
                   ExpandBaro -= 10;
1300
                   OCR0A = DruckOffsetSetting - ExpandBaro;
1301
                   beeptime = 300;
1302
           delay = 250;
1303
                  }
1304
                  else
1305
         if(MessLuftdruck < 100)
1306
                  {
1307
                   ExpandBaro += 10;
1308
                   OCR0A = DruckOffsetSetting - ExpandBaro;
1309
                   beeptime = 300;
1310
           delay = 250;
1311
                  }
1312
          else
1313
          {
1314
               SollHoehe = HoehenWert - 20;  // Parameter_MaxHoehe ist der PPM-Wert des Schalters
1315
           HoehenReglerAktiv = 0;
1316
                   delay = 1;
1317
                  }
1318
                }
1319
      }
1320
      else
1321
        {
1322
         HoehenReglerAktiv = 1;
1323
                 delay = 200;
1324
                }
1325
    }
1326
    else
1327
    {
1328
     SollHoehe = ((int) ExternHoehenValue + (int) Parameter_MaxHoehe) * (int)EE_Parameter.Hoehe_Verstaerkung - 20;
1329
     HoehenReglerAktiv = 1;
1330
    }
1331
 
1332
    if(Notlandung) SollHoehe = 0;
1333
    h = HoehenWert;
1334
    if((h > SollHoehe) && HoehenReglerAktiv)      // zu hoch --> drosseln
1335
     {
1336
      h = ((h - SollHoehe) * (int) Parameter_Hoehe_P) / (16 / STICK_GAIN); // Differenz bestimmen --> P-Anteil
1337
      h = GasMischanteil - h;         // vom Gas abziehen
1338
//      h -= (HoeheD * Parameter_Luftdruck_D)/(8/STICK_GAIN);    // D-Anteil
1339
      h -= (HoeheD)/(8/STICK_GAIN);    // D-Anteil
1340
      tmp_int = ((Mess_Integral_Hoch / 128) * (signed long) Parameter_Hoehe_ACC_Wirkung) / (128 / STICK_GAIN);
1341
      if(tmp_int > 70*STICK_GAIN) tmp_int = 70*STICK_GAIN;
1342
      else if(tmp_int < -(70*STICK_GAIN)) tmp_int = -(70*STICK_GAIN);
1343
      h -= tmp_int;
1344
      hoehenregler = (hoehenregler*15 + h) / 16;
1345
      if(hoehenregler < EE_Parameter.Hoehe_MinGas * STICK_GAIN) // nicht unter MIN
1346
       {
1347
         if(GasMischanteil >= EE_Parameter.Hoehe_MinGas * STICK_GAIN) hoehenregler = EE_Parameter.Hoehe_MinGas * STICK_GAIN;
1348
         if(GasMischanteil < EE_Parameter.Hoehe_MinGas * STICK_GAIN) hoehenregler = GasMischanteil;
1349
       }
1350
      if(hoehenregler > GasMischanteil) hoehenregler = GasMischanteil; // nicht mehr als Gas
1351
      GasMischanteil = hoehenregler;
1352
     }
1353
  }
1354
  if(GasMischanteil > (MAX_GAS - 20) * STICK_GAIN) GasMischanteil = (MAX_GAS - 20) * STICK_GAIN;
1355
 
1356
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1357
// + Mischer und PI-Regler
1358
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1359
  DebugOut.Analog[7] = GasMischanteil;
1360
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1361
// Gier-Anteil
1362
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1363
#define MUL_G  1.0
1364
    GierMischanteil = MesswertGier - sollGier * STICK_GAIN;     // Regler für Gier
1365
// GierMischanteil = 0;
1366
#define MIN_GIERGAS  (40*STICK_GAIN)  // unter diesem Gaswert trotzdem Gieren
1367
   if(GasMischanteil > MIN_GIERGAS)
1368
    {
1369
     if(GierMischanteil > (GasMischanteil / 2)) GierMischanteil = GasMischanteil / 2;
1370
     if(GierMischanteil < -(GasMischanteil / 2)) GierMischanteil = -(GasMischanteil / 2);
1371
    }
1372
    else
1373
    {
1374
     if(GierMischanteil > (MIN_GIERGAS / 2))  GierMischanteil = MIN_GIERGAS / 2;
1375
     if(GierMischanteil < -(MIN_GIERGAS / 2)) GierMischanteil = -(MIN_GIERGAS / 2);
1376
    }
1377
    tmp_int = MAX_GAS*STICK_GAIN;
1378
    if(GierMischanteil > ((tmp_int - GasMischanteil))) GierMischanteil = ((tmp_int - GasMischanteil));
1379
    if(GierMischanteil < -((tmp_int - GasMischanteil))) GierMischanteil = -((tmp_int - GasMischanteil));
1380
 
1381
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1382
// Nick-Achse
1383
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1384
    DiffNick = MesswertNick - StickNick;        // Differenz bestimmen
1385
    if(IntegralFaktor) SummeNick += IntegralNickMalFaktor - StickNick; // I-Anteil bei Winkelregelung
1386
    else  SummeNick += DiffNick; // I-Anteil bei HH
1387
    if(SummeNick >  (STICK_GAIN * 16000L)) SummeNick =  (STICK_GAIN * 16000L);
1388
    if(SummeNick < -(16000L * STICK_GAIN)) SummeNick = -(16000L * STICK_GAIN);
1389
    pd_ergebnis_nick = DiffNick + SummeNick / Ki; // PI-Regler für Nick
1390
    // Motor Vorn
1391
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1392
    if(pd_ergebnis_nick >  tmp_int) pd_ergebnis_nick =  tmp_int;
1393
    if(pd_ergebnis_nick < -tmp_int) pd_ergebnis_nick = -tmp_int;
1394
 
1395
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1396
// Roll-Achse
1397
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1398
        DiffRoll = MesswertRoll - StickRoll;    // Differenz bestimmen
1399
    if(IntegralFaktor) SummeRoll += IntegralRollMalFaktor - StickRoll;// I-Anteil bei Winkelregelung
1400
    else                 SummeRoll += DiffRoll;  // I-Anteil bei HH
1401
    if(SummeRoll >  (STICK_GAIN * 16000L)) SummeRoll =  (STICK_GAIN * 16000L);
1402
    if(SummeRoll < -(16000L * STICK_GAIN)) SummeRoll = -(16000L * STICK_GAIN);
1403
    pd_ergebnis_roll = DiffRoll + SummeRoll / Ki;       // PI-Regler für Roll
1404
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1405
    if(pd_ergebnis_roll >  tmp_int) pd_ergebnis_roll =  tmp_int;
1406
    if(pd_ergebnis_roll < -tmp_int) pd_ergebnis_roll = -tmp_int;
1407
 
1408
#ifdef QUADRO
1409
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1410
// Quadro-Mischer 
1411
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1412
    motorwert = GasMischanteil + pd_ergebnis_nick + GierMischanteil;      // Mischer
1413
    motorwert1 = MotorSmoothing(motorwert,motorwert1);
1414
    motorwert = motorwert1 / STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1415
    Motor_Vorne = motorwert;
1416
 
1417
        motorwert = GasMischanteil - pd_ergebnis_nick + GierMischanteil;
1418
    motorwert2 = MotorSmoothing(motorwert,motorwert2);
1419
    motorwert = motorwert2 / STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1420
        Motor_Hinten = motorwert;
1421
 
1422
    motorwert = GasMischanteil + pd_ergebnis_roll - GierMischanteil;
1423
    motorwert3 = MotorSmoothing(motorwert,motorwert3);
1424
    motorwert = motorwert3 / STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1425
    Motor_Links = motorwert;
1426
 
1427
        motorwert = GasMischanteil - pd_ergebnis_roll - GierMischanteil;
1428
    motorwert4 = MotorSmoothing(motorwert,motorwert4);
1429
    motorwert = motorwert4 / STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1430
    Motor_Rechts = motorwert;
1431
   // +++++++++++++++++++++++++++++++++++++++++++++++
1432
#endif
1433
#ifdef OCTO
1434
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1435
// Octo-Mischer 
1436
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1437
    motorwert = GasMischanteil + pd_ergebnis_nick + pd_ergebnis_roll + GierMischanteil;  
1438
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1439
        Motor1 = motorwert;
1440
 
1441
    motorwert = GasMischanteil + pd_ergebnis_nick - pd_ergebnis_roll - GierMischanteil;  
1442
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1443
        Motor2 = motorwert;
1444
 
1445
        motorwert = GasMischanteil + pd_ergebnis_nick - pd_ergebnis_roll + GierMischanteil;
1446
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1447
    Motor3 = motorwert;
1448
 
1449
        motorwert = GasMischanteil - pd_ergebnis_nick - pd_ergebnis_roll - GierMischanteil;
1450
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1451
    Motor4 = motorwert;
1452
 
1453
        motorwert = GasMischanteil - pd_ergebnis_nick - pd_ergebnis_roll + GierMischanteil;
1454
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1455
        Motor5 = motorwert;
1456
 
1457
        motorwert = GasMischanteil - pd_ergebnis_nick + pd_ergebnis_roll - GierMischanteil;
1458
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1459
        Motor6 = motorwert;
1460
 
1461
    motorwert = GasMischanteil - pd_ergebnis_nick + pd_ergebnis_roll + GierMischanteil;
1462
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1463
    Motor7 = motorwert;
1464
 
1465
    motorwert = GasMischanteil + pd_ergebnis_nick + pd_ergebnis_roll - GierMischanteil;
1466
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1467
    Motor8 = motorwert;
1468
   // +++++++++++++++++++++++++++++++++++++++++++++++
1469
#endif
1470
#ifdef OCTO2
1471
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1472
// Octo-Mischer 
1473
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1474
    motorwert = GasMischanteil + pd_ergebnis_nick + GierMischanteil;     
1475
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1476
        Motor1 = motorwert;
1477
 
1478
    motorwert = GasMischanteil + pd_ergebnis_nick - pd_ergebnis_roll - GierMischanteil;  
1479
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1480
        Motor2 = motorwert;
1481
 
1482
        motorwert = GasMischanteil - pd_ergebnis_roll + GierMischanteil;
1483
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1484
    Motor3 = motorwert;
1485
 
1486
        motorwert = GasMischanteil - pd_ergebnis_nick - pd_ergebnis_roll - GierMischanteil;
1487
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1488
    Motor4 = motorwert;
1489
 
1490
        motorwert = GasMischanteil - pd_ergebnis_roll + GierMischanteil;
1491
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1492
        Motor5 = motorwert;
1493
 
1494
        motorwert = GasMischanteil - pd_ergebnis_nick + pd_ergebnis_roll - GierMischanteil;
1495
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1496
        Motor6 = motorwert;
1497
 
1498
    motorwert = GasMischanteil + pd_ergebnis_roll + GierMischanteil;
1499
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1500
    Motor7 = motorwert;
1501
 
1502
    motorwert = GasMischanteil + pd_ergebnis_nick + pd_ergebnis_roll - GierMischanteil;
1503
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1504
    Motor8 = motorwert;
1505
   // +++++++++++++++++++++++++++++++++++++++++++++++
1506
#endif
1507
#ifdef OCTO3
1508
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1509
// Octo-Mischer 
1510
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1511
    motorwert = GasMischanteil + pd_ergebnis_nick + GierMischanteil;     
1512
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1513
        Motor1 = motorwert;
1514
 
1515
    motorwert = GasMischanteil + pd_ergebnis_nick - GierMischanteil;     
1516
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1517
        Motor2 = motorwert;
1518
 
1519
        motorwert = GasMischanteil - pd_ergebnis_roll + GierMischanteil;
1520
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1521
    Motor3 = motorwert;
1522
 
1523
        motorwert = GasMischanteil - pd_ergebnis_roll - GierMischanteil;
1524
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1525
    Motor4 = motorwert;
1526
 
1527
        motorwert = GasMischanteil - pd_ergebnis_nick + GierMischanteil;
1528
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1529
        Motor5 = motorwert;
1530
 
1531
        motorwert = GasMischanteil - pd_ergebnis_nick  - GierMischanteil;
1532
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1533
        Motor6 = motorwert;
1534
 
1535
    motorwert = GasMischanteil + pd_ergebnis_roll + GierMischanteil;
1536
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1537
    Motor7 = motorwert;
1538
 
1539
    motorwert = GasMischanteil + pd_ergebnis_roll - GierMischanteil;
1540
    motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1541
    Motor8 = motorwert;
1542
   // +++++++++++++++++++++++++++++++++++++++++++++++
1543
#endif
1544
#ifdef HEXA1
1545
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1546
// Hexa1: "+"-Configuration
1547
//      6
1548
// 4        1
1549
// 2        3
1550
//      5
1551
// reverse props: 1,4,5
1552
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1553
// Korrektur-Faktoren für identische Nick/Roll-Wirkung       
1554
pd_ergebnis_nick /= 3;
1555
pd_ergebnis_roll = (pd_ergebnis_roll*4) / 7;
1556
 
1557
motorwert =   GasMischanteil + pd_ergebnis_nick/2 - pd_ergebnis_roll - GierMischanteil;
1558
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1559
Motor1 = motorwert;
1560
 
1561
motorwert =  GasMischanteil - pd_ergebnis_nick/2 + pd_ergebnis_roll + GierMischanteil;
1562
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1563
Motor2 = motorwert;
1564
 
1565
motorwert =  GasMischanteil - pd_ergebnis_nick/2 - pd_ergebnis_roll + GierMischanteil;
1566
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1567
Motor3 = motorwert;
1568
 
1569
motorwert =  GasMischanteil + pd_ergebnis_nick/2 + pd_ergebnis_roll - GierMischanteil;
1570
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1571
Motor4 = motorwert;
1572
 
1573
motorwert = GasMischanteil - pd_ergebnis_nick - GierMischanteil;
1574
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1575
Motor5 = motorwert;
1576
 
1577
motorwert = GasMischanteil + pd_ergebnis_nick + GierMischanteil;
1578
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1579
Motor6 = motorwert;
1580
// +++++++++++++++++++++++++++++++++++++++++++++++
1581
#endif
1582
 
1583
#ifdef HEXA2
1584
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1585
// Hexa1: "X"-Configuration
1586
//   1  3
1587
// 6      5
1588
//   4  2
1589
//      
1590
// reverse props: 1,4,5
1591
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1592
// Korrektur-Faktoren für identische Nick/Roll-Wirkung       
1593
pd_ergebnis_roll = pd_ergebnis_roll / 3;
1594
pd_ergebnis_nick = (pd_ergebnis_nick*4) / 7;
1595
 
1596
motorwert =   GasMischanteil + pd_ergebnis_nick + pd_ergebnis_roll/2 - GierMischanteil;
1597
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1598
Motor1 = motorwert;
1599
 
1600
motorwert =  GasMischanteil - pd_ergebnis_nick - pd_ergebnis_roll/2 + GierMischanteil;
1601
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1602
Motor2 = motorwert;
1603
 
1604
motorwert =  GasMischanteil + pd_ergebnis_nick - pd_ergebnis_roll/2 + GierMischanteil;
1605
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1606
Motor3 = motorwert;
1607
 
1608
motorwert =  GasMischanteil - pd_ergebnis_nick + pd_ergebnis_roll/2 - GierMischanteil;
1609
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1610
Motor4 = motorwert;
1611
 
1612
motorwert = GasMischanteil - pd_ergebnis_roll - GierMischanteil;
1613
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1614
Motor5 = motorwert;
1615
 
1616
motorwert = GasMischanteil + pd_ergebnis_roll + GierMischanteil;
1617
motorwert /= STICK_GAIN; CHECK_MIN_MAX(motorwert,MIN_GAS,MAX_GAS);
1618
Motor6 = motorwert;
1619
// +++++++++++++++++++++++++++++++++++++++++++++++
1620
#endif
1621
 
1622
/*
1623
if(Poti1 > 20)  Motor1 = 0;
1624
if(Poti1 > 90)  Motor6 = 0;
1625
if(Poti1 > 140) Motor2 = 0;
1626
//if(Poti1 > 200) Motor7 = 0;
1627
*/
1628
}