Subversion Repositories FlightCtrl

Rev

Rev 1152 | Details | Compare with Previous | Last modification | View Log | RSS feed

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