Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

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