Subversion Repositories FlightCtrl

Rev

Rev 1453 | Rev 1465 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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