Subversion Repositories FlightCtrl

Rev

Rev 1452 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1400 acid 1
/*#######################################################################################
2
Flight Control
3
#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) Holger Buss, Ingo Busker
6
// + Nur für den privaten Gebrauch / NON-COMMERCIAL USE ONLY
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 oder Nutzung 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 the sources to other systems or using the software on other systems (except 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
51
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
52
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
53
// +  POSSIBILITY OF SUCH DAMAGE.
54
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
55
 
56
#include "main.h"
57
#include "eeprom.c"
58
#include "mymath.h"
59
#include "isqrt.h"
60
 
61
unsigned char h,m,s;
62
unsigned int BaroExpandActive = 0;
63
volatile unsigned int I2CTimeout = 100;
64
int MesswertNick,MesswertRoll,MesswertGier,MesswertGierBias, RohMesswertNick,RohMesswertRoll;
65
int TrimNick, TrimRoll;
66
int AdNeutralGierBias;
67
int AdNeutralNick = 0,AdNeutralRoll = 0,AdNeutralGier = 0,StartNeutralRoll = 0,StartNeutralNick = 0;
68
int Mittelwert_AccNick, Mittelwert_AccRoll,Mittelwert_AccHoch, NeutralAccX=0, NeutralAccY=0;
69
int NaviAccNick, NaviAccRoll,NaviCntAcc = 0;
70
volatile float NeutralAccZ = 0;
71
unsigned char CosinusNickWinkel = 0, CosinusRollWinkel = 0;
72
long IntegralNick = 0,IntegralNick2 = 0;
73
long IntegralRoll = 0,IntegralRoll2 = 0;
74
long IntegralAccNick = 0,IntegralAccRoll = 0,IntegralAccZ = 0;
75
long Integral_Gier = 0;
76
long Mess_IntegralNick = 0,Mess_IntegralNick2 = 0;
77
long Mess_IntegralRoll = 0,Mess_IntegralRoll2 = 0;
78
long Mess_Integral_Gier = 0,Mess_Integral_Gier2 = 0;
79
long MittelIntegralNick,MittelIntegralRoll,MittelIntegralNick2,MittelIntegralRoll2;
80
volatile long Mess_Integral_Hoch = 0;
81
int  KompassValue = 0;
82
int  KompassStartwert = 0;
83
int  KompassEinschaltStartwert = 0;
84
int  KompassRichtung = 0;
85
unsigned int  KompassSignalSchlecht = 500;
86
unsigned char  MAX_GAS,MIN_GAS;
87
unsigned char HoehenReglerAktiv = 0;
88
unsigned char TrichterFlug = 0;
89
long Umschlag180Nick = 250000L, Umschlag180Roll = 250000L;
90
long  ErsatzKompass;
91
int   ErsatzKompassInGrad; // Kompasswert in Grad
92
int   GierGyroFehler = 0;
93
char GyroFaktor,GyroFaktorGier;
94
char IntegralFaktor,IntegralFaktorGier;
95
int  DiffNick,DiffRoll;
96
int  Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0;
97
volatile unsigned char SenderOkay = 0;
98
volatile unsigned char SenderRSSI = 0;
99
int StickNick = 0,StickRoll = 0,StickGier = 0,StickGas = 0;
100
char MotorenEin = 0;
101
long HoehenWert = 0;
102
long SollHoehe = 0;
103
int LageKorrekturRoll = 0,LageKorrekturNick = 0;
104
//float Ki =  FAKTOR_I;
105
int Ki = 10300 / 33;
106
unsigned char Looping_Nick = 0,Looping_Roll = 0;
107
unsigned char Looping_Links = 0, Looping_Rechts = 0, Looping_Unten = 0, Looping_Oben = 0;
108
 
109
unsigned char Parameter_Luftdruck_D  = 48;      // Wert : 0-250
110
unsigned char Parameter_MaxHoehe     = 251;      // Wert : 0-250
111
unsigned char Parameter_Hoehe_P      = 16;      // Wert : 0-32
112
unsigned char Parameter_Hoehe_ACC_Wirkung = 58; // Wert : 0-250
113
unsigned char Parameter_KompassWirkung = 64;    // Wert : 0-250
114
unsigned char Parameter_Hoehe_GPS_Z = 64;        // Wert : 0-250
115
unsigned char Parameter_Gyro_D = 8;             // Wert : 0-250
116
unsigned char Parameter_Gyro_P = 150;           // Wert : 10-250
117
unsigned char Parameter_Gyro_I = 150;           // Wert : 0-250
118
unsigned char Parameter_Gyro_Gier_P = 150;      // Wert : 10-250
119
unsigned char Parameter_Gyro_Gier_I = 150;      // Wert : 10-250
120
unsigned char Parameter_Gier_P = 2;             // Wert : 1-20
121
unsigned char Parameter_I_Faktor = 10;          // Wert : 1-20
122
unsigned char Parameter_UserParam1 = 0;
123
unsigned char Parameter_UserParam2 = 0;
124
unsigned char Parameter_UserParam3 = 0;
125
unsigned char Parameter_UserParam4 = 0;
126
unsigned char Parameter_UserParam5 = 0;
127
unsigned char Parameter_UserParam6 = 0;
128
unsigned char Parameter_UserParam7 = 0;
129
unsigned char Parameter_UserParam8 = 0;
130
unsigned char Parameter_ServoNickControl = 100;
131
unsigned char Parameter_ServoRollControl = 100;
132
unsigned char Parameter_LoopGasLimit = 70;
133
unsigned char Parameter_AchsKopplung1 = 90;
134
unsigned char Parameter_AchsKopplung2 = 65;
135
unsigned char Parameter_CouplingYawCorrection = 64;
136
//unsigned char Parameter_AchsGegenKopplung1 = 0;
137
unsigned char Parameter_DynamicStability = 100;
138
unsigned char Parameter_J16Bitmask;             // for the J16 Output
139
unsigned char Parameter_J16Timing;              // for the J16 Output
140
unsigned char Parameter_J17Bitmask;             // for the J17 Output
141
unsigned char Parameter_J17Timing;              // for the J17 Output
142
unsigned char Parameter_NaviGpsModeControl;     // Parameters for the Naviboard
143
unsigned char Parameter_NaviGpsGain;
144
unsigned char Parameter_NaviGpsP;
145
unsigned char Parameter_NaviGpsI;
146
unsigned char Parameter_NaviGpsD;
147
unsigned char Parameter_NaviGpsACC;
148
unsigned char Parameter_NaviOperatingRadius;
149
unsigned char Parameter_NaviWindCorrection;
150
unsigned char Parameter_NaviSpeedCompensation;
151
unsigned char Parameter_ExternalControl;
152
struct mk_param_struct EE_Parameter;
153
signed int ExternStickNick = 0,ExternStickRoll = 0,ExternStickGier = 0, ExternHoehenValue = -20;
154
int MaxStickNick = 0,MaxStickRoll = 0;
155
unsigned int  modell_fliegt = 0;
156
volatile unsigned char MikroKopterFlags = 0;
157
long GIER_GRAD_FAKTOR = 1291;
158
signed int KopplungsteilNickRoll,KopplungsteilRollNick;
159
unsigned char RequiredMotors = 4;
160
unsigned char Motor[MAX_MOTORS];
161
signed int tmp_motorwert[MAX_MOTORS];
162
unsigned char LoadHandler = 0;
163
#define LIMIT_MIN(value, min) {if(value < min) value = min;}
164
#define LIMIT_MAX(value, max) {if(value > max) value = max;}
165
#define LIMIT_MIN_MAX(value, min, max) {if(value < min) value = min; else if(value > max) value = max;}
166
 
167
int MotorSmoothing(int neu, int alt)
168
{
169
 int motor;
170
 if(neu > alt) motor = (1*(int)alt + neu) / 2;
171
 else   motor = neu - (alt - neu)*1;
172
//if(Poti2 < 20)  return(neu);
173
 return(motor);
174
}
175
 
176
void Piep(unsigned char Anzahl, unsigned int dauer)
177
{
178
 if(MotorenEin) return; //auf keinen Fall im Flug!
179
 while(Anzahl--)
180
 {
181
  beeptime = dauer;
182
  while(beeptime);
183
  Delay_ms(dauer * 2);
184
 }
185
}
186
 
187
//############################################################################
188
//  Nullwerte ermitteln
189
void SetNeutral(void)
190
//############################################################################
191
{
192
 unsigned char i;
193
 unsigned int gier_neutral=0, nick_neutral=0, roll_neutral=0;
194
    HEF4017R_ON;
195
        NeutralAccX = 0;
196
        NeutralAccY = 0;
197
        NeutralAccZ = 0;
198
    AdNeutralNick = 0;
199
        AdNeutralRoll = 0;
200
        AdNeutralGier = 0;
201
    AdNeutralGierBias = 0;
202
    Parameter_AchsKopplung1 = 0;
203
    Parameter_AchsKopplung2 = 0;
204
    ExpandBaro = 0;
205
    CalibrierMittelwert();
206
    Delay_ms_Mess(100);
207
        CalibrierMittelwert();
208
    if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
209
     {
210
      if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
211
     }
212
#define NEUTRAL_FILTER 32
213
    for(i=0; i<NEUTRAL_FILTER; i++)
214
         {
215
          Delay_ms_Mess(10);
216
          gier_neutral += AdWertGier;
217
          nick_neutral += AdWertNick;
218
          roll_neutral += AdWertRoll;
219
         }
220
     AdNeutralNick= (nick_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER / 8);
221
         AdNeutralRoll= (roll_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER / 8);
222
         AdNeutralGier= (gier_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER);
223
     AdNeutralGierBias = AdNeutralGier;
224
     StartNeutralRoll = AdNeutralRoll;
225
     StartNeutralNick = AdNeutralNick;
226
    if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) > 4)
227
    {
228
      NeutralAccY = abs(Mittelwert_AccRoll) / (2*ACC_AMPLIFY);
229
          NeutralAccX = abs(Mittelwert_AccNick) / (2*ACC_AMPLIFY);
230
          NeutralAccZ = Aktuell_az;
231
    }
232
    else
233
    {
234
      NeutralAccX = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1]);
235
          NeutralAccY = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1]);
236
          NeutralAccZ = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1]);
237
    }
238
 
239
    MesswertNick = 0;
240
    MesswertRoll = 0;
241
    MesswertGier = 0;
242
    Delay_ms_Mess(100);
243
    Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
244
    Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
245
    IntegralNick = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccNick;
246
    IntegralRoll = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccRoll;
247
    Mess_IntegralNick2 = IntegralNick;
248
    Mess_IntegralRoll2 = IntegralRoll;
249
    Mess_Integral_Gier = 0;
250
    StartLuftdruck = Luftdruck;
251
    VarioMeter = 0;
252
    Mess_Integral_Hoch = 0;
253
    KompassStartwert = KompassValue;
254
        KompassEinschaltStartwert = KompassValue;
255
    GPS_Neutral();
256
    beeptime = 50;
257
        Umschlag180Nick = ((long) EE_Parameter.WinkelUmschlagNick * 2500L) + 15000L;
258
        Umschlag180Roll = ((long) EE_Parameter.WinkelUmschlagRoll * 2500L) + 15000L;
259
    ExternHoehenValue = 0;
260
    ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
261
    GierGyroFehler = 0;
262
    SendVersionToNavi = 1;
263
    LED_Init();
264
    MikroKopterFlags |= FLAG_CALIBRATE;
265
    FromNaviCtrl_Value.Kalman_K = -1;
266
    FromNaviCtrl_Value.Kalman_MaxDrift = 0;
267
    FromNaviCtrl_Value.Kalman_MaxFusion = 32;
268
    Poti1 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110;
269
    Poti2 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110;
270
    Poti3 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110;
271
    Poti4 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110;
272
    SenderOkay = 100;
273
    if(ServoActive)
274
         {
275
                HEF4017R_ON;
276
                DDRD  |=0x80; // enable J7 -> Servo signal
277
     }
278
}
279
 
280
//############################################################################
281
// Bearbeitet die Messwerte
282
void Mittelwert(void)
283
//############################################################################
284
{
285
    static signed long tmpl,tmpl2,tmpl3,tmpl4;
286
        static signed int oldNick, oldRoll, d2Roll, d2Nick;
287
        signed long winkel_nick, winkel_roll;
288
 
289
        MesswertGier = (signed int) AdNeutralGier - AdWertGier;
290
//    MesswertGierBias = (signed int) AdNeutralGierBias - AdWertGier;
291
    MesswertNick = (signed int) AdWertNickFilter / 8;
292
    MesswertRoll = (signed int) AdWertRollFilter / 8;
293
    RohMesswertNick = MesswertNick;
294
    RohMesswertRoll = MesswertRoll;
295
 
296
// Beschleunigungssensor  ++++++++++++++++++++++++++++++++++++++++++++++++
297
        Mittelwert_AccNick = ((long)Mittelwert_AccNick * 3 + ((ACC_AMPLIFY * (long)AdWertAccNick))) / 4L;
298
        Mittelwert_AccRoll = ((long)Mittelwert_AccRoll * 3 + ((ACC_AMPLIFY * (long)AdWertAccRoll))) / 4L;
299
        Mittelwert_AccHoch = ((long)Mittelwert_AccHoch * 3 + ((long)AdWertAccHoch)) / 4L;
300
    IntegralAccNick += ACC_AMPLIFY * AdWertAccNick;
301
    IntegralAccRoll += ACC_AMPLIFY * AdWertAccRoll;
302
    NaviAccNick    += AdWertAccNick;
303
    NaviAccRoll    += AdWertAccRoll;
304
    NaviCntAcc++;
305
    IntegralAccZ  += Aktuell_az - NeutralAccZ;
306
 
307
//++++++++++++++++++++++++++++++++++++++++++++++++
308
// ADC einschalten
309
    ANALOG_ON;
310
        AdReady = 0;
311
//++++++++++++++++++++++++++++++++++++++++++++++++
312
 
313
    if(Mess_IntegralRoll > 93000L) winkel_roll = 93000L;
314
        else if(Mess_IntegralRoll <-93000L) winkel_roll = -93000L;
315
        else winkel_roll = Mess_IntegralRoll;
316
 
317
    if(Mess_IntegralNick > 93000L) winkel_nick = 93000L;
318
        else if(Mess_IntegralNick <-93000L) winkel_nick = -93000L;
319
        else winkel_nick = Mess_IntegralNick;
320
 
321
// Gier  ++++++++++++++++++++++++++++++++++++++++++++++++
322
   Mess_Integral_Gier += MesswertGier;
323
   ErsatzKompass += MesswertGier;
324
// Kopplungsanteil  +++++++++++++++++++++++++++++++++++++
325
      if(!Looping_Nick && !Looping_Roll && (EE_Parameter.GlobalConfig & CFG_ACHSENKOPPLUNG_AKTIV))
326
         {
327
            tmpl3 = (MesswertRoll * winkel_nick) / 2048L;
328
            tmpl3 *= Parameter_AchsKopplung2; //65
329
            tmpl3 /= 4096L;
330
            tmpl4 = (MesswertNick * winkel_roll) / 2048L;
331
            tmpl4 *= Parameter_AchsKopplung2; //65
332
            tmpl4 /= 4096L;
333
            KopplungsteilNickRoll = tmpl3;
334
            KopplungsteilRollNick = tmpl4;
335
            tmpl4 -= tmpl3;
336
            ErsatzKompass += tmpl4;
337
            if(!Parameter_CouplingYawCorrection) Mess_Integral_Gier -= tmpl4/2; // Gier nachhelfen
338
 
339
            tmpl = ((MesswertGier + tmpl4) * winkel_nick) / 2048L;
340
            tmpl *= Parameter_AchsKopplung1;  // 90
341
            tmpl /= 4096L;
342
            tmpl2 = ((MesswertGier + tmpl4) * winkel_roll) / 2048L;
343
            tmpl2 *= Parameter_AchsKopplung1;
344
            tmpl2 /= 4096L;
345
            if(abs(MesswertGier) > 64) if(labs(tmpl) > 128 || labs(tmpl2) > 128) TrichterFlug = 1;
346
            //MesswertGier += (Parameter_CouplingYawCorrection * tmpl4) / 256;
347
         }
348
      else  tmpl = tmpl2 = KopplungsteilNickRoll = KopplungsteilRollNick = 0;
349
 
350
TrimRoll = tmpl - tmpl2 / 100L;
351
TrimNick = -tmpl2 + tmpl / 100L;
352
 
353
// Kompasswert begrenzen  ++++++++++++++++++++++++++++++++++++++++++++++++
354
                    if(ErsatzKompass >= (360L * GIER_GRAD_FAKTOR)) ErsatzKompass -= 360L * GIER_GRAD_FAKTOR;  // 360° Umschlag
355
                    if(ErsatzKompass < 0)                          ErsatzKompass += 360L * GIER_GRAD_FAKTOR;
356
// Roll  ++++++++++++++++++++++++++++++++++++++++++++++++
357
            Mess_IntegralRoll2 += MesswertRoll + TrimRoll;
358
            Mess_IntegralRoll +=  MesswertRoll + TrimRoll - LageKorrekturRoll;
359
            if(Mess_IntegralRoll > Umschlag180Roll)
360
            {
361
             Mess_IntegralRoll  = -(Umschlag180Roll - 25000L);
362
             Mess_IntegralRoll2 = Mess_IntegralRoll;
363
            }
364
            if(Mess_IntegralRoll <-Umschlag180Roll)
365
            {
366
             Mess_IntegralRoll =  (Umschlag180Roll - 25000L);
367
             Mess_IntegralRoll2 = Mess_IntegralRoll;
368
            }
369
// Nick  ++++++++++++++++++++++++++++++++++++++++++++++++
370
            Mess_IntegralNick2 += MesswertNick + TrimNick;
371
            Mess_IntegralNick  += MesswertNick + TrimNick - LageKorrekturNick;
372
            if(Mess_IntegralNick > Umschlag180Nick)
373
             {
374
              Mess_IntegralNick = -(Umschlag180Nick - 25000L);
375
              Mess_IntegralNick2 = Mess_IntegralNick;
376
             }
377
            if(Mess_IntegralNick <-Umschlag180Nick)
378
            {
379
             Mess_IntegralNick =  (Umschlag180Nick - 25000L);
380
             Mess_IntegralNick2 = Mess_IntegralNick;
381
            }
382
 
383
    Integral_Gier  = Mess_Integral_Gier;
384
    IntegralNick = Mess_IntegralNick;
385
    IntegralRoll = Mess_IntegralRoll;
386
    IntegralNick2 = Mess_IntegralNick2;
387
    IntegralRoll2 = Mess_IntegralRoll2;
388
 
389
#define D_LIMIT 128
390
 
391
   MesswertNick = HiResNick / 8;
392
   MesswertRoll = HiResRoll / 8;
393
 
394
   if(AdWertNick < 15)   MesswertNick = -1000;  if(AdWertNick <  7)   MesswertNick = -2000;
395
   if(PlatinenVersion == 10)  { if(AdWertNick > 1010) MesswertNick = +1000;  if(AdWertNick > 1017) MesswertNick = +2000; }
396
   else  {  if(AdWertNick > 2000) MesswertNick = +1000;  if(AdWertNick > 2015) MesswertNick = +2000; }
397
   if(AdWertRoll < 15)   MesswertRoll = -1000;  if(AdWertRoll <  7)   MesswertRoll = -2000;
398
   if(PlatinenVersion == 10) { if(AdWertRoll > 1010) MesswertRoll = +1000;  if(AdWertRoll > 1017) MesswertRoll = +2000; }
399
   else { if(AdWertRoll > 2000) MesswertRoll = +1000;  if(AdWertRoll > 2015) MesswertRoll = +2000;  }
400
 
401
  if(Parameter_Gyro_D)
402
  {
403
   d2Nick = HiResNick - oldNick;
404
   oldNick = (oldNick + HiResNick)/2;
405
   if(d2Nick > D_LIMIT) d2Nick = D_LIMIT;
406
   else if(d2Nick < -D_LIMIT) d2Nick = -D_LIMIT;
407
   MesswertNick += (d2Nick * (signed int) Parameter_Gyro_D) / 16;
408
   d2Roll = HiResRoll - oldRoll;
409
   oldRoll = (oldRoll + HiResRoll)/2;
410
   if(d2Roll > D_LIMIT) d2Roll = D_LIMIT;
411
   else if(d2Roll < -D_LIMIT) d2Roll = -D_LIMIT;
412
   MesswertRoll += (d2Roll * (signed int) Parameter_Gyro_D) / 16;
413
   HiResNick += (d2Nick * (signed int) Parameter_Gyro_D);
414
   HiResRoll += (d2Roll * (signed int) Parameter_Gyro_D);
415
  }
416
 
417
 if(RohMesswertRoll > 0) TrimRoll  += ((long) abs(KopplungsteilNickRoll) * Parameter_CouplingYawCorrection) / 64L;
418
 else                    TrimRoll -= ((long) abs(KopplungsteilNickRoll) * Parameter_CouplingYawCorrection) / 64L;
419
 if(RohMesswertNick > 0) TrimNick += ((long) abs(KopplungsteilRollNick) * Parameter_CouplingYawCorrection) / 64L;
420
 else                    TrimNick -= ((long) abs(KopplungsteilRollNick) * Parameter_CouplingYawCorrection) / 64L;
421
 
422
  if(EE_Parameter.GlobalConfig & CFG_DREHRATEN_BEGRENZER && !Looping_Nick && !Looping_Roll)
423
  {
424
    if(RohMesswertNick > 256)       MesswertNick += 1 * (RohMesswertNick - 256);
425
    else if(RohMesswertNick < -256) MesswertNick += 1 * (RohMesswertNick + 256);
426
    if(RohMesswertRoll > 256)       MesswertRoll += 1 * (RohMesswertRoll - 256);
427
    else if(RohMesswertRoll < -256) MesswertRoll += 1 * (RohMesswertRoll + 256);
428
  }
429
 
430
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
431
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
432
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
433
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
434
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
435
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
436
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
437
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
438
}
439
 
440
//############################################################################
441
// Messwerte beim Ermitteln der Nullage
442
void CalibrierMittelwert(void)
443
//############################################################################
444
{
445
    if(PlatinenVersion == 13) SucheGyroOffset();
446
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
447
        ANALOG_OFF;
448
        MesswertNick = AdWertNick;
449
        MesswertRoll = AdWertRoll;
450
        MesswertGier = AdWertGier;
451
        Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
452
        Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
453
        Mittelwert_AccHoch = (long)AdWertAccHoch;
454
   // ADC einschalten
455
    ANALOG_ON;
456
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
457
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
458
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
459
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
460
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
461
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
462
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
463
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
464
 
465
        Umschlag180Nick = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
466
        Umschlag180Roll = (long) EE_Parameter.WinkelUmschlagRoll * 2500L;
467
}
468
 
469
//############################################################################
470
// Senden der Motorwerte per I2C-Bus
471
void SendMotorData(void)
472
//############################################################################
473
{
474
 unsigned char i;
475
    if(!MotorenEin)
476
        {
477
         MikroKopterFlags &= ~(FLAG_MOTOR_RUN | FLAG_FLY);
478
                 for(i=0;i<MAX_MOTORS;i++)
479
                  {
480
                   if(!PC_MotortestActive)  MotorTest[i] = 0;
481
                   Motor[i] = MotorTest[i];
482
                  }
483
          if(PC_MotortestActive) PC_MotortestActive--;
484
        }
485
        else MikroKopterFlags |= FLAG_MOTOR_RUN;
486
 
487
    DebugOut.Analog[12] = Motor[0];
488
    DebugOut.Analog[13] = Motor[1];
489
    DebugOut.Analog[14] = Motor[3];
490
    DebugOut.Analog[15] = Motor[2];
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_Hoehe_GPS_Z,EE_Parameter.Hoehe_GPS_Z,0,255);
512
 CHK_POTI(Parameter_KompassWirkung,EE_Parameter.KompassWirkung,0,255);
513
 CHK_POTI_MM(Parameter_Gyro_P,EE_Parameter.Gyro_P,10,255);
514
 CHK_POTI(Parameter_Gyro_I,EE_Parameter.Gyro_I,0,255);
515
 CHK_POTI(Parameter_Gyro_D,EE_Parameter.Gyro_D,0,255);
516
 CHK_POTI(Parameter_Gyro_Gier_P,EE_Parameter.Gyro_Gier_P,10,255);
517
 CHK_POTI(Parameter_Gyro_Gier_I,EE_Parameter.Gyro_Gier_I,0,255);
518
 CHK_POTI(Parameter_I_Faktor,EE_Parameter.I_Faktor,0,255);
519
 CHK_POTI(Parameter_UserParam1,EE_Parameter.UserParam1,0,255);
520
 CHK_POTI(Parameter_UserParam2,EE_Parameter.UserParam2,0,255);
521
 CHK_POTI(Parameter_UserParam3,EE_Parameter.UserParam3,0,255);
522
 CHK_POTI(Parameter_UserParam4,EE_Parameter.UserParam4,0,255);
523
 CHK_POTI(Parameter_UserParam5,EE_Parameter.UserParam5,0,255);
524
 CHK_POTI(Parameter_UserParam6,EE_Parameter.UserParam6,0,255);
525
 CHK_POTI(Parameter_UserParam7,EE_Parameter.UserParam7,0,255);
526
 CHK_POTI(Parameter_UserParam8,EE_Parameter.UserParam8,0,255);
527
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
528
 CHK_POTI(Parameter_ServoRollControl,EE_Parameter.ServoRollControl,0,255);
529
 CHK_POTI(Parameter_LoopGasLimit,EE_Parameter.LoopGasLimit,0,255);
530
 CHK_POTI(Parameter_AchsKopplung1,    EE_Parameter.AchsKopplung1,0,255);
531
 CHK_POTI(Parameter_AchsKopplung2,    EE_Parameter.AchsKopplung2,0,255);
532
 CHK_POTI(Parameter_CouplingYawCorrection,EE_Parameter.CouplingYawCorrection,0,255);
533
// CHK_POTI(Parameter_AchsGegenKopplung1,EE_Parameter.AchsGegenKopplung1,0,255);
534
 CHK_POTI(Parameter_DynamicStability,EE_Parameter.DynamicStability,0,255);
535
 CHK_POTI_MM(Parameter_J16Timing,EE_Parameter.J16Timing,1,255);
536
 CHK_POTI_MM(Parameter_J17Timing,EE_Parameter.J17Timing,1,255);
537
 CHK_POTI(Parameter_ExternalControl,EE_Parameter.ExternalControl,0,255);
538
 Ki = 10300 / (Parameter_I_Faktor + 1);
539
 MAX_GAS = EE_Parameter.Gas_Max;
540
 MIN_GAS = EE_Parameter.Gas_Min;
541
}
542
 
543
 
544
//############################################################################
545
//
546
void MotorRegler(void)
547
//############################################################################
548
{
549
         int pd_ergebnis_nick,pd_ergebnis_roll,tmp_int, tmp_int2;
550
         int GierMischanteil,GasMischanteil;
551
     static long SummeNick=0,SummeRoll=0;
552
     static long sollGier = 0,tmp_long,tmp_long2;
553
     static long IntegralFehlerNick = 0;
554
     static long IntegralFehlerRoll = 0;
555
         static unsigned int RcLostTimer;
556
         static unsigned char delay_neutral = 0;
557
         static unsigned char delay_einschalten = 0,delay_ausschalten = 0;
558
     static char TimerWerteausgabe = 0;
559
     static char NeueKompassRichtungMerken = 0;
560
     static long ausgleichNick, ausgleichRoll;
561
     int IntegralNickMalFaktor,IntegralRollMalFaktor;
562
         unsigned char i;
563
    if(--LoadHandler == 0) LoadHandler = 5; // verteilt die Prozessorlast
564
        Mittelwert();
565
    GRN_ON;
566
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
567
// Gaswert ermitteln
568
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
569
        GasMischanteil = StickGas;
570
    if(GasMischanteil < MIN_GAS + 10) GasMischanteil = MIN_GAS + 10;
571
 
572
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
573
// Empfang schlecht
574
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
575
   if(SenderOkay < 100)
576
        {
577
        if(RcLostTimer) RcLostTimer--;
578
        else
579
         {
580
          MotorenEin = 0;
581
          MikroKopterFlags &= ~FLAG_NOTLANDUNG;
582
         }
583
        ROT_ON;
584
        if(modell_fliegt > 1000)  // wahrscheinlich in der Luft --> langsam absenken
585
            {
586
            GasMischanteil = EE_Parameter.NotGas;
587
            MikroKopterFlags |= FLAG_NOTLANDUNG;
588
            PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
589
            PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
590
            PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
591
            PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
592
            PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] = 0;
593
            }
594
         else MotorenEin = 0;
595
        }
596
        else
597
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
598
// Emfang gut
599
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
600
        if(SenderOkay > 140)
601
            {
602
                        MikroKopterFlags &= ~FLAG_NOTLANDUNG;
603
            RcLostTimer = EE_Parameter.NotGasZeit * 50;
604
            if(GasMischanteil > 40 && MotorenEin)
605
                {
606
                if(modell_fliegt < 0xffff) modell_fliegt++;
607
                }
608
            if((modell_fliegt < 256))
609
                {
610
                SummeNick = 0;
611
                SummeRoll = 0;
612
                if(modell_fliegt == 250)
613
                 {
614
                  NeueKompassRichtungMerken = 1;
615
                  sollGier = 0;
616
                  Mess_Integral_Gier = 0;
617
//                  Mess_Integral_Gier2 = 0;
618
                 }
619
                } else MikroKopterFlags |= FLAG_FLY;
620
 
621
            if((PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] > 80) && MotorenEin == 0)
622
                {
623
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
624
// auf Nullwerte kalibrieren
625
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
626
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)  // Neutralwerte
627
                    {
628
                    if(++delay_neutral > 200)  // nicht sofort
629
                        {
630
                        GRN_OFF;
631
                        MotorenEin = 0;
632
                        delay_neutral = 0;
633
                        modell_fliegt = 0;
634
                        if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70 || abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) > 70)
635
                        {
636
                         unsigned char setting=1;
637
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 1;
638
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 2;
639
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 3;
640
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 4;
641
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 5;
642
                         SetActiveParamSetNumber(setting);  // aktiven Datensatz merken
643
                        }
644
//                        else
645
                         if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) < 30 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -70)
646
                          {
647
                           WinkelOut.CalcState = 1;
648
                           beeptime = 1000;
649
                          }
650
                          else
651
                          {
652
                               ReadParameterSet(GetActiveParamSetNumber(), (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE);
653
                           if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
654
                            {
655
                             if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
656
                            }
657
                                                   ServoActive = 0;
658
                           SetNeutral();
659
                                                   ServoActive = 1;
660
                                                   DDRD  |=0x80; // enable J7 -> Servo signal
661
                           Piep(GetActiveParamSetNumber(),120);
662
                         }
663
                        }
664
                    }
665
                 else
666
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)  // ACC Neutralwerte speichern
667
                    {
668
                    if(++delay_neutral > 200)  // nicht sofort
669
                        {
670
                        GRN_OFF;
671
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],0xff); // Werte löschen
672
                        MotorenEin = 0;
673
                        delay_neutral = 0;
674
                        modell_fliegt = 0;
675
                        SetNeutral();
676
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],NeutralAccX / 256); // ACC-NeutralWerte speichern
677
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1],NeutralAccX % 256); // ACC-NeutralWerte speichern
678
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL],NeutralAccY / 256);
679
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1],NeutralAccY % 256);
680
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z],(int)NeutralAccZ / 256);
681
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1],(int)NeutralAccZ % 256);
682
                        Piep(GetActiveParamSetNumber(),120);
683
                        }
684
                    }
685
                 else delay_neutral = 0;
686
                }
687
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
688
// Gas ist unten
689
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
690
            if(PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] < 35-120)
691
                {
692
                // Starten
693
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)
694
                    {
695
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
696
// Einschalten
697
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
698
                    if(++delay_einschalten > 200)
699
                        {
700
                        delay_einschalten = 200;
701
                        modell_fliegt = 1;
702
                        MotorenEin = 1;
703
                        sollGier = 0;
704
                        Mess_Integral_Gier = 0;
705
                        Mess_Integral_Gier2 = 0;
706
                        Mess_IntegralNick = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccNick;
707
                        Mess_IntegralRoll = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccRoll;
708
                        Mess_IntegralNick2 = IntegralNick;
709
                        Mess_IntegralRoll2 = IntegralRoll;
710
                        SummeNick = 0;
711
                        SummeRoll = 0;
712
                        MikroKopterFlags |= FLAG_START;
713
                        KompassEinschaltStartwert = KompassValue;
714
                        }
715
                    }
716
                    else delay_einschalten = 0;
717
                //Auf Neutralwerte setzen
718
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
719
// Auschalten
720
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
721
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)
722
                    {
723
                    if(++delay_ausschalten > 200)  // nicht sofort
724
                        {
725
                         MotorenEin = 0;
726
                         delay_ausschalten = 200;
727
                         modell_fliegt = 0;
728
                        }
729
                    }
730
                else delay_ausschalten = 0;
731
                }
732
            }
733
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
734
// neue Werte von der Funke
735
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
736
 
737
 if(!NewPpmData-- || (MikroKopterFlags & FLAG_NOTLANDUNG))
738
  {
739
        static int stick_nick,stick_roll;
740
        int e_stick_nick, e_stick_nick_diff, e_stick_roll, e_stick_roll_diff;
741
        int stick_p, stick_d;
742
 
743
    ParameterZuordnung();
744
 
745
        stick_p = EE_Parameter.Stick_P;
746
        stick_d = EE_Parameter.Stick_D;
747
 
748
        if (Parameter_UserParam8) {
749
 
750
                int angle, stick_nick_tmp, stick_roll_tmp;
751
 
752
                if (Parameter_UserParam8 == 254) {
753
                        angle = -45;
754
                } else if (Parameter_UserParam8 > 128) {
755
                        angle = KompassValue;
756
                } else {
757
                        angle = (ErsatzKompass / GIER_GRAD_FAKTOR);
758
                }
759
 
760
                angle = ((KompassEinschaltStartwert - angle + 360) % 360);
761
 
762
                stick_nick_tmp = (long)c_cos_8192(angle) * (long)PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] / 8192L;
763
                stick_roll_tmp = (long)c_sin_8192(angle) * (long)PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] / 8192L;
764
 
765
                e_stick_nick = stick_roll_tmp + stick_nick_tmp;
766
                e_stick_roll = stick_roll_tmp - stick_nick_tmp;
767
 
768
                stick_nick_tmp = (long)c_cos_8192(angle) * (long)PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] / 8192L;
769
                stick_roll_tmp = (long)c_sin_8192(angle) * (long)PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] / 8192L;
770
 
771
                e_stick_nick_diff = stick_roll_tmp + stick_nick_tmp;
772
                e_stick_roll_diff = stick_roll_tmp - stick_nick_tmp;
773
 
774
                if (Parameter_UserParam8 == 255) {
775
 
776
                        int gier = abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]);
777
                        if (gier > 100) {
778
                                stick_d /= 3;
779
                        } else if (gier > 50) {
780
                                stick_d /= 2;
781
                        }
782
 
783
                        if (stick_d < 1) {
784
                                stick_d = 1;
785
                        }
786
 
787
                }
788
 
789
/*
790
DebugOut.Analog[12] = PPM_in[EE_Parameter.Kanalbelegung[K_NICK]];
791
DebugOut.Analog[13] = e_stick_nick;
792
DebugOut.Analog[14] = PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]];
793
DebugOut.Analog[15] = e_stick_roll;
794
*/
795
 
796
        } else {
797
 
798
                e_stick_nick = PPM_in[EE_Parameter.Kanalbelegung[K_NICK]];
799
                e_stick_roll = PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]];
800
                e_stick_nick_diff = PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]];
801
                e_stick_roll_diff = PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]];
802
 
803
        }
804
 
805
    stick_nick = (stick_nick * 3 + e_stick_nick * stick_p) / 4;
806
    stick_nick += e_stick_nick_diff * stick_d;
807
    StickNick = stick_nick - (GPS_Nick + GPS_Nick2);
808
 
809
    stick_roll = (stick_roll * 3 + e_stick_roll * stick_p) / 4;
810
    stick_roll += e_stick_roll_diff * stick_d;
811
    StickRoll = stick_roll - (GPS_Roll + GPS_Roll2);
812
 
813
    StickGier = -PPM_in[EE_Parameter.Kanalbelegung[K_GIER]];
814
        if(StickGier > 2) StickGier -= 2;       else
815
        if(StickGier < -2) StickGier += 2; else StickGier = 0;
816
 
817
        StickGas  = PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] + 120;
818
 
819
    GyroFaktor     = (Parameter_Gyro_P + 10.0);
820
    IntegralFaktor = Parameter_Gyro_I;
821
    GyroFaktorGier     = (Parameter_Gyro_Gier_P + 10.0);
822
    IntegralFaktorGier = Parameter_Gyro_Gier_I;
823
 
824
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
825
//+ Analoge Steuerung per Seriell
826
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
827
   if(ExternControl.Config & 0x01 && Parameter_ExternalControl > 128)
828
    {
829
         StickNick += (int) ExternControl.Nick * (int) EE_Parameter.Stick_P;
830
         StickRoll += (int) ExternControl.Roll * (int) EE_Parameter.Stick_P;
831
         StickGier += ExternControl.Gier;
832
     ExternHoehenValue =  (int) ExternControl.Hight * (int)EE_Parameter.Hoehe_Verstaerkung;
833
     if(ExternControl.Gas < StickGas) StickGas = ExternControl.Gas;
834
    }
835
    if(StickGas < 0) StickGas = 0;
836
 
837
    if(EE_Parameter.GlobalConfig & CFG_HEADING_HOLD) IntegralFaktor =  0;
838
    //if(GyroFaktor < 0) GyroFaktor = 0;
839
    //if(IntegralFaktor < 0) IntegralFaktor = 0;
840
 
841
    if(abs(StickNick/STICK_GAIN) > MaxStickNick)
842
     {
843
      MaxStickNick = abs(StickNick)/STICK_GAIN;
844
      if(MaxStickNick > 100) MaxStickNick = 100;
845
     }
846
     else MaxStickNick--;
847
    if(abs(StickRoll/STICK_GAIN) > MaxStickRoll)
848
     {
849
      MaxStickRoll = abs(StickRoll)/STICK_GAIN;
850
      if(MaxStickRoll > 100) MaxStickRoll = 100;
851
     }
852
     else MaxStickRoll--;
853
    if(MikroKopterFlags & FLAG_NOTLANDUNG)  {MaxStickNick = 0; MaxStickRoll = 0;}
854
 
855
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
856
// Looping?
857
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
858
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_LINKS)  Looping_Links = 1;
859
  else
860
   {
861
     {
862
      if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Links = 0;
863
     }
864
   }
865
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < -EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_RECHTS) Looping_Rechts = 1;
866
   else
867
   {
868
   if(Looping_Rechts) // Hysterese
869
     {
870
      if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Rechts = 0;
871
     }
872
   }
873
 
874
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_OBEN) Looping_Oben = 1;
875
  else
876
   {
877
    if(Looping_Oben)  // Hysterese
878
     {
879
      if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Oben = 0;
880
     }
881
   }
882
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_UNTEN) Looping_Unten = 1;
883
   else
884
   {
885
    if(Looping_Unten) // Hysterese
886
     {
887
      if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Unten = 0;
888
     }
889
   }
890
 
891
   if(Looping_Links || Looping_Rechts)   Looping_Roll = 1; else Looping_Roll = 0;
892
   if(Looping_Oben  || Looping_Unten) {  Looping_Nick = 1; Looping_Roll = 0; Looping_Links = 0; Looping_Rechts = 0;} else Looping_Nick = 0;
893
  } // Ende neue Funken-Werte
894
 
895
  if(Looping_Roll || Looping_Nick)
896
   {
897
    if(GasMischanteil > EE_Parameter.LoopGasLimit) GasMischanteil = EE_Parameter.LoopGasLimit;
898
        TrichterFlug = 1;
899
   }
900
 
901
 
902
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
903
// Bei Empfangsausfall im Flug
904
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
905
   if(MikroKopterFlags & FLAG_NOTLANDUNG)
906
    {
907
     StickGier = 0;
908
     StickNick = 0;
909
     StickRoll = 0;
910
     GyroFaktor     = 90;
911
     IntegralFaktor = 120;
912
     GyroFaktorGier     = 90;
913
     IntegralFaktorGier = 120;
914
     Looping_Roll = 0;
915
     Looping_Nick = 0;
916
    }
917
 
918
 
919
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
920
// Integrale auf ACC-Signal abgleichen
921
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
922
#define ABGLEICH_ANZAHL 256L
923
 
924
 MittelIntegralNick  += IntegralNick;    // Für die Mittelwertbildung aufsummieren
925
 MittelIntegralRoll  += IntegralRoll;
926
 MittelIntegralNick2 += IntegralNick2;
927
 MittelIntegralRoll2 += IntegralRoll2;
928
 
929
 if(Looping_Nick || Looping_Roll)
930
  {
931
    IntegralAccNick = 0;
932
    IntegralAccRoll = 0;
933
    MittelIntegralNick = 0;
934
    MittelIntegralRoll = 0;
935
    MittelIntegralNick2 = 0;
936
    MittelIntegralRoll2 = 0;
937
    Mess_IntegralNick2 = Mess_IntegralNick;
938
    Mess_IntegralRoll2 = Mess_IntegralRoll;
939
    ZaehlMessungen = 0;
940
    LageKorrekturNick = 0;
941
    LageKorrekturRoll = 0;
942
  }
943
 
944
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
945
  if(!Looping_Nick && !Looping_Roll && (Aktuell_az > 512 || MotorenEin))
946
  {
947
   long tmp_long, tmp_long2;
948
   if(FromNaviCtrl_Value.Kalman_K != -1 /*&& !TrichterFlug*/)
949
     {
950
      tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
951
      tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
952
      tmp_long  = (tmp_long  * FromNaviCtrl_Value.Kalman_K) / (32 * 16);
953
      tmp_long2 = (tmp_long2 * FromNaviCtrl_Value.Kalman_K) / (32 * 16);
954
     if((MaxStickNick > 64) || (MaxStickRoll > 64))
955
      {
956
      tmp_long  /= 2;
957
      tmp_long2 /= 2;
958
      }
959
     if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)
960
      {
961
      tmp_long  /= 3;
962
      tmp_long2 /= 3;
963
      }
964
      if(tmp_long >  (long) FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long  = (long) FromNaviCtrl_Value.Kalman_MaxFusion;
965
      if(tmp_long <  (long)-FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long  = (long)-FromNaviCtrl_Value.Kalman_MaxFusion;
966
      if(tmp_long2 > (long) FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long2 = (long) FromNaviCtrl_Value.Kalman_MaxFusion;
967
      if(tmp_long2 < (long)-FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long2 = (long)-FromNaviCtrl_Value.Kalman_MaxFusion;
968
     }
969
     else
970
     {
971
      tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
972
      tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
973
      tmp_long /= 16;
974
      tmp_long2 /= 16;
975
     if((MaxStickNick > 64) || (MaxStickRoll > 64))
976
      {
977
      tmp_long  /= 3;
978
      tmp_long2 /= 3;
979
      }
980
     if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)
981
      {
982
      tmp_long  /= 3;
983
      tmp_long2 /= 3;
984
      }
985
 
986
#define AUSGLEICH  32
987
      if(tmp_long >  AUSGLEICH)  tmp_long  = AUSGLEICH;
988
      if(tmp_long < -AUSGLEICH)  tmp_long  =-AUSGLEICH;
989
      if(tmp_long2 > AUSGLEICH)  tmp_long2 = AUSGLEICH;
990
      if(tmp_long2 <-AUSGLEICH)  tmp_long2 =-AUSGLEICH;
991
     }
992
 
993
//if(Poti2 > 20) { tmp_long = 0; tmp_long2 = 0;}
994
   Mess_IntegralNick -= tmp_long;
995
   Mess_IntegralRoll -= tmp_long2;
996
  }
997
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
998
 if(ZaehlMessungen >= ABGLEICH_ANZAHL)
999
 {
1000
  static int cnt = 0;
1001
  static char last_n_p,last_n_n,last_r_p,last_r_n;
1002
  static long MittelIntegralNick_Alt,MittelIntegralRoll_Alt;
1003
  if(!Looping_Nick && !Looping_Roll && !TrichterFlug && EE_Parameter.Driftkomp)
1004
  {
1005
    MittelIntegralNick  /= ABGLEICH_ANZAHL;
1006
    MittelIntegralRoll  /= ABGLEICH_ANZAHL;
1007
        IntegralAccNick = (EE_Parameter.GyroAccFaktor * IntegralAccNick) / ABGLEICH_ANZAHL;
1008
        IntegralAccRoll = (EE_Parameter.GyroAccFaktor * IntegralAccRoll) / ABGLEICH_ANZAHL;
1009
    IntegralAccZ    = IntegralAccZ / ABGLEICH_ANZAHL;
1010
#define MAX_I 0//(Poti2/10)
1011
// Nick ++++++++++++++++++++++++++++++++++++++++++++++++
1012
    IntegralFehlerNick = (long)(MittelIntegralNick - (long)IntegralAccNick);
1013
    ausgleichNick = IntegralFehlerNick / EE_Parameter.GyroAccAbgleich;
1014
// Roll ++++++++++++++++++++++++++++++++++++++++++++++++
1015
    IntegralFehlerRoll = (long)(MittelIntegralRoll - (long)IntegralAccRoll);
1016
    ausgleichRoll = IntegralFehlerRoll / EE_Parameter.GyroAccAbgleich;
1017
 
1018
    LageKorrekturNick = ausgleichNick / ABGLEICH_ANZAHL;
1019
    LageKorrekturRoll = ausgleichRoll / ABGLEICH_ANZAHL;
1020
 
1021
   if(((MaxStickNick > 64) || (MaxStickRoll > 64) || (abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)) && (FromNaviCtrl_Value.Kalman_K == -1))
1022
    {
1023
     LageKorrekturNick /= 2;
1024
     LageKorrekturRoll /= 2;
1025
    }
1026
 
1027
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1028
// Gyro-Drift ermitteln
1029
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1030
    MittelIntegralNick2 /= ABGLEICH_ANZAHL;
1031
    MittelIntegralRoll2 /= ABGLEICH_ANZAHL;
1032
    tmp_long  = IntegralNick2 - IntegralNick;
1033
    tmp_long2 = IntegralRoll2 - IntegralRoll;
1034
    //DebugOut.Analog[25] = MittelIntegralRoll2 / 26;
1035
 
1036
    IntegralFehlerNick = tmp_long;
1037
    IntegralFehlerRoll = tmp_long2;
1038
    Mess_IntegralNick2 -= IntegralFehlerNick;
1039
    Mess_IntegralRoll2 -= IntegralFehlerRoll;
1040
 
1041
  if(EE_Parameter.Driftkomp)
1042
   {
1043
    if(GierGyroFehler > ABGLEICH_ANZAHL/2) { AdNeutralGier++; AdNeutralGierBias++; }
1044
    if(GierGyroFehler <-ABGLEICH_ANZAHL/2) { AdNeutralGier--; AdNeutralGierBias--; }
1045
   }
1046
    GierGyroFehler = 0;
1047
 
1048
 
1049
#define FEHLER_LIMIT  (ABGLEICH_ANZAHL / 2)
1050
#define FEHLER_LIMIT1 (ABGLEICH_ANZAHL * 2) //4
1051
#define FEHLER_LIMIT2 (ABGLEICH_ANZAHL * 16) //16
1052
#define BEWEGUNGS_LIMIT 20000
1053
// Nick +++++++++++++++++++++++++++++++++++++++++++++++++
1054
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
1055
        if(labs(IntegralFehlerNick) > FEHLER_LIMIT1) cnt = 4;
1056
        if(labs(MittelIntegralNick_Alt - MittelIntegralNick) < BEWEGUNGS_LIMIT || (FromNaviCtrl_Value.Kalman_MaxDrift > 3*8))
1057
        {
1058
        if(IntegralFehlerNick >  FEHLER_LIMIT2)
1059
         {
1060
           if(last_n_p)
1061
           {
1062
            cnt += labs(IntegralFehlerNick) / (FEHLER_LIMIT2 / 8);
1063
            ausgleichNick = IntegralFehlerNick / 8;
1064
            if(ausgleichNick > 5000) ausgleichNick = 5000;
1065
            LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
1066
           }
1067
           else last_n_p = 1;
1068
         } else  last_n_p = 0;
1069
        if(IntegralFehlerNick < -FEHLER_LIMIT2)
1070
         {
1071
           if(last_n_n)
1072
            {
1073
             cnt += labs(IntegralFehlerNick) / (FEHLER_LIMIT2 / 8);
1074
             ausgleichNick = IntegralFehlerNick / 8;
1075
             if(ausgleichNick < -5000) ausgleichNick = -5000;
1076
             LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
1077
            }
1078
           else last_n_n = 1;
1079
         } else  last_n_n = 0;
1080
        }
1081
        else
1082
        {
1083
         cnt = 0;
1084
         KompassSignalSchlecht = 1000;
1085
        }
1086
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
1087
                if(FromNaviCtrl_Value.Kalman_MaxDrift) if(cnt > FromNaviCtrl_Value.Kalman_MaxDrift) cnt = FromNaviCtrl_Value.Kalman_MaxDrift;
1088
        if(IntegralFehlerNick >  FEHLER_LIMIT)   AdNeutralNick += cnt;
1089
        if(IntegralFehlerNick < -FEHLER_LIMIT)   AdNeutralNick -= cnt;
1090
 
1091
// Roll +++++++++++++++++++++++++++++++++++++++++++++++++
1092
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
1093
        if(labs(IntegralFehlerRoll) > FEHLER_LIMIT1) cnt = 4;
1094
        ausgleichRoll = 0;
1095
        if(labs(MittelIntegralRoll_Alt - MittelIntegralRoll) < BEWEGUNGS_LIMIT || (FromNaviCtrl_Value.Kalman_MaxDrift > 3*8))
1096
        {
1097
        if(IntegralFehlerRoll >  FEHLER_LIMIT2)
1098
         {
1099
           if(last_r_p)
1100
           {
1101
            cnt += labs(IntegralFehlerRoll) / (FEHLER_LIMIT2 / 8);
1102
            ausgleichRoll = IntegralFehlerRoll / 8;
1103
            if(ausgleichRoll > 5000) ausgleichRoll = 5000;
1104
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
1105
           }
1106
           else last_r_p = 1;
1107
         } else  last_r_p = 0;
1108
        if(IntegralFehlerRoll < -FEHLER_LIMIT2)
1109
         {
1110
           if(last_r_n)
1111
           {
1112
            cnt += labs(IntegralFehlerRoll) / (FEHLER_LIMIT2 / 8);
1113
            ausgleichRoll = IntegralFehlerRoll / 8;
1114
            if(ausgleichRoll < -5000) ausgleichRoll = -5000;
1115
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
1116
           }
1117
           else last_r_n = 1;
1118
         } else  last_r_n = 0;
1119
        } else
1120
        {
1121
         cnt = 0;
1122
         KompassSignalSchlecht = 1000;
1123
        }
1124
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
1125
                if(FromNaviCtrl_Value.Kalman_MaxDrift) if(cnt > FromNaviCtrl_Value.Kalman_MaxDrift) cnt = FromNaviCtrl_Value.Kalman_MaxDrift;
1126
        if(IntegralFehlerRoll >  FEHLER_LIMIT)   AdNeutralRoll += cnt;
1127
        if(IntegralFehlerRoll < -FEHLER_LIMIT)   AdNeutralRoll -= cnt;
1128
  }
1129
  else
1130
  {
1131
   LageKorrekturRoll = 0;
1132
   LageKorrekturNick = 0;
1133
   TrichterFlug = 0;
1134
  }
1135
 
1136
  if(!IntegralFaktor) { LageKorrekturRoll = 0; LageKorrekturNick = 0;} // z.B. bei HH
1137
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
1138
   MittelIntegralNick_Alt = MittelIntegralNick;
1139
   MittelIntegralRoll_Alt = MittelIntegralRoll;
1140
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
1141
    IntegralAccNick = 0;
1142
    IntegralAccRoll = 0;
1143
    IntegralAccZ = 0;
1144
    MittelIntegralNick = 0;
1145
    MittelIntegralRoll = 0;
1146
    MittelIntegralNick2 = 0;
1147
    MittelIntegralRoll2 = 0;
1148
    ZaehlMessungen = 0;
1149
 } //  ZaehlMessungen >= ABGLEICH_ANZAHL
1150
 
1151
 
1152
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1153
//  Gieren
1154
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1155
//    if(GasMischanteil < 35) { if(StickGier > 10) StickGier = 10; else if(StickGier < -10) StickGier = -10;};
1156
    if(abs(StickGier) > 15) // war 35
1157
     {
1158
      KompassSignalSchlecht = 1000;
1159
      if(!(EE_Parameter.GlobalConfig & CFG_KOMPASS_FIX))
1160
       {
1161
         NeueKompassRichtungMerken = 1;
1162
        };
1163
     }
1164
    tmp_int  = (long) EE_Parameter.Gier_P * ((long)StickGier * abs(StickGier)) / 512L; // expo  y = ax + bx²
1165
    tmp_int += (EE_Parameter.Gier_P * StickGier) / 4;
1166
    sollGier = tmp_int;
1167
    Mess_Integral_Gier -= tmp_int;
1168
    if(Mess_Integral_Gier > 50000) Mess_Integral_Gier = 50000;  // begrenzen
1169
    if(Mess_Integral_Gier <-50000) Mess_Integral_Gier =-50000;
1170
 
1171
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1172
//  Kompass
1173
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1174
//DebugOut.Analog[16] = KompassSignalSchlecht;
1175
 
1176
    if(KompassValue && (EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV))
1177
     {
1178
       int w,v,r,fehler,korrektur;
1179
       w = abs(IntegralNick /512); // mit zunehmender Neigung den Einfluss drosseln
1180
       v = abs(IntegralRoll /512);
1181
       if(v > w) w = v; // grösste Neigung ermitteln
1182
       korrektur = w / 8 + 1;
1183
       fehler = ((540 + KompassValue - (ErsatzKompass/GIER_GRAD_FAKTOR)) % 360) - 180;
1184
       if(abs(MesswertGier) > 128)
1185
            {
1186
                 fehler = 0;
1187
                }
1188
       if(!KompassSignalSchlecht && w < 25)
1189
        {
1190
        GierGyroFehler += fehler;
1191
        if(NeueKompassRichtungMerken)
1192
         {
1193
//         beeptime = 200;
1194
//         KompassStartwert = KompassValue;
1195
                  ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
1196
          KompassStartwert = (ErsatzKompass/GIER_GRAD_FAKTOR);
1197
          NeueKompassRichtungMerken = 0;
1198
         }
1199
        }
1200
       ErsatzKompass += (fehler * 8) / korrektur;
1201
       w = (w * Parameter_KompassWirkung) / 32;           // auf die Wirkung normieren
1202
       w = Parameter_KompassWirkung - w;                  // Wirkung ggf drosseln
1203
       if(w >= 0)
1204
        {
1205
          if(!KompassSignalSchlecht)
1206
          {
1207
           v = 64 + ((MaxStickNick + MaxStickRoll)) / 8;
1208
           r = ((540 + (ErsatzKompass/GIER_GRAD_FAKTOR) - KompassStartwert) % 360) - 180;
1209
//           r = KompassRichtung;
1210
           v = (r * w) / v;  // nach Kompass ausrichten
1211
           w = 3 * Parameter_KompassWirkung;
1212
           if(v > w) v = w; // Begrenzen
1213
           else
1214
           if(v < -w) v = -w;
1215
           Mess_Integral_Gier += v;
1216
          }
1217
          if(KompassSignalSchlecht) KompassSignalSchlecht--;
1218
        }
1219
        else KompassSignalSchlecht = 500; // so lange das Signal taub stellen --> ca. 1 sek
1220
     }
1221
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1222
 
1223
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1224
//  Debugwerte zuordnen
1225
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1226
  if(!TimerWerteausgabe--)
1227
   {
1228
    TimerWerteausgabe = 24;
1229
 
1230
    DebugOut.Analog[0] = IntegralNick / (EE_Parameter.GyroAccFaktor * 4);
1231
    DebugOut.Analog[1] = IntegralRoll / (EE_Parameter.GyroAccFaktor * 4);
1232
    DebugOut.Analog[2] = Mittelwert_AccNick / 4;
1233
    DebugOut.Analog[3] = Mittelwert_AccRoll / 4;
1234
    DebugOut.Analog[4] = MesswertGier;
1235
    DebugOut.Analog[5] = HoehenWert/5;
1236
    DebugOut.Analog[6] = Aktuell_az;//(Mess_Integral_Hoch / 512);//Aktuell_az;
1237
    DebugOut.Analog[8] = KompassValue;
1238
    DebugOut.Analog[9] = UBat;
1239
    DebugOut.Analog[10] = SenderOkay;
1240
    DebugOut.Analog[11] = ErsatzKompass / GIER_GRAD_FAKTOR;
1241
    //DebugOut.Analog[16] = Mittelwert_AccHoch;
1242
    //DebugOut.Analog[17] = FromNaviCtrl_Value.Distance;
1243
    DebugOut.Analog[18] = VarioMeter;
1244
    DebugOut.Analog[19] = WinkelOut.CalcState;
1245
    DebugOut.Analog[20] = ServoNickValue;
1246
//    DebugOut.Analog[22] = FromNaviCtrl_Value.GpsZ;
1247
//    DebugOut.Analog[24] = MesswertNick/2;
1248
//    DebugOut.Analog[25] = MesswertRoll/2;
1249
//    DebugOut.Analog[27] = (int)FromNaviCtrl_Value.Kalman_MaxDrift;
1250
//    DebugOut.Analog[28] = (int)FromNaviCtrl_Value.Kalman_MaxFusion;
1251
//    DebugOut.Analog[29] = (int)FromNaviCtrl_Value.Kalman_K;
1252
    //DebugOut.Analog[28] = I2CError;
1253
//    DebugOut.Analog[29] = FromNaviCtrl_Value.SerialDataOkay;
1254
    DebugOut.Analog[30] = GPS_Nick;
1255
    DebugOut.Analog[31] = GPS_Roll;
1256
  }
1257
 
1258
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1259
//  Drehgeschwindigkeit und -winkel zu einem Istwert zusammenfassen
1260
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1261
  if(TrichterFlug)  { SummeRoll = 0; SummeNick = 0;};
1262
 
1263
  if(!Looping_Nick) IntegralNickMalFaktor = (IntegralNick * IntegralFaktor) /  (44000 / STICK_GAIN); else IntegralNickMalFaktor = 0;
1264
  if(!Looping_Roll) IntegralRollMalFaktor = (IntegralRoll * IntegralFaktor) /  (44000 / STICK_GAIN); else IntegralRollMalFaktor = 0;
1265
 
1266
#define TRIM_MAX 200
1267
 if(TrimNick > TRIM_MAX) TrimNick = TRIM_MAX; else  if(TrimNick <-TRIM_MAX) TrimNick =-TRIM_MAX;
1268
 if(TrimRoll > TRIM_MAX) TrimRoll = TRIM_MAX; else  if(TrimRoll <-TRIM_MAX) TrimRoll =-TRIM_MAX;
1269
 
1270
    MesswertNick = IntegralNickMalFaktor + (long)((long)MesswertNick * GyroFaktor + (long)TrimNick * 128L) / (256L / STICK_GAIN);
1271
    MesswertRoll = IntegralRollMalFaktor + (long)((long)MesswertRoll * GyroFaktor + (long)TrimRoll * 128L) / (256L / STICK_GAIN);
1272
    MesswertGier = (long)(MesswertGier * 2 * (long)GyroFaktorGier) / (256L / STICK_GAIN) + (long)(Integral_Gier * IntegralFaktorGier) / (2 * (44000 / STICK_GAIN));
1273
 
1274
    // Maximalwerte abfangen
1275
//    #define MAX_SENSOR  (4096*STICK_GAIN)
1276
    #define MAX_SENSOR  (4096*4)
1277
    if(MesswertNick >  MAX_SENSOR) MesswertNick =  MAX_SENSOR;
1278
    if(MesswertNick < -MAX_SENSOR) MesswertNick = -MAX_SENSOR;
1279
    if(MesswertRoll >  MAX_SENSOR) MesswertRoll =  MAX_SENSOR;
1280
    if(MesswertRoll < -MAX_SENSOR) MesswertRoll = -MAX_SENSOR;
1281
    if(MesswertGier >  MAX_SENSOR) MesswertGier =  MAX_SENSOR;
1282
    if(MesswertGier < -MAX_SENSOR) MesswertGier = -MAX_SENSOR;
1283
 
1284
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1285
// Höhenregelung
1286
// Die Höhenregelung schwächt lediglich das Gas ab, erhöht es allerdings nicht
1287
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1288
  if(UBat > BattLowVoltageWarning) GasMischanteil = ((unsigned int)GasMischanteil * BattLowVoltageWarning) / UBat; // Gas auf das aktuelle Spannungvieveau beziehen
1289
  GasMischanteil *= STICK_GAIN;
1290
 
1291
        // if height control is activated
1292
 if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG) && !(Looping_Roll || Looping_Nick))  // Höhenregelung
1293
        {
1294
                #define HOOVER_GAS_AVERAGE 4096L                // 4096 * 2ms = 8.2s averaging
1295
                #define HC_GAS_AVERAGE 4                        // 4 * 2ms= 8ms averaging
1296
                #define OPA_OFFSET_STEP 10
1297
                int HCGas, HeightDeviation;
1298
                static int HeightTrimming = 0;  // rate for change of height setpoint
1299
                static int FilterHCGas = 0;
1300
                static int StickGasHoover = 120, HooverGas = 0, HooverGasMin = 0, HooverGasMax = 1023;
1301
                static unsigned long HooverGasFilter = 0;
1302
                static unsigned char delay = 100, BaroAtUpperLimit = 0, BaroAtLowerLimit = 0;
1303
            int CosAttitude;    // for projection of hoover gas
1304
 
1305
                // get the current hooverpoint
1306
//    if(LoadHandler == 1)
1307
     {
1308
                DebugOut.Analog[21] = HooverGas;
1309
                DebugOut.Analog[18] = VarioMeter;
1310
 
1311
        // Expand the measurement
1312
                // measurement of air pressure close to upper limit and no overflow in correction of the new OCR0A value occurs
1313
          if(!BaroExpandActive)
1314
                   {
1315
                        if(MessLuftdruck > 920)
1316
                        {   // increase offset
1317
             if(OCR0A < (255 - OPA_OFFSET_STEP))
1318
                           {
1319
                                ExpandBaro -= 1;
1320
                                OCR0A = DruckOffsetSetting - OPA_OFFSET_STEP * ExpandBaro; // increase offset to shift ADC down
1321
                                beeptime = 300;
1322
                                BaroExpandActive = 350;
1323
                           }
1324
                           else
1325
                           {
1326
                            BaroAtLowerLimit = 1;
1327
               }
1328
                        }
1329
                        // measurement of air pressure close to lower limit and
1330
                        else
1331
                        if(MessLuftdruck < 100)
1332
                        {   // decrease offset
1333
                          if(OCR0A > OPA_OFFSET_STEP)
1334
                           {
1335
                                ExpandBaro += 1;
1336
                                OCR0A = DruckOffsetSetting - OPA_OFFSET_STEP * ExpandBaro; // decrease offset to shift ADC up
1337
                                beeptime = 300;
1338
                                BaroExpandActive = 350;
1339
                           }
1340
                           else
1341
                           {
1342
                            BaroAtUpperLimit = 1;
1343
               }
1344
                        }
1345
                        else
1346
                        {
1347
                            BaroAtUpperLimit = 0;
1348
                                BaroAtLowerLimit = 0;
1349
                        }
1350
                   }
1351
                   else // delay, because of expanding the Baro-Range
1352
                   {
1353
                    // now clear the D-values
1354
                          SummenHoehe = HoehenWert * SM_FILTER;
1355
                          VarioMeter = 0;
1356
                          BaroExpandActive--;
1357
                   }
1358
 
1359
                // if height control is activated by an rc channel
1360
        if(EE_Parameter.GlobalConfig & CFG_HOEHEN_SCHALTER)  // Regler wird über Schalter gesteuert
1361
                {       // check if parameter is less than activation threshold
1362
                        if(Parameter_MaxHoehe < 50) // for 3 or 2-state switch height control is disabled in lowest position
1363
                        {   //height control not active
1364
                                if(!delay--)
1365
                                {
1366
                                        HoehenReglerAktiv = 0; // disable height control
1367
                                        SollHoehe = HoehenWert;  // update SetPoint with current reading
1368
                                        delay = 1;
1369
                                }
1370
                        }
1371
                        else
1372
                        {       //height control is activated
1373
                                HoehenReglerAktiv = 1; // enable height control
1374
                                delay = 200;
1375
                        }
1376
                }
1377
                else // no switchable height control
1378
                {
1379
                        SollHoehe = ((int16_t) ExternHoehenValue + (int16_t) Parameter_MaxHoehe) * (int)EE_Parameter.Hoehe_Verstaerkung;
1380
                        HoehenReglerAktiv = 1;
1381
                }
1382
 
1383
                // calculate cos of nick and roll angle used for projection of the vertical hoover gas
1384
                tmp_int  = (int)(IntegralNick/GIER_GRAD_FAKTOR);  // nick angle in deg
1385
                tmp_int2 = (int)(IntegralRoll/GIER_GRAD_FAKTOR);  // roll angle in deg
1386
                CosAttitude = (int16_t)ihypot(tmp_int, tmp_int2); // phytagoras gives effective attitude angle in deg
1387
                LIMIT_MAX(CosAttitude, 60); // limit effective attitude angle
1388
                CosAttitude = c_cos_8192(CosAttitude);  // cos of actual attitude
1389
                if(HoehenReglerAktiv && !(MikroKopterFlags & FLAG_NOTLANDUNG))
1390
                {
1391
                        #define HEIGHT_TRIM_UP          0x01
1392
                        #define HEIGHT_TRIM_DOWN        0x02
1393
                        static unsigned char HeightTrimmingFlag = 0x00;
1394
 
1395
                        #define HEIGHT_CONTROL_STICKTHRESHOLD 15
1396
                // Holger original version
1397
                // start of height control algorithm
1398
                // the height control is only an attenuation of the actual gas stick.
1399
                // I.e. it will work only if the gas stick is higher than the hover gas
1400
                // and the hover height will be allways larger than height setpoint.
1401
        if((EE_Parameter.ExtraConfig & CFG2_HEIGHT_LIMIT) || !(EE_Parameter.GlobalConfig & CFG_HOEHEN_SCHALTER))  // Regler wird über Schalter gesteuert)
1402
              {  // old version
1403
                        HCGas = GasMischanteil; // take current stick gas as neutral point for the height control
1404
                        HeightTrimming = 0;
1405
          }
1406
                  else
1407
                  {
1408
                // alternative height control
1409
                // PD-Control with respect to hoover point
1410
                // the thrust loss out of horizontal attitude is compensated
1411
                // the setpoint will be fine adjusted with the gas stick position
1412
                        if(MikroKopterFlags & FLAG_FLY) // trim setpoint only when flying
1413
                        {   // gas stick is above hoover point
1414
                                if(StickGas > (StickGasHoover + HEIGHT_CONTROL_STICKTHRESHOLD) && !BaroAtUpperLimit)
1415
                                {
1416
                                        if(HeightTrimmingFlag & HEIGHT_TRIM_DOWN)
1417
                                        {
1418
                                                HeightTrimmingFlag &= ~HEIGHT_TRIM_DOWN;
1419
                                                SollHoehe = HoehenWert; // update setpoint to current heigth
1420
                                        }
1421
                                        HeightTrimmingFlag |= HEIGHT_TRIM_UP;
1422
                                        HeightTrimming += abs(StickGas - (StickGasHoover + HEIGHT_CONTROL_STICKTHRESHOLD));
1423
                                } // gas stick is below hoover point
1424
                                else if(StickGas < (StickGasHoover - HEIGHT_CONTROL_STICKTHRESHOLD) && !BaroAtLowerLimit )
1425
                                {
1426
                                        if(HeightTrimmingFlag & HEIGHT_TRIM_UP)
1427
                                        {
1428
                                                HeightTrimmingFlag &= ~HEIGHT_TRIM_UP;
1429
                                                SollHoehe = HoehenWert; // update setpoint to current heigth
1430
                                        }
1431
                                        HeightTrimmingFlag |= HEIGHT_TRIM_DOWN;
1432
                                        HeightTrimming -= abs(StickGas - (StickGasHoover - HEIGHT_CONTROL_STICKTHRESHOLD));
1433
                                }
1434
                                else // Gas Stick in Hoover Range
1435
                                {
1436
                                        if(HeightTrimmingFlag & (HEIGHT_TRIM_UP | HEIGHT_TRIM_DOWN))
1437
                                        {
1438
                                                HeightTrimmingFlag &= ~(HEIGHT_TRIM_UP | HEIGHT_TRIM_DOWN);
1439
                                                HeightTrimming = 0;
1440
                                                SollHoehe = HoehenWert; // update setpoint to current height
1441
                                                if(EE_Parameter.ExtraConfig & CFG2_VARIO_BEEP) beeptime = 500;
1442
                                        }
1443
                                }
1444
                                // Trim height set point
1445
                                if(abs(HeightTrimming) > 512)
1446
                                {
1447
                                        SollHoehe += (HeightTrimming * EE_Parameter.Hoehe_Verstaerkung)/(5 * 512 / 2); // move setpoint
1448
                                        HeightTrimming = 0;
1449
                                        if(EE_Parameter.ExtraConfig & CFG2_VARIO_BEEP) beeptime = 75;
1450
                                        //update hoover gas stick value when setpoint is shifted
1451
                       if(!EE_Parameter.Hoehe_StickNeutralPoint)
1452
                       {
1453
                           StickGasHoover = HooverGas/STICK_GAIN; //rescale back to stick value
1454
                           StickGasHoover = (StickGasHoover * UBat) / BattLowVoltageWarning;
1455
                           if(StickGasHoover < 70) StickGasHoover = 70;
1456
                           else if(StickGasHoover > 150) StickGasHoover = 150;
1457
                       }
1458
                                }
1459
              if(BaroExpandActive) SollHoehe = HoehenWert; // update setpoint to current altitude if Expanding is active
1460
                        } //if MikroKopterFlags & MKFLAG_FLY
1461
                        else
1462
                        {
1463
                         SollHoehe = HoehenWert - 400;
1464
                         if(EE_Parameter.Hoehe_StickNeutralPoint) StickGasHoover = EE_Parameter.Hoehe_StickNeutralPoint;
1465
                         else StickGasHoover = 120;
1466
                         }
1467
                        HCGas = HooverGas;      // take hoover gas (neutral point)
1468
          }
1469
 
1470
         if(HoehenWert > SollHoehe || !(EE_Parameter.ExtraConfig & CFG2_HEIGHT_LIMIT))
1471
                 {
1472
            // ------------------------- P-Part ----------------------------
1473
            HeightDeviation = (int)(HoehenWert - SollHoehe); // positive when too high
1474
                        tmp_int = (HeightDeviation * (int)Parameter_Hoehe_P) / 16; // p-part
1475
                        HCGas -= tmp_int;
1476
                        // ------------------------- D-Part 1: Vario Meter ----------------------------
1477
                        tmp_int = VarioMeter / 8;
1478
                        if(tmp_int > 8) tmp_int = 8; // limit quadratic part on upward movement to avoid to much gas reduction
1479
                        if(tmp_int > 0) tmp_int = VarioMeter + (tmp_int * tmp_int) / 4;
1480
                        else            tmp_int = VarioMeter - (tmp_int * tmp_int) / 4;
1481
                        tmp_int = (Parameter_Luftdruck_D * (long)(tmp_int)) / 128L; // scale to d-gain parameter
1482
                        LIMIT_MIN_MAX(tmp_int, -127, 255);
1483
                        HCGas -= tmp_int;
1484
                        // ------------------------ D-Part 2: ACC-Z Integral  ------------------------
1485
                        tmp_int = ((Mess_Integral_Hoch / 128) * (long) Parameter_Hoehe_ACC_Wirkung) / (128 / STICK_GAIN);
1486
                        LIMIT_MIN_MAX(tmp_int, -127, 255);
1487
                        HCGas -= tmp_int;
1488
 
1489
                        // limit deviation from hoover point within the target region
1490
                        if( (abs(HeightDeviation) < 150)  && (!HeightTrimming) && (HooverGas > 0)) // height setpoint is not changed and hoover gas not zero
1491
                        {
1492
                                LIMIT_MIN_MAX(HCGas, HooverGasMin, HooverGasMax); // limit gas around the hoover point
1493
                        }
1494
 
1495
            if(BaroExpandActive) HCGas = HooverGas;
1496
                        // ------------------------ D-Part 3: GpsZ  ----------------------------------
1497
                        tmp_int = (Parameter_Hoehe_GPS_Z * (long)FromNaviCtrl_Value.GpsZ)/128L;
1498
            LIMIT_MIN_MAX(tmp_int, -127, 255);
1499
                        HCGas -= tmp_int;
1500
 
1501
                        // strech control output by inverse attitude projection 1/cos
1502
            // + 1/cos(angle)  ++++++++++++++++++++++++++
1503
                        tmp_long2 = (int32_t)HCGas;
1504
                        tmp_long2 *= 8192L;
1505
                        tmp_long2 /= CosAttitude;
1506
                        HCGas = (int16_t)tmp_long2;
1507
                        // update height control gas averaging
1508
                        FilterHCGas = (FilterHCGas * (HC_GAS_AVERAGE - 1) + HCGas) / HC_GAS_AVERAGE;
1509
                        // limit height control gas pd-control output
1510
                        LIMIT_MIN_MAX(FilterHCGas, EE_Parameter.Hoehe_MinGas * STICK_GAIN, (MAX_GAS - 20) * STICK_GAIN);
1511
                        // set GasMischanteil to HeightControlGasFilter
1512
            if(EE_Parameter.ExtraConfig & CFG2_HEIGHT_LIMIT)
1513
                         {  // old version
1514
                if(FilterHCGas > GasMischanteil) FilterHCGas = GasMischanteil; // nicht mehr als Gas
1515
                         }
1516
                        GasMischanteil = FilterHCGas;
1517
                  }
1518
                }// EOF height control active
1519
                else // HC not active
1520
                {
1521
                        //update hoover gas stick value when HC is not active
1522
           if(!EE_Parameter.Hoehe_StickNeutralPoint)
1523
                    {
1524
                         StickGasHoover = HooverGas/STICK_GAIN; // rescale back to stick value
1525
                         StickGasHoover = (StickGasHoover * UBat) / BattLowVoltageWarning;
1526
                        }
1527
                        else StickGasHoover = EE_Parameter.Hoehe_StickNeutralPoint;
1528
            if(StickGasHoover < 70) StickGasHoover = 70;
1529
            else if(StickGasHoover > 150) StickGasHoover = 150;
1530
                        FilterHCGas = GasMischanteil;
1531
                }
1532
 
1533
                // Hoover gas estimation by averaging gas control output on small z-velocities
1534
                // this is done only if height contol option is selected in global config and aircraft is flying
1535
                if((MikroKopterFlags & FLAG_FLY) && !(MikroKopterFlags & FLAG_NOTLANDUNG))
1536
                {
1537
                        if(HooverGasFilter == 0)  HooverGasFilter = HOOVER_GAS_AVERAGE * (unsigned long)(GasMischanteil); // init estimation
1538
                        if(abs(VarioMeter) < 100) // only on small vertical speed
1539
                        {
1540
                                tmp_long2 = (int32_t)GasMischanteil; // take current thrust
1541
                                tmp_long2 *= CosAttitude;            // apply attitude projection
1542
                                tmp_long2 /= 8192;
1543
 
1544
                                // average vertical projected thrust
1545
                                if(modell_fliegt < 2000) // the first 4 seconds
1546
                                {   // reduce the time constant of averaging by factor of 8 to get much faster a stable value
1547
                                        HooverGasFilter -= HooverGasFilter/(HOOVER_GAS_AVERAGE/8L);
1548
                                        HooverGasFilter += 8L * tmp_long2;
1549
                                }
1550
                                else if(modell_fliegt < 4000) // the first 8 seconds
1551
                                {   // reduce the time constant of averaging by factor of 4 to get much faster a stable value
1552
                                        HooverGasFilter -= HooverGasFilter/(HOOVER_GAS_AVERAGE/4L);
1553
                                        HooverGasFilter += 4L * tmp_long2;
1554
                                }
1555
                                else if(modell_fliegt < 8000) // the first 16 seconds
1556
                                {   // reduce the time constant of averaging by factor of 2 to get much faster a stable value
1557
                                        HooverGasFilter -= HooverGasFilter/(HOOVER_GAS_AVERAGE/2L);
1558
                                        HooverGasFilter += 2L * tmp_long2;
1559
                                }
1560
                                else //later
1561
                                {
1562
                                        HooverGasFilter -= HooverGasFilter/HOOVER_GAS_AVERAGE;
1563
                                        HooverGasFilter += tmp_long2;
1564
                                }
1565
                                HooverGas = (int16_t)(HooverGasFilter/HOOVER_GAS_AVERAGE);
1566
                                if(EE_Parameter.Hoehe_HoverBand)
1567
                                {
1568
                                        int16_t band;
1569
                                        band = HooverGas / EE_Parameter.Hoehe_HoverBand; // the higher the parameter the smaller the range
1570
                                        HooverGasMin = HooverGas - band;
1571
                                        HooverGasMax = HooverGas + band;
1572
                                }
1573
                                else
1574
                                {       // no limit
1575
                                        HooverGasMin = 0;
1576
                                        HooverGasMax = 1023;
1577
                                }
1578
                        }
1579
                }
1580
          }
1581
//DebugOut.Analog[26] = HooverGasMax;
1582
        }// EOF ParamSet.GlobalConfig & CFG_HEIGHT_CONTROL
1583
 
1584
        // limit gas to parameter setting
1585
  LIMIT_MIN(GasMischanteil, (MIN_GAS + 10) * STICK_GAIN);
1586
  if(GasMischanteil > (MAX_GAS - 20) * STICK_GAIN) GasMischanteil = (MAX_GAS - 20) * STICK_GAIN;
1587
 
1588
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1589
// all BL-Ctrl connected?
1590
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1591
  if(MissingMotor)
1592
  if(modell_fliegt > 1 && modell_fliegt < 50 && GasMischanteil > 0)
1593
   {
1594
    modell_fliegt = 1;
1595
        GasMischanteil = MIN_GAS;
1596
   }
1597
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1598
// + Mischer und PI-Regler
1599
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1600
  DebugOut.Analog[7] = GasMischanteil;
1601
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1602
// Gier-Anteil
1603
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1604
    GierMischanteil = MesswertGier - sollGier * STICK_GAIN;     // Regler für Gier
1605
#define MIN_GIERGAS  (40*STICK_GAIN)  // unter diesem Gaswert trotzdem Gieren
1606
   if(GasMischanteil > MIN_GIERGAS)
1607
    {
1608
     if(GierMischanteil > (GasMischanteil / 2)) GierMischanteil = GasMischanteil / 2;
1609
     if(GierMischanteil < -(GasMischanteil / 2)) GierMischanteil = -(GasMischanteil / 2);
1610
    }
1611
    else
1612
    {
1613
     if(GierMischanteil > (MIN_GIERGAS / 2))  GierMischanteil = MIN_GIERGAS / 2;
1614
     if(GierMischanteil < -(MIN_GIERGAS / 2)) GierMischanteil = -(MIN_GIERGAS / 2);
1615
    }
1616
    tmp_int = MAX_GAS*STICK_GAIN;
1617
    if(GierMischanteil > ((tmp_int - GasMischanteil))) GierMischanteil = ((tmp_int - GasMischanteil));
1618
    if(GierMischanteil < -((tmp_int - GasMischanteil))) GierMischanteil = -((tmp_int - GasMischanteil));
1619
 
1620
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1621
// Nick-Achse
1622
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1623
    DiffNick = MesswertNick - StickNick;        // Differenz bestimmen
1624
    if(IntegralFaktor) SummeNick += IntegralNickMalFaktor - StickNick; // I-Anteil bei Winkelregelung
1625
    else  SummeNick += DiffNick; // I-Anteil bei HH
1626
    if(SummeNick >  (STICK_GAIN * 16000L)) SummeNick =  (STICK_GAIN * 16000L);
1627
    if(SummeNick < -(16000L * STICK_GAIN)) SummeNick = -(16000L * STICK_GAIN);
1628
    pd_ergebnis_nick = DiffNick + SummeNick / Ki; // PI-Regler für Nick
1629
    // Motor Vorn
1630
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1631
    if(pd_ergebnis_nick >  tmp_int) pd_ergebnis_nick =  tmp_int;
1632
    if(pd_ergebnis_nick < -tmp_int) pd_ergebnis_nick = -tmp_int;
1633
 
1634
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1635
// Roll-Achse
1636
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1637
        DiffRoll = MesswertRoll - StickRoll;    // Differenz bestimmen
1638
    if(IntegralFaktor) SummeRoll += IntegralRollMalFaktor - StickRoll;// I-Anteil bei Winkelregelung
1639
    else                 SummeRoll += DiffRoll;  // I-Anteil bei HH
1640
    if(SummeRoll >  (STICK_GAIN * 16000L)) SummeRoll =  (STICK_GAIN * 16000L);
1641
    if(SummeRoll < -(16000L * STICK_GAIN)) SummeRoll = -(16000L * STICK_GAIN);
1642
    pd_ergebnis_roll = DiffRoll + SummeRoll / Ki;       // PI-Regler für Roll
1643
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1644
    if(pd_ergebnis_roll >  tmp_int) pd_ergebnis_roll =  tmp_int;
1645
    if(pd_ergebnis_roll < -tmp_int) pd_ergebnis_roll = -tmp_int;
1646
 
1647
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1648
// Universal Mixer
1649
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1650
 for(i=0; i<MAX_MOTORS; i++)
1651
 {
1652
  signed int tmp_int;
1653
  if(Mixer.Motor[i][0] > 0)
1654
   {
1655
    tmp_int =  ((long)GasMischanteil * Mixer.Motor[i][0]) / 64L;
1656
    tmp_int += ((long)pd_ergebnis_nick * Mixer.Motor[i][1]) / 64L;
1657
    tmp_int += ((long)pd_ergebnis_roll * Mixer.Motor[i][2]) / 64L;
1658
    tmp_int += ((long)GierMischanteil * Mixer.Motor[i][3]) / 64L;
1659
    tmp_motorwert[i] = MotorSmoothing(tmp_int,tmp_motorwert[i]);  // Filter
1660
        tmp_int = tmp_motorwert[i] / STICK_GAIN;
1661
        CHECK_MIN_MAX(tmp_int,MIN_GAS,MAX_GAS);
1662
    Motor[i] = tmp_int;
1663
   }
1664
   else Motor[i] = 0;
1665
 }
1666
/*
1667
if(Poti1 > 20)  Motor1 = 0;
1668
if(Poti1 > 90)  Motor6 = 0;
1669
if(Poti1 > 140) Motor2 = 0;
1670
//if(Poti1 > 200) Motor7 = 0;
1671
*/
1672
}