Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

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