Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1234 ligi 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,GyroFaktorGier;
90
char IntegralFaktor,IntegralFaktorGier;
91
int  DiffNick,DiffRoll;
92
int  Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0;
93
volatile unsigned char SenderOkay = 0;
94
int StickNick = 0,StickRoll = 0,StickGier = 0,StickGas = 0;
95
char MotorenEin = 0;
96
int HoehenWert = 0;
97
int SollHoehe = 0;
98
int LageKorrekturRoll = 0,LageKorrekturNick = 0;
99
//float Ki =  FAKTOR_I;
100
int Ki = 10300 / 33;
101
unsigned char Looping_Nick = 0,Looping_Roll = 0;
102
unsigned char Looping_Links = 0, Looping_Rechts = 0, Looping_Unten = 0, Looping_Oben = 0;
103
 
104
unsigned char Parameter_Luftdruck_D  = 48;      // Wert : 0-250
105
unsigned char Parameter_MaxHoehe     = 251;      // Wert : 0-250
106
unsigned char Parameter_Hoehe_P      = 16;      // Wert : 0-32
107
unsigned char Parameter_Hoehe_ACC_Wirkung = 58; // Wert : 0-250
108
unsigned char Parameter_KompassWirkung = 64;    // Wert : 0-250
109
unsigned char Parameter_Gyro_D = 8;             // Wert : 0-250
110
unsigned char Parameter_Gyro_P = 150;           // Wert : 10-250
111
unsigned char Parameter_Gyro_I = 150;           // Wert : 0-250
112
unsigned char Parameter_Gier_P = 2;             // Wert : 1-20
113
unsigned char Parameter_I_Faktor = 10;          // Wert : 1-20
114
unsigned char Parameter_UserParam1 = 0;
115
unsigned char Parameter_UserParam2 = 0;
116
unsigned char Parameter_UserParam3 = 0;
117
unsigned char Parameter_UserParam4 = 0;
118
unsigned char Parameter_UserParam5 = 0;
119
unsigned char Parameter_UserParam6 = 0;
120
unsigned char Parameter_UserParam7 = 0;
121
unsigned char Parameter_UserParam8 = 0;
122
unsigned char Parameter_ServoNickControl = 100;
123
unsigned char Parameter_ServoRollControl = 100;
124
unsigned char Parameter_LoopGasLimit = 70;
125
unsigned char Parameter_AchsKopplung1 = 90;
126
unsigned char Parameter_AchsKopplung2 = 65;
127
unsigned char Parameter_CouplingYawCorrection = 64;
128
//unsigned char Parameter_AchsGegenKopplung1 = 0;
129
unsigned char Parameter_DynamicStability = 100;
130
unsigned char Parameter_J16Bitmask;             // for the J16 Output
131
unsigned char Parameter_J16Timing;              // for the J16 Output
132
unsigned char Parameter_J17Bitmask;             // for the J17 Output
133
unsigned char Parameter_J17Timing;              // for the J17 Output
134
unsigned char Parameter_NaviGpsModeControl;     // Parameters for the Naviboard
135
unsigned char Parameter_NaviGpsGain;
136
unsigned char Parameter_NaviGpsP;
137
unsigned char Parameter_NaviGpsI;
138
unsigned char Parameter_NaviGpsD;
139
unsigned char Parameter_NaviGpsACC;
140
unsigned char Parameter_NaviOperatingRadius;
141
unsigned char Parameter_NaviWindCorrection;
142
unsigned char Parameter_NaviSpeedCompensation;
143
unsigned char Parameter_ExternalControl;
144
struct mk_param_struct EE_Parameter;
145
signed int ExternStickNick = 0,ExternStickRoll = 0,ExternStickGier = 0, ExternHoehenValue = -20;
146
int MaxStickNick = 0,MaxStickRoll = 0;
147
unsigned int  modell_fliegt = 0;
148
volatile unsigned char MikroKopterFlags = 0;
149
long GIER_GRAD_FAKTOR = 1291;
150
signed int KopplungsteilNickRoll,KopplungsteilRollNick;
151
unsigned char RequiredMotors = 4;
152
unsigned char Motor[MAX_MOTORS];
153
signed int tmp_motorwert[MAX_MOTORS];
154
 
155
int MotorSmoothing(int neu, int alt)
156
{
157
 int motor;
158
 if(neu > alt) motor = (1*(int)alt + neu) / 2;
159
 else   motor = neu - (alt - neu)*1;
160
//if(Poti2 < 20)  return(neu);
161
 return(motor);
162
}
163
 
164
void Piep(unsigned char Anzahl, unsigned int dauer)
165
{
166
 if(MotorenEin) return; //auf keinen Fall im Flug!
167
 while(Anzahl--)
168
 {
169
  beeptime = dauer;
170
  while(beeptime);
171
  Delay_ms(dauer * 2);
172
 }
173
}
174
 
175
//############################################################################
176
//  Nullwerte ermitteln
177
void SetNeutral(void)
178
//############################################################################
179
{
180
 unsigned char i;
181
 unsigned int gier_neutral=0, nick_neutral=0, roll_neutral=0;
182
    ServoActive = 0; HEF4017R_ON;
183
        NeutralAccX = 0;
184
        NeutralAccY = 0;
185
        NeutralAccZ = 0;
186
    AdNeutralNick = 0;
187
        AdNeutralRoll = 0;
188
        AdNeutralGier = 0;
189
    AdNeutralGierBias = 0;
190
    Parameter_AchsKopplung1 = 0;
191
    Parameter_AchsKopplung2 = 0;
192
    ExpandBaro = 0;
193
    CalibrierMittelwert();
194
    Delay_ms_Mess(100);
195
        CalibrierMittelwert();
196
    if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
197
     {
198
      if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
199
     }
200
#define NEUTRAL_FILTER 32
201
    for(i=0; i<NEUTRAL_FILTER; i++)
202
         {
203
          Delay_ms_Mess(10);
204
          gier_neutral += AdWertGier;
205
          nick_neutral += AdWertNick;
206
          roll_neutral += AdWertRoll;
207
         }
208
     AdNeutralNick= (nick_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER / 8);
209
         AdNeutralRoll= (roll_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER / 8);
210
         AdNeutralGier= (gier_neutral+NEUTRAL_FILTER/2) / (NEUTRAL_FILTER);
211
     AdNeutralGierBias = AdNeutralGier;
212
     StartNeutralRoll = AdNeutralRoll;
213
     StartNeutralNick = AdNeutralNick;
214
    if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) > 4)
215
    {
216
      NeutralAccY = abs(Mittelwert_AccRoll) / (2*ACC_AMPLIFY);
217
          NeutralAccX = abs(Mittelwert_AccNick) / (2*ACC_AMPLIFY);
218
          NeutralAccZ = Aktuell_az;
219
    }
220
    else
221
    {
222
      NeutralAccX = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1]);
223
          NeutralAccY = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1]);
224
          NeutralAccZ = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1]);
225
    }
226
 
227
    MesswertNick = 0;
228
    MesswertRoll = 0;
229
    MesswertGier = 0;
230
    Delay_ms_Mess(100);
231
    Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
232
    Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
233
    IntegralNick = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccNick;
234
    IntegralRoll = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccRoll;
235
    Mess_IntegralNick2 = IntegralNick;
236
    Mess_IntegralRoll2 = IntegralRoll;
237
    Mess_Integral_Gier = 0;
238
    StartLuftdruck = Luftdruck;
239
    HoeheD = 0;
240
    Mess_Integral_Hoch = 0;
241
    KompassStartwert = KompassValue;
242
    GPS_Neutral();
243
    beeptime = 50;
244
        Umschlag180Nick = ((long) EE_Parameter.WinkelUmschlagNick * 2500L) + 15000L;
245
        Umschlag180Roll = ((long) EE_Parameter.WinkelUmschlagRoll * 2500L) + 15000L;
246
    ExternHoehenValue = 0;
247
    ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
248
    GierGyroFehler = 0;
249
    SendVersionToNavi = 1;
250
    LED_Init();
251
    MikroKopterFlags |= FLAG_CALIBRATE;
252
    FromNaviCtrl_Value.Kalman_K = -1;
253
    FromNaviCtrl_Value.Kalman_MaxDrift = 0;
254
    FromNaviCtrl_Value.Kalman_MaxFusion = 32;
255
    Poti1 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110;
256
    Poti2 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110;
257
    Poti3 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110;
258
    Poti4 = PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110;
259
//    ServoActive = 1;
260
    SenderOkay = 100;
261
}
262
 
263
//############################################################################
264
// Bearbeitet die Messwerte
265
void Mittelwert(void)
266
//############################################################################
267
{
268
    static signed long tmpl,tmpl2,tmpl3,tmpl4;
269
        static signed int oldNick, oldRoll, d2Roll, d2Nick;
270
        signed long winkel_nick, winkel_roll;
271
 
272
        MesswertGier = (signed int) AdNeutralGier - AdWertGier;
273
//    MesswertGierBias = (signed int) AdNeutralGierBias - AdWertGier;
274
    MesswertNick = (signed int) AdWertNickFilter / 8;
275
    MesswertRoll = (signed int) AdWertRollFilter / 8;
276
    RohMesswertNick = MesswertNick;
277
    RohMesswertRoll = MesswertRoll;
278
//DebugOut.Analog[21] = MesswertNick;
279
//DebugOut.Analog[22] = MesswertRoll;
280
//DebugOut.Analog[22] = Mess_Integral_Gier;
281
//DebugOut.Analog[21] = MesswertNick;
282
//DebugOut.Analog[22] = MesswertRoll;
283
 
284
// Beschleunigungssensor  ++++++++++++++++++++++++++++++++++++++++++++++++
285
        Mittelwert_AccNick = ((long)Mittelwert_AccNick * 3 + ((ACC_AMPLIFY * (long)AdWertAccNick))) / 4L;
286
        Mittelwert_AccRoll = ((long)Mittelwert_AccRoll * 3 + ((ACC_AMPLIFY * (long)AdWertAccRoll))) / 4L;
287
        Mittelwert_AccHoch = ((long)Mittelwert_AccHoch * 3 + ((long)AdWertAccHoch)) / 4L;
288
    IntegralAccNick += ACC_AMPLIFY * AdWertAccNick;
289
    IntegralAccRoll += ACC_AMPLIFY * AdWertAccRoll;
290
    NaviAccNick    += AdWertAccNick;
291
    NaviAccRoll    += AdWertAccRoll;
292
    NaviCntAcc++;
293
    IntegralAccZ  += Aktuell_az - NeutralAccZ;
294
 
295
//++++++++++++++++++++++++++++++++++++++++++++++++
296
// ADC einschalten
297
    ANALOG_ON;
298
        AdReady = 0;
299
//++++++++++++++++++++++++++++++++++++++++++++++++
300
 
301
    if(Mess_IntegralRoll > 93000L) winkel_roll = 93000L;
302
        else if(Mess_IntegralRoll <-93000L) winkel_roll = -93000L;
303
        else winkel_roll = Mess_IntegralRoll;
304
 
305
    if(Mess_IntegralNick > 93000L) winkel_nick = 93000L;
306
        else if(Mess_IntegralNick <-93000L) winkel_nick = -93000L;
307
        else winkel_nick = Mess_IntegralNick;
308
 
309
// Gier  ++++++++++++++++++++++++++++++++++++++++++++++++
310
   Mess_Integral_Gier += MesswertGier;
311
   ErsatzKompass += MesswertGier;
312
// Kopplungsanteil  +++++++++++++++++++++++++++++++++++++
313
      if(!Looping_Nick && !Looping_Roll && (EE_Parameter.GlobalConfig & CFG_ACHSENKOPPLUNG_AKTIV))
314
         {
315
            tmpl3 = (MesswertRoll * winkel_nick) / 2048L;
316
            tmpl3 *= Parameter_AchsKopplung2; //65
317
            tmpl3 /= 4096L;
318
            tmpl4 = (MesswertNick * winkel_roll) / 2048L;
319
            tmpl4 *= Parameter_AchsKopplung2; //65
320
            tmpl4 /= 4096L;
321
            KopplungsteilNickRoll = tmpl3;
322
            KopplungsteilRollNick = tmpl4;
323
            tmpl4 -= tmpl3;
324
            ErsatzKompass += tmpl4;
325
            if(!Parameter_CouplingYawCorrection) Mess_Integral_Gier -= tmpl4/2; // Gier nachhelfen
326
 
327
            tmpl = ((MesswertGier + tmpl4) * winkel_nick) / 2048L;
328
            tmpl *= Parameter_AchsKopplung1;  // 90
329
            tmpl /= 4096L;
330
            tmpl2 = ((MesswertGier + tmpl4) * winkel_roll) / 2048L;
331
            tmpl2 *= Parameter_AchsKopplung1;
332
            tmpl2 /= 4096L;
333
            if(abs(MesswertGier) > 64) if(labs(tmpl) > 128 || labs(tmpl2) > 128) TrichterFlug = 1;
334
            //MesswertGier += (Parameter_CouplingYawCorrection * tmpl4) / 256;
335
         }
336
      else  tmpl = tmpl2 = KopplungsteilNickRoll = KopplungsteilRollNick = 0;
337
 
338
TrimRoll = tmpl - tmpl2 / 100L;
339
TrimNick = -tmpl2 + tmpl / 100L;
340
 
341
// Kompasswert begrenzen  ++++++++++++++++++++++++++++++++++++++++++++++++
342
                    if(ErsatzKompass >= (360L * GIER_GRAD_FAKTOR)) ErsatzKompass -= 360L * GIER_GRAD_FAKTOR;  // 360° Umschlag
343
                    if(ErsatzKompass < 0)                          ErsatzKompass += 360L * GIER_GRAD_FAKTOR;
344
// Roll  ++++++++++++++++++++++++++++++++++++++++++++++++
345
            Mess_IntegralRoll2 += MesswertRoll + TrimRoll;
346
            Mess_IntegralRoll +=  MesswertRoll + TrimRoll - LageKorrekturRoll;
347
            if(Mess_IntegralRoll > Umschlag180Roll)
348
            {
349
             Mess_IntegralRoll  = -(Umschlag180Roll - 25000L);
350
             Mess_IntegralRoll2 = Mess_IntegralRoll;
351
            }
352
            if(Mess_IntegralRoll <-Umschlag180Roll)
353
            {
354
             Mess_IntegralRoll =  (Umschlag180Roll - 25000L);
355
             Mess_IntegralRoll2 = Mess_IntegralRoll;
356
            }
357
// Nick  ++++++++++++++++++++++++++++++++++++++++++++++++
358
            Mess_IntegralNick2 += MesswertNick + TrimNick;
359
            Mess_IntegralNick  += MesswertNick + TrimNick - LageKorrekturNick;
360
            if(Mess_IntegralNick > Umschlag180Nick)
361
             {
362
              Mess_IntegralNick = -(Umschlag180Nick - 25000L);
363
              Mess_IntegralNick2 = Mess_IntegralNick;
364
             }
365
            if(Mess_IntegralNick <-Umschlag180Nick)
366
            {
367
             Mess_IntegralNick =  (Umschlag180Nick - 25000L);
368
             Mess_IntegralNick2 = Mess_IntegralNick;
369
            }
370
 
371
    Integral_Gier  = Mess_Integral_Gier;
372
    IntegralNick = Mess_IntegralNick;
373
    IntegralRoll = Mess_IntegralRoll;
374
    IntegralNick2 = Mess_IntegralNick2;
375
    IntegralRoll2 = Mess_IntegralRoll2;
376
 
377
#define D_LIMIT 128
378
 
379
   MesswertNick = HiResNick / 8;
380
   MesswertRoll = HiResRoll / 8;
381
 
382
   if(AdWertNick < 15)   MesswertNick = -1000;  if(AdWertNick <  7)   MesswertNick = -2000;
383
   if(PlatinenVersion == 10)  { if(AdWertNick > 1010) MesswertNick = +1000;  if(AdWertNick > 1017) MesswertNick = +2000; }
384
   else  {  if(AdWertNick > 2000) MesswertNick = +1000;  if(AdWertNick > 2015) MesswertNick = +2000; }
385
   if(AdWertRoll < 15)   MesswertRoll = -1000;  if(AdWertRoll <  7)   MesswertRoll = -2000;
386
   if(PlatinenVersion == 10) { if(AdWertRoll > 1010) MesswertRoll = +1000;  if(AdWertRoll > 1017) MesswertRoll = +2000; }
387
   else { if(AdWertRoll > 2000) MesswertRoll = +1000;  if(AdWertRoll > 2015) MesswertRoll = +2000;  }
388
 
389
  if(Parameter_Gyro_D)
390
  {
391
   d2Nick = HiResNick - oldNick;
392
   oldNick = (oldNick + HiResNick)/2;
393
   if(d2Nick > D_LIMIT) d2Nick = D_LIMIT;
394
   else if(d2Nick < -D_LIMIT) d2Nick = -D_LIMIT;
395
   MesswertNick += (d2Nick * (signed int) Parameter_Gyro_D) / 16;
396
   d2Roll = HiResRoll - oldRoll;
397
   oldRoll = (oldRoll + HiResRoll)/2;
398
   if(d2Roll > D_LIMIT) d2Roll = D_LIMIT;
399
   else if(d2Roll < -D_LIMIT) d2Roll = -D_LIMIT;
400
   MesswertRoll += (d2Roll * (signed int) Parameter_Gyro_D) / 16;
401
   HiResNick += (d2Nick * (signed int) Parameter_Gyro_D);
402
   HiResRoll += (d2Roll * (signed int) Parameter_Gyro_D);
403
  }
404
 
405
 if(RohMesswertRoll > 0) TrimRoll  += ((long) abs(KopplungsteilNickRoll) * Parameter_CouplingYawCorrection) / 64L;
406
 else                    TrimRoll -= ((long) abs(KopplungsteilNickRoll) * Parameter_CouplingYawCorrection) / 64L;
407
 if(RohMesswertNick > 0) TrimNick += ((long) abs(KopplungsteilRollNick) * Parameter_CouplingYawCorrection) / 64L;
408
 else                    TrimNick -= ((long) abs(KopplungsteilRollNick) * Parameter_CouplingYawCorrection) / 64L;
409
 
410
  if(EE_Parameter.GlobalConfig & CFG_DREHRATEN_BEGRENZER && !Looping_Nick && !Looping_Roll)
411
  {
412
    if(RohMesswertNick > 256)       MesswertNick += 1 * (RohMesswertNick - 256);
413
    else if(RohMesswertNick < -256) MesswertNick += 1 * (RohMesswertNick + 256);
414
    if(RohMesswertRoll > 256)       MesswertRoll += 1 * (RohMesswertRoll - 256);
415
    else if(RohMesswertRoll < -256) MesswertRoll += 1 * (RohMesswertRoll + 256);
416
  }
417
 
418
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
419
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
420
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
421
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
422
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
423
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
424
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
425
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
426
}
427
 
428
//############################################################################
429
// Messwerte beim Ermitteln der Nullage
430
void CalibrierMittelwert(void)
431
//############################################################################
432
{
433
    if(PlatinenVersion == 13) SucheGyroOffset();
434
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
435
        ANALOG_OFF;
436
        MesswertNick = AdWertNick;
437
        MesswertRoll = AdWertRoll;
438
        MesswertGier = AdWertGier;
439
        Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
440
        Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
441
        Mittelwert_AccHoch = (long)AdWertAccHoch;
442
   // ADC einschalten
443
    ANALOG_ON;
444
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
445
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
446
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
447
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
448
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
449
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
450
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
451
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
452
 
453
        Umschlag180Nick = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
454
        Umschlag180Roll = (long) EE_Parameter.WinkelUmschlagRoll * 2500L;
455
}
456
 
457
//############################################################################
458
// Senden der Motorwerte per I2C-Bus
459
void SendMotorData(void)
460
//############################################################################
461
{
462
 unsigned char i;
463
    if(!MotorenEin)
464
        {
465
         MikroKopterFlags &= ~(FLAG_MOTOR_RUN | FLAG_FLY);
466
                 for(i=0;i<MAX_MOTORS;i++)
467
                  {
468
                   if(!PC_MotortestActive)  MotorTest[i] = 0;
469
                   Motor[i] = MotorTest[i];
470
                  }
471
          if(PC_MotortestActive) PC_MotortestActive--;
472
        }
473
        else MikroKopterFlags |= FLAG_MOTOR_RUN;
474
 
475
    DebugOut.Analog[12] = Motor[0];
476
    DebugOut.Analog[13] = Motor[1];
477
    DebugOut.Analog[14] = Motor[3];
478
    DebugOut.Analog[15] = Motor[2];
479
 
480
    //Start I2C Interrupt Mode
481
    twi_state = 0;
482
    motor = 0;
483
    i2c_start();
484
}
485
 
486
 
487
 
488
//############################################################################
489
// Trägt ggf. das Poti als Parameter ein
490
void ParameterZuordnung(void)
491
//############################################################################
492
{
493
 #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;}
494
 #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; }
495
 CHK_POTI(Parameter_MaxHoehe,EE_Parameter.MaxHoehe,0,255);
496
 CHK_POTI_MM(Parameter_Luftdruck_D,EE_Parameter.Luftdruck_D,0,100);
497
 CHK_POTI_MM(Parameter_Hoehe_P,EE_Parameter.Hoehe_P,0,100);
498
 CHK_POTI(Parameter_Hoehe_ACC_Wirkung,EE_Parameter.Hoehe_ACC_Wirkung,0,255);
499
 CHK_POTI(Parameter_KompassWirkung,EE_Parameter.KompassWirkung,0,255);
500
 CHK_POTI_MM(Parameter_Gyro_P,EE_Parameter.Gyro_P,10,255);
501
 CHK_POTI(Parameter_Gyro_I,EE_Parameter.Gyro_I,0,255);
502
 CHK_POTI(Parameter_Gyro_D,EE_Parameter.Gyro_D,0,255);
503
 CHK_POTI(Parameter_I_Faktor,EE_Parameter.I_Faktor,0,255);
504
 CHK_POTI(Parameter_UserParam1,EE_Parameter.UserParam1,0,255);
505
 CHK_POTI(Parameter_UserParam2,EE_Parameter.UserParam2,0,255);
506
 CHK_POTI(Parameter_UserParam3,EE_Parameter.UserParam3,0,255);
507
 CHK_POTI(Parameter_UserParam4,EE_Parameter.UserParam4,0,255);
508
 CHK_POTI(Parameter_UserParam5,EE_Parameter.UserParam5,0,255);
509
 CHK_POTI(Parameter_UserParam6,EE_Parameter.UserParam6,0,255);
510
 CHK_POTI(Parameter_UserParam7,EE_Parameter.UserParam7,0,255);
511
 CHK_POTI(Parameter_UserParam8,EE_Parameter.UserParam8,0,255);
512
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
513
 CHK_POTI(Parameter_ServoRollControl,EE_Parameter.ServoRollControl,0,255);
514
 CHK_POTI(Parameter_LoopGasLimit,EE_Parameter.LoopGasLimit,0,255);
515
 CHK_POTI(Parameter_AchsKopplung1,    EE_Parameter.AchsKopplung1,0,255);
516
 CHK_POTI(Parameter_AchsKopplung2,    EE_Parameter.AchsKopplung2,0,255);
517
 CHK_POTI(Parameter_CouplingYawCorrection,EE_Parameter.CouplingYawCorrection,0,255);
518
// CHK_POTI(Parameter_AchsGegenKopplung1,EE_Parameter.AchsGegenKopplung1,0,255);
519
 CHK_POTI(Parameter_DynamicStability,EE_Parameter.DynamicStability,0,255);
520
 CHK_POTI_MM(Parameter_J16Timing,EE_Parameter.J16Timing,1,255);
521
 CHK_POTI_MM(Parameter_J17Timing,EE_Parameter.J17Timing,1,255);
522
 CHK_POTI(Parameter_ExternalControl,EE_Parameter.ExternalControl,0,255);
523
 Ki = 10300 / (Parameter_I_Faktor + 1);
524
 MAX_GAS = EE_Parameter.Gas_Max;
525
 MIN_GAS = EE_Parameter.Gas_Min;
526
}
527
 
528
void start_engines(void)
529
{
530
 
531
}
532
 
533
//############################################################################
534
//
535
void MotorRegler(void)
536
//############################################################################
537
{
538
         int pd_ergebnis_nick,pd_ergebnis_roll,h,tmp_int;
539
         int GierMischanteil,GasMischanteil;
540
     static long SummeNick=0,SummeRoll=0;
541
     static long sollGier = 0,tmp_long,tmp_long2;
542
     static long IntegralFehlerNick = 0;
543
     static long IntegralFehlerRoll = 0;
544
         static unsigned int RcLostTimer;
545
         static unsigned char delay_neutral = 0;
546
         static unsigned char delay_einschalten = 0,delay_ausschalten = 0;
547
     static int hoehenregler = 0;
548
     static char TimerWerteausgabe = 0;
549
     static char NeueKompassRichtungMerken = 0;
550
     static long ausgleichNick, ausgleichRoll;
551
     int IntegralNickMalFaktor,IntegralRollMalFaktor;
552
         unsigned char i;
553
        Mittelwert();
554
 
555
        if (ExternEvent.key!=0)
556
          {
557
            switch((int)ExternEvent.key)
558
              {
559
              case 1:
560
                // start engines
561
                modell_fliegt = 1;
562
                MotorenEin = 1;
563
                sollGier = 0;
564
                Mess_Integral_Gier = 0;
565
                Mess_Integral_Gier2 = 0;
566
                Mess_IntegralNick = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccNick;
567
                Mess_IntegralRoll = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccRoll;
568
                Mess_IntegralNick2 = IntegralNick;
569
                Mess_IntegralRoll2 = IntegralRoll;
570
                SummeNick = 0;
571
                SummeRoll = 0;
572
 
573
                break;
574
 
575
              case 2:
576
                // stop engines
577
                MotorenEin = 0;
578
                delay_ausschalten = 200;
579
                modell_fliegt = 0;
580
 
581
                break;
582
 
583
              }
584
 
585
 
586
            ExternEvent.key=0;
587
          }
588
    GRN_ON;
589
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
590
// Gaswert ermitteln
591
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
592
        GasMischanteil = StickGas;
593
    if(GasMischanteil < MIN_GAS + 10) GasMischanteil = MIN_GAS + 10;
594
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
595
// Empfang schlecht
596
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
597
   if(SenderOkay < 100)
598
        {
599
        if(!PcZugriff)
600
         {
601
           if(BeepMuster == 0xffff)
602
            {
603
             beeptime = 15000;
604
             BeepMuster = 0x0c00;
605
            }
606
         }
607
        if(RcLostTimer) RcLostTimer--;
608
        else
609
         {
610
          MotorenEin = 0;
611
          Notlandung = 0;
612
         }
613
        ROT_ON;
614
        if(modell_fliegt > 1000)  // wahrscheinlich in der Luft --> langsam absenken
615
            {
616
            GasMischanteil = EE_Parameter.NotGas;
617
            Notlandung = 1;
618
            PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
619
            PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
620
            PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
621
            PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
622
            PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] = 0;
623
            }
624
         else MotorenEin = 0;
625
        }
626
        else
627
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
628
// Emfang gut
629
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
630
        if(SenderOkay > 140)
631
            {
632
            Notlandung = 0;
633
            RcLostTimer = EE_Parameter.NotGasZeit * 50;
634
            if(GasMischanteil > 40 && MotorenEin)
635
                {
636
                if(modell_fliegt < 0xffff) modell_fliegt++;
637
                }
638
            if((modell_fliegt < 256))
639
                {
640
                SummeNick = 0;
641
                SummeRoll = 0;
642
                if(modell_fliegt == 250)
643
                 {
644
                  NeueKompassRichtungMerken = 1;
645
                  sollGier = 0;
646
                  Mess_Integral_Gier = 0;
647
//                  Mess_Integral_Gier2 = 0;
648
                 }
649
                } else MikroKopterFlags |= FLAG_FLY;
650
 
651
            if((PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] > 80) && MotorenEin == 0)
652
                {
653
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
654
// auf Nullwerte kalibrieren
655
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
656
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)  // Neutralwerte
657
                    {
658
                    if(++delay_neutral > 200)  // nicht sofort
659
                        {
660
                        GRN_OFF;
661
                        MotorenEin = 0;
662
                        delay_neutral = 0;
663
                        modell_fliegt = 0;
664
                        if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70 || abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) > 70)
665
                        {
666
                         unsigned char setting=1;
667
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 1;
668
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 2;
669
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 3;
670
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 4;
671
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 5;
672
                         SetActiveParamSetNumber(setting);  // aktiven Datensatz merken
673
                        }
674
//                        else
675
                         if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) < 30 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -70)
676
                          {
677
                           WinkelOut.CalcState = 1;
678
                           beeptime = 1000;
679
                          }
680
                          else
681
                          {
682
                               ReadParameterSet(GetActiveParamSetNumber(), (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE);
683
                           if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
684
                            {
685
                             if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
686
                            }
687
                           SetNeutral();
688
                                                   ServoActive = 1;
689
                                                   DDRD  |=0x80; // enable J7 -> Servo signal
690
                           Piep(GetActiveParamSetNumber(),120);
691
                         }
692
                        }
693
                    }
694
                 else
695
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)  // ACC Neutralwerte speichern
696
                    {
697
                    if(++delay_neutral > 200)  // nicht sofort
698
                        {
699
                        GRN_OFF;
700
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],0xff); // Werte löschen
701
                        MotorenEin = 0;
702
                        delay_neutral = 0;
703
                        modell_fliegt = 0;
704
                        SetNeutral();
705
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],NeutralAccX / 256); // ACC-NeutralWerte speichern
706
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1],NeutralAccX % 256); // ACC-NeutralWerte speichern
707
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL],NeutralAccY / 256);
708
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1],NeutralAccY % 256);
709
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z],(int)NeutralAccZ / 256);
710
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1],(int)NeutralAccZ % 256);
711
                        Piep(GetActiveParamSetNumber(),120);
712
                        }
713
                    }
714
                 else delay_neutral = 0;
715
                }
716
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
717
// Gas ist unten
718
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
719
            if(PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] < 35-120)
720
                {
721
                // Starten
722
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)
723
                    {
724
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
725
// Einschalten
726
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
727
                    if(++delay_einschalten > 200)
728
                        {
729
                        delay_einschalten = 200;
730
                        modell_fliegt = 1;
731
                        MotorenEin = 1;
732
                        sollGier = 0;
733
                        Mess_Integral_Gier = 0;
734
                        Mess_Integral_Gier2 = 0;
735
                        Mess_IntegralNick = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccNick;
736
                        Mess_IntegralRoll = EE_Parameter.GyroAccFaktor * (long)Mittelwert_AccRoll;
737
                        Mess_IntegralNick2 = IntegralNick;
738
                        Mess_IntegralRoll2 = IntegralRoll;
739
                        SummeNick = 0;
740
                        SummeRoll = 0;
741
                        MikroKopterFlags |= FLAG_START;
742
                        }
743
                    }
744
                    else delay_einschalten = 0;
745
                //Auf Neutralwerte setzen
746
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
747
// Auschalten
748
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
749
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)
750
                    {
751
                    if(++delay_ausschalten > 200)  // nicht sofort
752
                        {
753
                        MotorenEin = 0;
754
                        delay_ausschalten = 200;
755
                        modell_fliegt = 0;
756
                        }
757
                    }
758
                else delay_ausschalten = 0;
759
                }
760
            }
761
 
762
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
763
// neue Werte von der Funke
764
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
765
 
766
 if(!NewPpmData-- || Notlandung)
767
  {
768
        static int stick_nick,stick_roll;
769
    ParameterZuordnung();
770
    stick_nick = (stick_nick * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_P) / 4;
771
    stick_nick += PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_D;
772
    StickNick = stick_nick - (GPS_Nick + GPS_Nick2);
773
 
774
    stick_roll = (stick_roll * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_P) / 4;
775
    stick_roll += PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_D;
776
    StickRoll = stick_roll - (GPS_Roll + GPS_Roll2);
777
 
778
    StickGier = -PPM_in[EE_Parameter.Kanalbelegung[K_GIER]];
779
        if(StickGier > 2) StickGier -= 2;       else
780
        if(StickGier < -2) StickGier += 2; else StickGier = 0;
781
 
782
        StickGas  = PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] + 120;
783
    GyroFaktor     = (Parameter_Gyro_P + 10.0);
784
    IntegralFaktor = Parameter_Gyro_I;
785
    GyroFaktorGier     = (Parameter_Gyro_P + 10.0);
786
    IntegralFaktorGier = Parameter_Gyro_I;
787
 
788
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
789
//+ Analoge Steuerung per Seriell
790
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
791
   if(ExternControl.Config & 0x01 && Parameter_ExternalControl > 128)
792
    {
793
         StickNick += (int) ExternControl.Nick * (int) EE_Parameter.Stick_P;
794
         StickRoll += (int) ExternControl.Roll * (int) EE_Parameter.Stick_P;
795
         StickGier += ExternControl.Gier;
796
     ExternHoehenValue =  (int) ExternControl.Hight * (int)EE_Parameter.Hoehe_Verstaerkung;
797
     if(ExternControl.Gas < StickGas) StickGas = ExternControl.Gas;
798
    }
799
    if(StickGas < 0) StickGas = 0;
800
 
801
    if(EE_Parameter.GlobalConfig & CFG_HEADING_HOLD) IntegralFaktor =  0;
802
    if(GyroFaktor < 0) GyroFaktor = 0;
803
    if(IntegralFaktor < 0) IntegralFaktor = 0;
804
 
805
    if(abs(StickNick/STICK_GAIN) > MaxStickNick)
806
     {
807
      MaxStickNick = abs(StickNick)/STICK_GAIN;
808
      if(MaxStickNick > 100) MaxStickNick = 100;
809
     }
810
     else MaxStickNick--;
811
    if(abs(StickRoll/STICK_GAIN) > MaxStickRoll)
812
     {
813
      MaxStickRoll = abs(StickRoll)/STICK_GAIN;
814
      if(MaxStickRoll > 100) MaxStickRoll = 100;
815
     }
816
     else MaxStickRoll--;
817
    if(Notlandung)  {MaxStickNick = 0; MaxStickRoll = 0;}
818
 
819
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
820
// Looping?
821
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
822
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_LINKS)  Looping_Links = 1;
823
  else
824
   {
825
     {
826
      if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Links = 0;
827
     }
828
   }
829
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < -EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_RECHTS) Looping_Rechts = 1;
830
   else
831
   {
832
   if(Looping_Rechts) // Hysterese
833
     {
834
      if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Rechts = 0;
835
     }
836
   }
837
 
838
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_OBEN) Looping_Oben = 1;
839
  else
840
   {
841
    if(Looping_Oben)  // Hysterese
842
     {
843
      if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Oben = 0;
844
     }
845
   }
846
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -EE_Parameter.LoopThreshold) && EE_Parameter.BitConfig & CFG_LOOP_UNTEN) Looping_Unten = 1;
847
   else
848
   {
849
    if(Looping_Unten) // Hysterese
850
     {
851
      if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Unten = 0;
852
     }
853
   }
854
 
855
   if(Looping_Links || Looping_Rechts)   Looping_Roll = 1; else Looping_Roll = 0;
856
   if(Looping_Oben  || Looping_Unten) {  Looping_Nick = 1; Looping_Roll = 0; Looping_Links = 0; Looping_Rechts = 0;} else Looping_Nick = 0;
857
  } // Ende neue Funken-Werte
858
 
859
  if(Looping_Roll || Looping_Nick)
860
   {
861
    if(GasMischanteil > EE_Parameter.LoopGasLimit) GasMischanteil = EE_Parameter.LoopGasLimit;
862
        TrichterFlug = 1;
863
   }
864
 
865
 
866
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
867
// Bei Empfangsausfall im Flug
868
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
869
   if(Notlandung)
870
    {
871
     StickGier = 0;
872
     StickNick = 0;
873
     StickRoll = 0;
874
     GyroFaktor     = 90;
875
     IntegralFaktor = 120;
876
     GyroFaktorGier     = 90;
877
     IntegralFaktorGier = 120;
878
     Looping_Roll = 0;
879
     Looping_Nick = 0;
880
    }
881
 
882
 
883
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
884
// Integrale auf ACC-Signal abgleichen
885
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
886
#define ABGLEICH_ANZAHL 256L
887
 
888
 MittelIntegralNick  += IntegralNick;    // Für die Mittelwertbildung aufsummieren
889
 MittelIntegralRoll  += IntegralRoll;
890
 MittelIntegralNick2 += IntegralNick2;
891
 MittelIntegralRoll2 += IntegralRoll2;
892
 
893
 if(Looping_Nick || Looping_Roll)
894
  {
895
    IntegralAccNick = 0;
896
    IntegralAccRoll = 0;
897
    MittelIntegralNick = 0;
898
    MittelIntegralRoll = 0;
899
    MittelIntegralNick2 = 0;
900
    MittelIntegralRoll2 = 0;
901
    Mess_IntegralNick2 = Mess_IntegralNick;
902
    Mess_IntegralRoll2 = Mess_IntegralRoll;
903
    ZaehlMessungen = 0;
904
    LageKorrekturNick = 0;
905
    LageKorrekturRoll = 0;
906
  }
907
 
908
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
909
  if(!Looping_Nick && !Looping_Roll && (Aktuell_az > 512 || MotorenEin))
910
  {
911
   long tmp_long, tmp_long2;
912
   if(FromNaviCtrl_Value.Kalman_K != -1 /*&& !TrichterFlug*/)
913
     {
914
      tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
915
      tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
916
      tmp_long  = (tmp_long  * FromNaviCtrl_Value.Kalman_K) / (32 * 16);
917
      tmp_long2 = (tmp_long2 * FromNaviCtrl_Value.Kalman_K) / (32 * 16);
918
     if((MaxStickNick > 64) || (MaxStickRoll > 64))
919
      {
920
      tmp_long  /= 2;
921
      tmp_long2 /= 2;
922
      }
923
     if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)
924
      {
925
      tmp_long  /= 3;
926
      tmp_long2 /= 3;
927
      }
928
      if(tmp_long >  (long) FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long  = (long) FromNaviCtrl_Value.Kalman_MaxFusion;
929
      if(tmp_long <  (long)-FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long  = (long)-FromNaviCtrl_Value.Kalman_MaxFusion;
930
      if(tmp_long2 > (long) FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long2 = (long) FromNaviCtrl_Value.Kalman_MaxFusion;
931
      if(tmp_long2 < (long)-FromNaviCtrl_Value.Kalman_MaxFusion)  tmp_long2 = (long)-FromNaviCtrl_Value.Kalman_MaxFusion;
932
     }
933
     else
934
     {
935
      tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
936
      tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
937
      tmp_long /= 16;
938
      tmp_long2 /= 16;
939
     if((MaxStickNick > 64) || (MaxStickRoll > 64))
940
      {
941
      tmp_long  /= 3;
942
      tmp_long2 /= 3;
943
      }
944
     if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)
945
      {
946
      tmp_long  /= 3;
947
      tmp_long2 /= 3;
948
      }
949
 
950
#define AUSGLEICH  32
951
      if(tmp_long >  AUSGLEICH)  tmp_long  = AUSGLEICH;
952
      if(tmp_long < -AUSGLEICH)  tmp_long  =-AUSGLEICH;
953
      if(tmp_long2 > AUSGLEICH)  tmp_long2 = AUSGLEICH;
954
      if(tmp_long2 <-AUSGLEICH)  tmp_long2 =-AUSGLEICH;
955
     }
956
 
957
//if(Poti2 > 20) { tmp_long = 0; tmp_long2 = 0;}
958
   Mess_IntegralNick -= tmp_long;
959
   Mess_IntegralRoll -= tmp_long2;
960
  }
961
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
962
 if(ZaehlMessungen >= ABGLEICH_ANZAHL)
963
 {
964
  static int cnt = 0;
965
  static char last_n_p,last_n_n,last_r_p,last_r_n;
966
  static long MittelIntegralNick_Alt,MittelIntegralRoll_Alt;
967
  if(!Looping_Nick && !Looping_Roll && !TrichterFlug && EE_Parameter.Driftkomp)
968
  {
969
    MittelIntegralNick  /= ABGLEICH_ANZAHL;
970
    MittelIntegralRoll  /= ABGLEICH_ANZAHL;
971
        IntegralAccNick = (EE_Parameter.GyroAccFaktor * IntegralAccNick) / ABGLEICH_ANZAHL;
972
        IntegralAccRoll = (EE_Parameter.GyroAccFaktor * IntegralAccRoll) / ABGLEICH_ANZAHL;
973
    IntegralAccZ    = IntegralAccZ / ABGLEICH_ANZAHL;
974
#define MAX_I 0//(Poti2/10)
975
// Nick ++++++++++++++++++++++++++++++++++++++++++++++++
976
    IntegralFehlerNick = (long)(MittelIntegralNick - (long)IntegralAccNick);
977
    ausgleichNick = IntegralFehlerNick / EE_Parameter.GyroAccAbgleich;
978
// Roll ++++++++++++++++++++++++++++++++++++++++++++++++
979
    IntegralFehlerRoll = (long)(MittelIntegralRoll - (long)IntegralAccRoll);
980
    ausgleichRoll = IntegralFehlerRoll / EE_Parameter.GyroAccAbgleich;
981
 
982
    LageKorrekturNick = ausgleichNick / ABGLEICH_ANZAHL;
983
    LageKorrekturRoll = ausgleichRoll / ABGLEICH_ANZAHL;
984
 
985
   if(((MaxStickNick > 64) || (MaxStickRoll > 64) || (abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)) && (FromNaviCtrl_Value.Kalman_K == -1))
986
    {
987
     LageKorrekturNick /= 2;
988
     LageKorrekturRoll /= 2;
989
    }
990
 
991
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
992
// Gyro-Drift ermitteln
993
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
994
    MittelIntegralNick2 /= ABGLEICH_ANZAHL;
995
    MittelIntegralRoll2 /= ABGLEICH_ANZAHL;
996
    tmp_long  = IntegralNick2 - IntegralNick;
997
    tmp_long2 = IntegralRoll2 - IntegralRoll;
998
    //DebugOut.Analog[25] = MittelIntegralRoll2 / 26;
999
 
1000
    IntegralFehlerNick = tmp_long;
1001
    IntegralFehlerRoll = tmp_long2;
1002
    Mess_IntegralNick2 -= IntegralFehlerNick;
1003
    Mess_IntegralRoll2 -= IntegralFehlerRoll;
1004
 
1005
//    IntegralFehlerNick = (IntegralFehlerNick * 1 + tmp_long) / 2;
1006
//    IntegralFehlerRoll = (IntegralFehlerRoll * 1 + tmp_long2) / 2;
1007
  if(EE_Parameter.Driftkomp)
1008
   {
1009
    if(GierGyroFehler > ABGLEICH_ANZAHL/2) { AdNeutralGier++; AdNeutralGierBias++; }
1010
    if(GierGyroFehler <-ABGLEICH_ANZAHL/2) { AdNeutralGier--; AdNeutralGierBias--; }
1011
   }
1012
//DebugOut.Analog[22] = MittelIntegralRoll / 26;
1013
//DebugOut.Analog[24] = GierGyroFehler;
1014
    GierGyroFehler = 0;
1015
 
1016
 
1017
/*DebugOut.Analog[17] = IntegralAccNick / 26;
1018
DebugOut.Analog[18] = IntegralAccRoll / 26;
1019
DebugOut.Analog[19] = IntegralFehlerNick;// / 26;
1020
DebugOut.Analog[20] = IntegralFehlerRoll;// / 26;
1021
*/
1022
//DebugOut.Analog[21] = MittelIntegralNick / 26;
1023
//MittelIntegralRoll = MittelIntegralRoll;
1024
//DebugOut.Analog[28] = ausgleichNick;
1025
/*
1026
DebugOut.Analog[29] = ausgleichRoll;
1027
DebugOut.Analog[30] = LageKorrekturRoll * 10;
1028
*/
1029
 
1030
#define FEHLER_LIMIT  (ABGLEICH_ANZAHL / 2) 
1031
#define FEHLER_LIMIT1 (ABGLEICH_ANZAHL * 2) //4 
1032
#define FEHLER_LIMIT2 (ABGLEICH_ANZAHL * 16) //16
1033
#define BEWEGUNGS_LIMIT 20000
1034
// Nick +++++++++++++++++++++++++++++++++++++++++++++++++
1035
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
1036
        if(labs(IntegralFehlerNick) > FEHLER_LIMIT1) cnt = 4;
1037
        if(labs(MittelIntegralNick_Alt - MittelIntegralNick) < BEWEGUNGS_LIMIT || (FromNaviCtrl_Value.Kalman_MaxDrift > 3*8))
1038
        {
1039
        if(IntegralFehlerNick >  FEHLER_LIMIT2)
1040
         {
1041
           if(last_n_p)
1042
           {
1043
            cnt += labs(IntegralFehlerNick) / (FEHLER_LIMIT2 / 8);
1044
            ausgleichNick = IntegralFehlerNick / 8;
1045
            if(ausgleichNick > 5000) ausgleichNick = 5000;
1046
            LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
1047
           }
1048
           else last_n_p = 1;
1049
         } else  last_n_p = 0;
1050
        if(IntegralFehlerNick < -FEHLER_LIMIT2)
1051
         {
1052
           if(last_n_n)
1053
            {
1054
             cnt += labs(IntegralFehlerNick) / (FEHLER_LIMIT2 / 8);
1055
             ausgleichNick = IntegralFehlerNick / 8;
1056
             if(ausgleichNick < -5000) ausgleichNick = -5000;
1057
             LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
1058
            }
1059
           else last_n_n = 1;
1060
         } else  last_n_n = 0;
1061
        }
1062
        else
1063
        {
1064
         cnt = 0;
1065
         KompassSignalSchlecht = 1000;
1066
        }
1067
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
1068
                if(FromNaviCtrl_Value.Kalman_MaxDrift) if(cnt > FromNaviCtrl_Value.Kalman_MaxDrift) cnt = FromNaviCtrl_Value.Kalman_MaxDrift;
1069
        if(IntegralFehlerNick >  FEHLER_LIMIT)   AdNeutralNick += cnt;
1070
        if(IntegralFehlerNick < -FEHLER_LIMIT)   AdNeutralNick -= cnt;
1071
 
1072
// Roll +++++++++++++++++++++++++++++++++++++++++++++++++
1073
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
1074
        if(labs(IntegralFehlerRoll) > FEHLER_LIMIT1) cnt = 4;
1075
        ausgleichRoll = 0;
1076
        if(labs(MittelIntegralRoll_Alt - MittelIntegralRoll) < BEWEGUNGS_LIMIT || (FromNaviCtrl_Value.Kalman_MaxDrift > 3*8))
1077
        {
1078
        if(IntegralFehlerRoll >  FEHLER_LIMIT2)
1079
         {
1080
           if(last_r_p)
1081
           {
1082
            cnt += labs(IntegralFehlerRoll) / (FEHLER_LIMIT2 / 8);
1083
            ausgleichRoll = IntegralFehlerRoll / 8;
1084
            if(ausgleichRoll > 5000) ausgleichRoll = 5000;
1085
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
1086
           }
1087
           else last_r_p = 1;
1088
         } else  last_r_p = 0;
1089
        if(IntegralFehlerRoll < -FEHLER_LIMIT2)
1090
         {
1091
           if(last_r_n)
1092
           {
1093
            cnt += labs(IntegralFehlerRoll) / (FEHLER_LIMIT2 / 8);
1094
            ausgleichRoll = IntegralFehlerRoll / 8;
1095
            if(ausgleichRoll < -5000) ausgleichRoll = -5000;
1096
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
1097
           }
1098
           else last_r_n = 1;
1099
         } else  last_r_n = 0;
1100
        } else
1101
        {
1102
         cnt = 0;
1103
         KompassSignalSchlecht = 1000;
1104
        }
1105
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
1106
                if(FromNaviCtrl_Value.Kalman_MaxDrift) if(cnt > FromNaviCtrl_Value.Kalman_MaxDrift) cnt = FromNaviCtrl_Value.Kalman_MaxDrift;
1107
        if(IntegralFehlerRoll >  FEHLER_LIMIT)   AdNeutralRoll += cnt;
1108
        if(IntegralFehlerRoll < -FEHLER_LIMIT)   AdNeutralRoll -= cnt;
1109
  }
1110
  else
1111
  {
1112
   LageKorrekturRoll = 0;
1113
   LageKorrekturNick = 0;
1114
   TrichterFlug = 0;
1115
  }
1116
 
1117
  if(!IntegralFaktor) { LageKorrekturRoll = 0; LageKorrekturNick = 0;} // z.B. bei HH
1118
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
1119
   MittelIntegralNick_Alt = MittelIntegralNick;
1120
   MittelIntegralRoll_Alt = MittelIntegralRoll;
1121
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
1122
    IntegralAccNick = 0;
1123
    IntegralAccRoll = 0;
1124
    IntegralAccZ = 0;
1125
    MittelIntegralNick = 0;
1126
    MittelIntegralRoll = 0;
1127
    MittelIntegralNick2 = 0;
1128
    MittelIntegralRoll2 = 0;
1129
    ZaehlMessungen = 0;
1130
 } //  ZaehlMessungen >= ABGLEICH_ANZAHL
1131
 
1132
 
1133
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1134
//  Gieren
1135
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1136
//    if(GasMischanteil < 35) { if(StickGier > 10) StickGier = 10; else if(StickGier < -10) StickGier = -10;};
1137
    if(abs(StickGier) > 15) // war 35
1138
     {
1139
      KompassSignalSchlecht = 1000;
1140
      if(!(EE_Parameter.GlobalConfig & CFG_KOMPASS_FIX))
1141
       {
1142
         NeueKompassRichtungMerken = 1;
1143
        };
1144
     }
1145
    tmp_int  = (long) EE_Parameter.Gier_P * ((long)StickGier * abs(StickGier)) / 512L; // expo  y = ax + bx²
1146
    tmp_int += (EE_Parameter.Gier_P * StickGier) / 4;
1147
    sollGier = tmp_int;
1148
    Mess_Integral_Gier -= tmp_int;
1149
    if(Mess_Integral_Gier > 50000) Mess_Integral_Gier = 50000;  // begrenzen
1150
    if(Mess_Integral_Gier <-50000) Mess_Integral_Gier =-50000;
1151
 
1152
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1153
//  Kompass
1154
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1155
//DebugOut.Analog[16] = KompassSignalSchlecht;
1156
 
1157
    if(KompassValue && (EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV))
1158
     {
1159
       int w,v,r,fehler,korrektur;
1160
       w = abs(IntegralNick /512); // mit zunehmender Neigung den Einfluss drosseln
1161
       v = abs(IntegralRoll /512);
1162
       if(v > w) w = v; // grösste Neigung ermitteln
1163
       korrektur = w / 8 + 1;
1164
       fehler = ((540 + KompassValue - (ErsatzKompass/GIER_GRAD_FAKTOR)) % 360) - 180;
1165
       if(abs(MesswertGier) > 128)
1166
            {
1167
                 fehler = 0;
1168
                }
1169
       if(!KompassSignalSchlecht && w < 25)
1170
        {
1171
        GierGyroFehler += fehler;
1172
        if(NeueKompassRichtungMerken)
1173
         {
1174
          beeptime = 200;
1175
//         KompassStartwert = KompassValue;
1176
                  ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
1177
          KompassStartwert = (ErsatzKompass/GIER_GRAD_FAKTOR);
1178
          NeueKompassRichtungMerken = 0;
1179
         }
1180
        }
1181
       ErsatzKompass += (fehler * 8) / korrektur;
1182
       w = (w * Parameter_KompassWirkung) / 32;           // auf die Wirkung normieren
1183
       w = Parameter_KompassWirkung - w;                  // Wirkung ggf drosseln
1184
       if(w >= 0)
1185
        {
1186
          if(!KompassSignalSchlecht)
1187
          {
1188
           v = 64 + ((MaxStickNick + MaxStickRoll)) / 8;
1189
           r = ((540 + (ErsatzKompass/GIER_GRAD_FAKTOR) - KompassStartwert) % 360) - 180;
1190
//           r = KompassRichtung;
1191
           v = (r * w) / v;  // nach Kompass ausrichten
1192
           w = 3 * Parameter_KompassWirkung;
1193
           if(v > w) v = w; // Begrenzen
1194
           else
1195
           if(v < -w) v = -w;
1196
           Mess_Integral_Gier += v;
1197
          }
1198
          if(KompassSignalSchlecht) KompassSignalSchlecht--;
1199
        }
1200
        else KompassSignalSchlecht = 500; // so lange das Signal taub stellen --> ca. 1 sek
1201
     }
1202
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1203
 
1204
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1205
//  Debugwerte zuordnen
1206
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1207
  if(!TimerWerteausgabe--)
1208
   {
1209
    TimerWerteausgabe = 24;
1210
 
1211
    DebugOut.Analog[0] = IntegralNick / (EE_Parameter.GyroAccFaktor * 4);
1212
    DebugOut.Analog[1] = IntegralRoll / (EE_Parameter.GyroAccFaktor * 4);
1213
    DebugOut.Analog[2] = Mittelwert_AccNick / 4;
1214
    DebugOut.Analog[3] = Mittelwert_AccRoll / 4;
1215
    DebugOut.Analog[4] = MesswertGier;
1216
    DebugOut.Analog[5] = HoehenWert;
1217
    DebugOut.Analog[6] = Aktuell_az;//(Mess_Integral_Hoch / 512);//Aktuell_az;
1218
    DebugOut.Analog[8] = KompassValue;
1219
    DebugOut.Analog[9] = UBat;
1220
    DebugOut.Analog[11] = ErsatzKompass / GIER_GRAD_FAKTOR;
1221
    DebugOut.Analog[10] = SenderOkay;
1222
 
1223
 
1224
    DebugOut.Analog[16]=MotorenEin;
1225
    //DebugOut.Analog[16] = Mittelwert_AccHoch;
1226
    //DebugOut.Analog[17] = FromNaviCtrl_Value.Distance;
1227
    //DebugOut.Analog[18] = (int)FromNaviCtrl_Value.OsdBar;
1228
    DebugOut.Analog[19] = WinkelOut.CalcState;
1229
    DebugOut.Analog[20] = ServoValue;
1230
//    DebugOut.Analog[24] = MesswertNick/2;
1231
//    DebugOut.Analog[25] = MesswertRoll/2;
1232
    DebugOut.Analog[27] = (int)FromNaviCtrl_Value.Kalman_MaxDrift;
1233
//    DebugOut.Analog[28] = (int)FromNaviCtrl_Value.Kalman_MaxFusion;
1234
//    DebugOut.Analog[29] = (int)FromNaviCtrl_Value.Kalman_K;
1235
    DebugOut.Analog[29] = FromNaviCtrl_Value.SerialDataOkay;
1236
    DebugOut.Analog[30] = GPS_Nick;
1237
    DebugOut.Analog[31] = GPS_Roll;
1238
 
1239
 
1240
//    DebugOut.Analog[19] -= DebugOut.Analog[19]/128;
1241
//    if(DebugOut.Analog[19] > 0) DebugOut.Analog[19]--; else DebugOut.Analog[19]++;
1242
 
1243
/*    DebugOut.Analog[16] = motor_rx[0];
1244
    DebugOut.Analog[17] = motor_rx[1];
1245
    DebugOut.Analog[18] = motor_rx[2];
1246
    DebugOut.Analog[19] = motor_rx[3];
1247
    DebugOut.Analog[20] = motor_rx[0] + motor_rx[1] + motor_rx[2] + motor_rx[3];
1248
    DebugOut.Analog[20] /= 14;
1249
    DebugOut.Analog[21] = motor_rx[4];
1250
    DebugOut.Analog[22] = motor_rx[5];
1251
    DebugOut.Analog[23] = motor_rx[6];
1252
    DebugOut.Analog[24] = motor_rx[7];
1253
    DebugOut.Analog[25] = motor_rx[4] + motor_rx[5] + motor_rx[6] + motor_rx[7];
1254
*/
1255
//    DebugOut.Analog[9] = MesswertNick;
1256
//    DebugOut.Analog[9] = SollHoehe;
1257
//    DebugOut.Analog[10] = Mess_Integral_Gier / 128;
1258
//    DebugOut.Analog[11] = KompassStartwert;
1259
//    DebugOut.Analog[10] = Parameter_Gyro_I;
1260
//    DebugOut.Analog[10] = EE_Parameter.Gyro_I;
1261
//    DebugOut.Analog[9] = KompassRichtung;
1262
//    DebugOut.Analog[10] = GasMischanteil;
1263
//    DebugOut.Analog[3] = HoeheD * 32;
1264
//    DebugOut.Analog[4] = hoehenregler;
1265
  }
1266
 
1267
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1268
//  Drehgeschwindigkeit und -winkel zu einem Istwert zusammenfassen
1269
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1270
  if(TrichterFlug)  { SummeRoll = 0; SummeNick = 0;};
1271
 
1272
  if(!Looping_Nick) IntegralNickMalFaktor = (IntegralNick * IntegralFaktor) /  (44000 / STICK_GAIN); else IntegralNickMalFaktor = 0;
1273
  if(!Looping_Roll) IntegralRollMalFaktor = (IntegralRoll * IntegralFaktor) /  (44000 / STICK_GAIN); else IntegralRollMalFaktor = 0;
1274
 
1275
#define TRIM_MAX 200
1276
 if(TrimNick > TRIM_MAX) TrimNick = TRIM_MAX; else  if(TrimNick <-TRIM_MAX) TrimNick =-TRIM_MAX;
1277
 if(TrimRoll > TRIM_MAX) TrimRoll = TRIM_MAX; else  if(TrimRoll <-TRIM_MAX) TrimRoll =-TRIM_MAX;
1278
 
1279
    MesswertNick = IntegralNickMalFaktor + (long)((long)MesswertNick * GyroFaktor + (long)TrimNick * 128L) / (256L / STICK_GAIN);
1280
    MesswertRoll = IntegralRollMalFaktor + (long)((long)MesswertRoll * GyroFaktor + (long)TrimRoll * 128L) / (256L / STICK_GAIN);
1281
    MesswertGier = (long)(MesswertGier * 2 * (long)GyroFaktorGier) / (256L / STICK_GAIN) + (long)(Integral_Gier * IntegralFaktorGier) / (2 * (44000 / STICK_GAIN));
1282
 
1283
    // Maximalwerte abfangen
1284
//    #define MAX_SENSOR  (4096*STICK_GAIN)
1285
    #define MAX_SENSOR  (4096*4)
1286
    if(MesswertNick >  MAX_SENSOR) MesswertNick =  MAX_SENSOR;
1287
    if(MesswertNick < -MAX_SENSOR) MesswertNick = -MAX_SENSOR;
1288
    if(MesswertRoll >  MAX_SENSOR) MesswertRoll =  MAX_SENSOR;
1289
    if(MesswertRoll < -MAX_SENSOR) MesswertRoll = -MAX_SENSOR;
1290
    if(MesswertGier >  MAX_SENSOR) MesswertGier =  MAX_SENSOR;
1291
    if(MesswertGier < -MAX_SENSOR) MesswertGier = -MAX_SENSOR;
1292
 
1293
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1294
// all BL-Ctrl connected?
1295
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1296
  if(MissingMotor) if(modell_fliegt > 1 && modell_fliegt < 50 && GasMischanteil > 0)
1297
   {
1298
    modell_fliegt = 1;
1299
        GasMischanteil = MIN_GAS;
1300
   }
1301
 
1302
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1303
// Höhenregelung
1304
// Die Höhenregelung schwächt lediglich das Gas ab, erhöht es allerdings nicht
1305
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1306
  GasMischanteil *= STICK_GAIN;
1307
 if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung
1308
  {
1309
    int tmp_int;
1310
        static char delay = 100;
1311
    if(EE_Parameter.GlobalConfig & CFG_HOEHEN_SCHALTER)  // Regler wird über Schalter gesteuert
1312
    {
1313
      if(Parameter_MaxHoehe < 50)
1314
      {
1315
       if(!delay--)
1316
            {
1317
         if((MessLuftdruck > 1000) && OCR0A < 254)
1318
                  {
1319
                    if(OCR0A < 244)
1320
                     {
1321
                      ExpandBaro -= 10;
1322
                      OCR0A = DruckOffsetSetting - ExpandBaro;
1323
                         }
1324
                         else OCR0A = 254;
1325
                beeptime = 300;
1326
            delay = 250;
1327
                  }
1328
                  else      
1329
         if((MessLuftdruck < 100) && OCR0A > 1)
1330
                  {
1331
                   if(OCR0A > 10)
1332
                    {
1333
                     ExpandBaro += 10;
1334
                     OCR0A = DruckOffsetSetting - ExpandBaro;
1335
                        }
1336
                         else OCR0A = 1;
1337
                   beeptime = 300;
1338
           delay = 250;
1339
                  }
1340
          else
1341
          {
1342
               SollHoehe = HoehenWert - 20;  // Parameter_MaxHoehe ist der PPM-Wert des Schalters
1343
           HoehenReglerAktiv = 0;
1344
                   delay = 1;
1345
                  }
1346
                }
1347
      }
1348
      else
1349
        {
1350
         HoehenReglerAktiv = 1;
1351
                 delay = 200;
1352
                }
1353
    }
1354
    else
1355
    {
1356
     SollHoehe = ((int) ExternHoehenValue + (int) Parameter_MaxHoehe) * (int)EE_Parameter.Hoehe_Verstaerkung - 20;
1357
     HoehenReglerAktiv = 1;
1358
    }
1359
 
1360
    if(Notlandung) SollHoehe = 0;
1361
    h = HoehenWert;
1362
    if((h > SollHoehe) && HoehenReglerAktiv)      // zu hoch --> drosseln
1363
     {
1364
      h = ((h - SollHoehe) * (int) Parameter_Hoehe_P) / (16 / STICK_GAIN); // Differenz bestimmen --> P-Anteil
1365
      h = GasMischanteil - h;         // vom Gas abziehen
1366
      h -= (HoeheD)/(8/STICK_GAIN);    // D-Anteil
1367
      tmp_int = ((Mess_Integral_Hoch / 128) * (signed long) Parameter_Hoehe_ACC_Wirkung) / (128 / STICK_GAIN);
1368
      if(tmp_int > 70*STICK_GAIN) tmp_int = 70*STICK_GAIN;
1369
      else if(tmp_int < -(70*STICK_GAIN)) tmp_int = -(70*STICK_GAIN);
1370
      h -= tmp_int;
1371
      hoehenregler = (hoehenregler*15 + h) / 16;
1372
      if(hoehenregler < EE_Parameter.Hoehe_MinGas * STICK_GAIN) // nicht unter MIN
1373
       {
1374
         if(GasMischanteil >= EE_Parameter.Hoehe_MinGas * STICK_GAIN) hoehenregler = EE_Parameter.Hoehe_MinGas * STICK_GAIN;
1375
         if(GasMischanteil < EE_Parameter.Hoehe_MinGas * STICK_GAIN) hoehenregler = GasMischanteil;
1376
       }
1377
      if(hoehenregler > GasMischanteil) hoehenregler = GasMischanteil; // nicht mehr als Gas
1378
      GasMischanteil = hoehenregler;
1379
     }
1380
  }
1381
  if(GasMischanteil > (MAX_GAS - 20) * STICK_GAIN) GasMischanteil = (MAX_GAS - 20) * STICK_GAIN;
1382
 
1383
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1384
// + Mischer und PI-Regler
1385
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1386
  DebugOut.Analog[7] = GasMischanteil;
1387
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1388
// Gier-Anteil
1389
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1390
#define MUL_G  1.0
1391
    GierMischanteil = MesswertGier - sollGier * STICK_GAIN;     // Regler für Gier
1392
// GierMischanteil = 0;
1393
#define MIN_GIERGAS  (40*STICK_GAIN)  // unter diesem Gaswert trotzdem Gieren
1394
   if(GasMischanteil > MIN_GIERGAS)
1395
    {
1396
     if(GierMischanteil > (GasMischanteil / 2)) GierMischanteil = GasMischanteil / 2;
1397
     if(GierMischanteil < -(GasMischanteil / 2)) GierMischanteil = -(GasMischanteil / 2);
1398
    }
1399
    else
1400
    {
1401
     if(GierMischanteil > (MIN_GIERGAS / 2))  GierMischanteil = MIN_GIERGAS / 2;
1402
     if(GierMischanteil < -(MIN_GIERGAS / 2)) GierMischanteil = -(MIN_GIERGAS / 2);
1403
    }
1404
    tmp_int = MAX_GAS*STICK_GAIN;
1405
    if(GierMischanteil > ((tmp_int - GasMischanteil))) GierMischanteil = ((tmp_int - GasMischanteil));
1406
    if(GierMischanteil < -((tmp_int - GasMischanteil))) GierMischanteil = -((tmp_int - GasMischanteil));
1407
 
1408
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1409
// Nick-Achse
1410
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1411
    DiffNick = MesswertNick - StickNick;        // Differenz bestimmen
1412
    if(IntegralFaktor) SummeNick += IntegralNickMalFaktor - StickNick; // I-Anteil bei Winkelregelung
1413
    else  SummeNick += DiffNick; // I-Anteil bei HH
1414
    if(SummeNick >  (STICK_GAIN * 16000L)) SummeNick =  (STICK_GAIN * 16000L);
1415
    if(SummeNick < -(16000L * STICK_GAIN)) SummeNick = -(16000L * STICK_GAIN);
1416
    pd_ergebnis_nick = DiffNick + SummeNick / Ki; // PI-Regler für Nick
1417
    // Motor Vorn
1418
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1419
    if(pd_ergebnis_nick >  tmp_int) pd_ergebnis_nick =  tmp_int;
1420
    if(pd_ergebnis_nick < -tmp_int) pd_ergebnis_nick = -tmp_int;
1421
 
1422
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1423
// Roll-Achse
1424
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1425
        DiffRoll = MesswertRoll - StickRoll;    // Differenz bestimmen
1426
    if(IntegralFaktor) SummeRoll += IntegralRollMalFaktor - StickRoll;// I-Anteil bei Winkelregelung
1427
    else                 SummeRoll += DiffRoll;  // I-Anteil bei HH
1428
    if(SummeRoll >  (STICK_GAIN * 16000L)) SummeRoll =  (STICK_GAIN * 16000L);
1429
    if(SummeRoll < -(16000L * STICK_GAIN)) SummeRoll = -(16000L * STICK_GAIN);
1430
    pd_ergebnis_roll = DiffRoll + SummeRoll / Ki;       // PI-Regler für Roll
1431
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1432
    if(pd_ergebnis_roll >  tmp_int) pd_ergebnis_roll =  tmp_int;
1433
    if(pd_ergebnis_roll < -tmp_int) pd_ergebnis_roll = -tmp_int;
1434
 
1435
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1436
// Universal Mixer
1437
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1438
 for(i=0; i<MAX_MOTORS; i++)
1439
 {
1440
  signed int tmp_int;
1441
  if(Mixer.Motor[i][0] > 0)
1442
   {
1443
    tmp_int =  ((long)GasMischanteil * Mixer.Motor[i][0]) / 64L;
1444
    tmp_int += ((long)pd_ergebnis_nick * Mixer.Motor[i][1]) / 64L;
1445
    tmp_int += ((long)pd_ergebnis_roll * Mixer.Motor[i][2]) / 64L;
1446
    tmp_int += ((long)GierMischanteil * Mixer.Motor[i][3]) / 64L;
1447
    tmp_motorwert[i] = MotorSmoothing(tmp_int,tmp_motorwert[i]);  // Filter
1448
        tmp_int = tmp_motorwert[i] / STICK_GAIN;
1449
        CHECK_MIN_MAX(tmp_int,MIN_GAS,MAX_GAS);
1450
    Motor[i] = tmp_int;
1451
   }
1452
   else Motor[i] = 0;
1453
 }
1454
/*
1455
if(Poti1 > 20)  Motor1 = 0;
1456
if(Poti1 > 90)  Motor6 = 0;
1457
if(Poti1 > 140) Motor2 = 0;
1458
//if(Poti1 > 200) Motor7 = 0;
1459
*/
1460
}