Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1 ingob 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 
693 hbuss 41
// +     clearly linked as origin // +   * porting to systems other than hardware from www.mikrokopter.de is not allowed
1 ingob 42
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
43
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
46
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
47
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
48
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
492 hbuss 49
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1 ingob 50
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
51
// +  POSSIBILITY OF SUCH DAMAGE. 
52
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
53
 
54
#include "main.h"
395 hbuss 55
#include "eeprom.c"
1 ingob 56
 
57
unsigned char h,m,s;
173 holgerb 58
volatile unsigned int I2CTimeout = 100;
1 ingob 59
volatile int MesswertNick,MesswertRoll,MesswertGier;
401 hbuss 60
volatile int AdNeutralNick = 0,AdNeutralRoll = 0,AdNeutralGier = 0,StartNeutralRoll = 0,StartNeutralNick = 0;
1 ingob 61
volatile int Mittelwert_AccNick, Mittelwert_AccRoll,Mittelwert_AccHoch, NeutralAccX=0, NeutralAccY=0;
805 hbuss 62
int NaviAccNick, NaviAccRoll,NaviCntAcc = 0;
1 ingob 63
volatile float NeutralAccZ = 0;
64
unsigned char CosinusNickWinkel = 0, CosinusRollWinkel = 0;
693 hbuss 65
long IntegralNick = 0,IntegralNick2 = 0;
66
long IntegralRoll = 0,IntegralRoll2 = 0;
67
long IntegralAccNick = 0,IntegralAccRoll = 0,IntegralAccZ = 0;
68
long Integral_Gier = 0;
69
long Mess_IntegralNick = 0,Mess_IntegralNick2 = 0;
70
long Mess_IntegralRoll = 0,Mess_IntegralRoll2 = 0;
71
long Mess_Integral_Gier = 0,Mess_Integral_Gier2 = 0;
72
long MittelIntegralNick,MittelIntegralRoll,MittelIntegralNick2,MittelIntegralRoll2;
1 ingob 73
volatile long Mess_Integral_Hoch = 0;
74
volatile int  KompassValue = 0;
75
volatile int  KompassStartwert = 0;
76
volatile int  KompassRichtung = 0;
693 hbuss 77
unsigned int  KompassSignalSchlecht = 500;
1 ingob 78
unsigned char MAX_GAS,MIN_GAS;
79
unsigned char Notlandung = 0;
80
unsigned char HoehenReglerAktiv = 0;
395 hbuss 81
long Umschlag180Nick = 250000L, Umschlag180Roll = 250000L;
693 hbuss 82
long  ErsatzKompass;
83
int   ErsatzKompassInGrad; // Kompasswert in Grad
84
int   GierGyroFehler = 0;
1 ingob 85
float GyroFaktor;
86
float IntegralFaktor;
87
volatile int  DiffNick,DiffRoll;
88
int  Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0;
89
volatile unsigned char Motor_Vorne,Motor_Hinten,Motor_Rechts,Motor_Links, Count;
90
unsigned char MotorWert[5];
91
volatile unsigned char SenderOkay = 0;
595 hbuss 92
int StickNick = 0,StickRoll = 0,StickGier = 0,StickGas = 0;
1 ingob 93
char MotorenEin = 0;
94
int HoehenWert = 0;
95
int SollHoehe = 0;
498 hbuss 96
int LageKorrekturRoll = 0,LageKorrekturNick = 0;
1 ingob 97
float Ki =  FAKTOR_I;
395 hbuss 98
unsigned char Looping_Nick = 0,Looping_Roll = 0;
99
unsigned char Looping_Links = 0, Looping_Rechts = 0, Looping_Unten = 0, Looping_Oben = 0;
1 ingob 100
 
101
unsigned char Parameter_Luftdruck_D  = 48;      // Wert : 0-250
102
unsigned char Parameter_MaxHoehe     = 251;      // Wert : 0-250
103
unsigned char Parameter_Hoehe_P      = 16;      // Wert : 0-32
104
unsigned char Parameter_Hoehe_ACC_Wirkung = 58; // Wert : 0-250
105
unsigned char Parameter_KompassWirkung = 64;    // Wert : 0-250
173 holgerb 106
unsigned char Parameter_Gyro_P = 150;           // Wert : 10-250
1 ingob 107
unsigned char Parameter_Gyro_I = 150;           // Wert : 0-250
108
unsigned char Parameter_Gier_P = 2;             // Wert : 1-20
109
unsigned char Parameter_I_Faktor = 10;          // Wert : 1-20
110
unsigned char Parameter_UserParam1 = 0;
111
unsigned char Parameter_UserParam2 = 0;
112
unsigned char Parameter_UserParam3 = 0;
113
unsigned char Parameter_UserParam4 = 0;
499 hbuss 114
unsigned char Parameter_UserParam5 = 0;
115
unsigned char Parameter_UserParam6 = 0;
116
unsigned char Parameter_UserParam7 = 0;
117
unsigned char Parameter_UserParam8 = 0;
1 ingob 118
unsigned char Parameter_ServoNickControl = 100;
173 holgerb 119
unsigned char Parameter_LoopGasLimit = 70;
395 hbuss 120
unsigned char Parameter_AchsKopplung1 = 0;
121
unsigned char Parameter_AchsGegenKopplung1 = 0;
499 hbuss 122
unsigned char Parameter_DynamicStability = 100;
1 ingob 123
struct mk_param_struct EE_Parameter;
492 hbuss 124
signed int ExternStickNick = 0,ExternStickRoll = 0,ExternStickGier = 0, ExternHoehenValue = -20;
614 hbuss 125
int MaxStickNick = 0,MaxStickRoll = 0;
1 ingob 126
 
127
void Piep(unsigned char Anzahl)
128
{
129
 while(Anzahl--)
130
 {
131
  if(MotorenEin) return; //auf keinen Fall im Flug!
132
  beeptime = 100;
133
  Delay_ms(250);
134
 }
135
}
136
 
137
//############################################################################
138
//  Nullwerte ermitteln
139
void SetNeutral(void)
140
//############################################################################
141
{
142
        NeutralAccX = 0;
143
        NeutralAccY = 0;
144
        NeutralAccZ = 0;
145
    AdNeutralNick = 0; 
146
        AdNeutralRoll = 0;     
147
        AdNeutralGier = 0;
395 hbuss 148
    Parameter_AchsKopplung1 = 0;
149
    Parameter_AchsGegenKopplung1 = 0;
1 ingob 150
    CalibrierMittelwert();     
395 hbuss 151
    Delay_ms_Mess(100);
1 ingob 152
        CalibrierMittelwert();
153
    if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
154
     {    
155
      if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
156
     }
173 holgerb 157
 
395 hbuss 158
     AdNeutralNick= AdWertNick;
159
         AdNeutralRoll= AdWertRoll;    
160
         AdNeutralGier= AdWertGier;
401 hbuss 161
     StartNeutralRoll = AdNeutralRoll;
162
     StartNeutralNick = AdNeutralNick;
513 hbuss 163
    if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) > 4)
164
    {
165
      NeutralAccY = abs(Mittelwert_AccRoll) / ACC_AMPLIFY;
166
          NeutralAccX = abs(Mittelwert_AccNick) / ACC_AMPLIFY;
167
          NeutralAccZ = Aktuell_az;
168
    }
169
    else
170
    {
171
      NeutralAccX = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1]);
172
          NeutralAccY = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1]);
173
          NeutralAccZ = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1]);
174
    }
1 ingob 175
 
176
        Mess_IntegralNick = 0; 
177
    Mess_IntegralNick2 = 0;
178
    Mess_IntegralRoll = 0;     
179
    Mess_IntegralRoll2 = 0;
180
    Mess_Integral_Gier = 0;    
181
    MesswertNick = 0;
182
    MesswertRoll = 0;
183
    MesswertGier = 0;
184
    StartLuftdruck = Luftdruck;
185
    HoeheD = 0;
186
    Mess_Integral_Hoch = 0;
187
    KompassStartwert = KompassValue;
188
    GPS_Neutral();
189
    beeptime = 50;  
395 hbuss 190
        Umschlag180Nick = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
191
        Umschlag180Roll = (long) EE_Parameter.WinkelUmschlagRoll * 2500L;
492 hbuss 192
    ExternHoehenValue = 0;
693 hbuss 193
    ErsatzKompass = KompassValue * GIER_GRAD_FAKTOR;
194
    GierGyroFehler = 0;
723 hbuss 195
    SendVersionToNavi = 1;
1 ingob 196
}
197
 
198
//############################################################################
395 hbuss 199
// Bearbeitet die Messwerte
1 ingob 200
void Mittelwert(void)
201
//############################################################################
202
{      
395 hbuss 203
    static signed long tmpl,tmpl2;     
204
    MesswertGier = (signed int) AdNeutralGier - AdWertGier;
205
    MesswertRoll = (signed int) AdWertRoll - AdNeutralRoll;
206
    MesswertNick = (signed int) AdWertNick - AdNeutralNick;
401 hbuss 207
 
604 hbuss 208
//DebugOut.Analog[26] = MesswertNick;
209
DebugOut.Analog[28] = MesswertRoll;
210
 
395 hbuss 211
// Beschleunigungssensor  ++++++++++++++++++++++++++++++++++++++++++++++++
212
        Mittelwert_AccNick = ((long)Mittelwert_AccNick * 1 + ((ACC_AMPLIFY * (long)AdWertAccNick))) / 2L;
213
        Mittelwert_AccRoll = ((long)Mittelwert_AccRoll * 1 + ((ACC_AMPLIFY * (long)AdWertAccRoll))) / 2L;
214
        Mittelwert_AccHoch = ((long)Mittelwert_AccHoch * 1 + ((long)AdWertAccHoch)) / 2L;
215
    IntegralAccNick += ACC_AMPLIFY * AdWertAccNick;
216
    IntegralAccRoll += ACC_AMPLIFY * AdWertAccRoll;
805 hbuss 217
    NaviAccNick    += AdWertAccNick;
218
    NaviAccRoll    += AdWertAccRoll;
219
    NaviCntAcc++;
513 hbuss 220
    IntegralAccZ    += Aktuell_az - NeutralAccZ;
395 hbuss 221
// Gier  ++++++++++++++++++++++++++++++++++++++++++++++++
693 hbuss 222
            ErsatzKompass +=  MesswertGier;
395 hbuss 223
            Mess_Integral_Gier +=  MesswertGier;
224
            Mess_Integral_Gier2 += MesswertGier;
693 hbuss 225
                    if(ErsatzKompass >= (360L * GIER_GRAD_FAKTOR)) ErsatzKompass -= 360L * GIER_GRAD_FAKTOR;  // 360° Umschlag
226
                    if(ErsatzKompass < 0)                          ErsatzKompass += 360L * GIER_GRAD_FAKTOR;
395 hbuss 227
// Kopplungsanteil  +++++++++++++++++++++++++++++++++++++
228
      if(!Looping_Nick && !Looping_Roll && (EE_Parameter.GlobalConfig & CFG_ACHSENKOPPLUNG_AKTIV))
229
         {
230
            tmpl = Mess_IntegralNick / 4096L;
231
            tmpl *= MesswertGier;
232
            tmpl *= Parameter_AchsKopplung1;  //125
233
            tmpl /= 2048L;
234
            tmpl2 = Mess_IntegralRoll / 4096L;
235
            tmpl2 *= MesswertGier;
236
            tmpl2 *= Parameter_AchsKopplung1;
237
            tmpl2 /= 2048L;
238
         }
239
      else  tmpl = tmpl2 = 0;
240
// Roll  ++++++++++++++++++++++++++++++++++++++++++++++++
241
            MesswertRoll += tmpl;
242
            MesswertRoll += (tmpl2*Parameter_AchsGegenKopplung1)/512L; //109
243
            Mess_IntegralRoll2 += MesswertRoll;
498 hbuss 244
            Mess_IntegralRoll +=  MesswertRoll - LageKorrekturRoll;
395 hbuss 245
            if(Mess_IntegralRoll > Umschlag180Roll)
246
            {
247
             Mess_IntegralRoll  = -(Umschlag180Roll - 10000L);
248
             Mess_IntegralRoll2 = Mess_IntegralRoll;
249
            }
250
            if(Mess_IntegralRoll <-Umschlag180Roll)
251
            {
252
             Mess_IntegralRoll =  (Umschlag180Roll - 10000L);
253
             Mess_IntegralRoll2 = Mess_IntegralRoll;
254
            }  
255
            if(AdWertRoll < 15)   MesswertRoll = -1000;
256
            if(AdWertRoll <  7)   MesswertRoll = -2000;
401 hbuss 257
            if(PlatinenVersion == 10)
258
                         {
259
              if(AdWertRoll > 1010) MesswertRoll = +1000;
260
              if(AdWertRoll > 1017) MesswertRoll = +2000;
261
                         }
262
                         else
263
                         {
264
              if(AdWertRoll > 2020) MesswertRoll = +1000;
265
              if(AdWertRoll > 2034) MesswertRoll = +2000;
266
                         }
395 hbuss 267
// Nick  ++++++++++++++++++++++++++++++++++++++++++++++++
268
            MesswertNick -= tmpl2;
269
            MesswertNick -= (tmpl*Parameter_AchsGegenKopplung1)/512L;
270
            Mess_IntegralNick2 += MesswertNick;
498 hbuss 271
            Mess_IntegralNick  += MesswertNick - LageKorrekturNick;
395 hbuss 272
            if(Mess_IntegralNick > Umschlag180Nick)
273
            {
274
             Mess_IntegralNick = -(Umschlag180Nick - 10000L);
275
             Mess_IntegralNick2 = Mess_IntegralNick;
276
            }
277
            if(Mess_IntegralNick <-Umschlag180Nick)
278
            {
279
             Mess_IntegralNick =  (Umschlag180Nick - 10000L);
280
             Mess_IntegralNick2 = Mess_IntegralNick;
281
            }
282
            if(AdWertNick < 15)   MesswertNick = -1000;
283
            if(AdWertNick <  7)   MesswertNick = -2000;
401 hbuss 284
            if(PlatinenVersion == 10)
285
                         {
286
              if(AdWertNick > 1010) MesswertNick = +1000;
287
              if(AdWertNick > 1017) MesswertNick = +2000;
288
                         }
289
                         else
290
                         {
291
              if(AdWertNick > 2020) MesswertNick = +1000;
292
              if(AdWertNick > 2034) MesswertNick = +2000;
293
                         }
395 hbuss 294
//++++++++++++++++++++++++++++++++++++++++++++++++
295
// ADC einschalten
296
    ANALOG_ON; 
297
//++++++++++++++++++++++++++++++++++++++++++++++++
298
 
1 ingob 299
    Integral_Gier  = Mess_Integral_Gier;
300
    IntegralNick = Mess_IntegralNick;
301
    IntegralRoll = Mess_IntegralRoll;
302
    IntegralNick2 = Mess_IntegralNick2;
303
    IntegralRoll2 = Mess_IntegralRoll2;
304
 
395 hbuss 305
  if(EE_Parameter.GlobalConfig & CFG_DREHRATEN_BEGRENZER && !Looping_Nick && !Looping_Roll)
306
  {
307
    if(MesswertNick > 200)       MesswertNick += 4 * (MesswertNick - 200);
308
    else if(MesswertNick < -200) MesswertNick += 4 * (MesswertNick + 200);
309
    if(MesswertRoll > 200)       MesswertRoll += 4 * (MesswertRoll - 200);
310
    else if(MesswertRoll < -200) MesswertRoll += 4 * (MesswertRoll + 200);
311
  }
1 ingob 312
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
313
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
314
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
315
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
316
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
317
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
318
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
319
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
320
}
321
 
322
//############################################################################
323
// Messwerte beim Ermitteln der Nullage
324
void CalibrierMittelwert(void)
325
//############################################################################
326
{                
327
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
328
        ANALOG_OFF;
395 hbuss 329
        MesswertNick = AdWertNick;
330
        MesswertRoll = AdWertRoll;
331
        MesswertGier = AdWertGier;
332
        Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
333
        Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
334
        Mittelwert_AccHoch = (long)AdWertAccHoch;
335
   // ADC einschalten
1 ingob 336
    ANALOG_ON; 
337
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
338
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
339
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
340
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
341
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
342
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
343
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
344
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
395 hbuss 345
 
346
        Umschlag180Nick = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
720 ingob 347
        Umschlag180Roll = (long) EE_Parameter.WinkelUmschlagRoll * 2500L;
1 ingob 348
}
349
 
350
//############################################################################
351
// Senden der Motorwerte per I2C-Bus
352
void SendMotorData(void)
353
//############################################################################
354
{
355
    if(MOTOR_OFF || !MotorenEin)
356
        {
357
        Motor_Hinten = 0;
358
        Motor_Vorne = 0;
359
        Motor_Rechts = 0;
360
        Motor_Links = 0;
361
        if(MotorTest[0]) Motor_Vorne = MotorTest[0];
362
        if(MotorTest[1]) Motor_Hinten = MotorTest[1];
363
        if(MotorTest[2]) Motor_Links = MotorTest[2];
364
        if(MotorTest[3]) Motor_Rechts = MotorTest[3];
365
        }
366
 
367
    DebugOut.Analog[12] = Motor_Vorne;
368
    DebugOut.Analog[13] = Motor_Hinten;
369
    DebugOut.Analog[14] = Motor_Links;
370
    DebugOut.Analog[15] = Motor_Rechts;  
371
 
372
    //Start I2C Interrupt Mode
373
    twi_state = 0;
374
    motor = 0;
375
    i2c_start();
376
}
377
 
378
 
379
 
380
//############################################################################
381
// Trägt ggf. das Poti als Parameter ein
382
void ParameterZuordnung(void)
383
//############################################################################
384
{
385
 
386
 #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; if(b <= min) b = min; else if(b >= max) b = max;}
387
 CHK_POTI(Parameter_MaxHoehe,EE_Parameter.MaxHoehe,0,255);
388
 CHK_POTI(Parameter_Luftdruck_D,EE_Parameter.Luftdruck_D,0,100);
389
 CHK_POTI(Parameter_Hoehe_P,EE_Parameter.Hoehe_P,0,100);
390
 CHK_POTI(Parameter_Hoehe_ACC_Wirkung,EE_Parameter.Hoehe_ACC_Wirkung,0,255);
391
 CHK_POTI(Parameter_KompassWirkung,EE_Parameter.KompassWirkung,0,255);
392
 CHK_POTI(Parameter_Gyro_P,EE_Parameter.Gyro_P,10,255);
393
 CHK_POTI(Parameter_Gyro_I,EE_Parameter.Gyro_I,0,255);
394
 CHK_POTI(Parameter_I_Faktor,EE_Parameter.I_Faktor,0,255);
395
 CHK_POTI(Parameter_UserParam1,EE_Parameter.UserParam1,0,255);
396
 CHK_POTI(Parameter_UserParam2,EE_Parameter.UserParam2,0,255);
397
 CHK_POTI(Parameter_UserParam3,EE_Parameter.UserParam3,0,255);
398
 CHK_POTI(Parameter_UserParam4,EE_Parameter.UserParam4,0,255);
499 hbuss 399
 CHK_POTI(Parameter_UserParam5,EE_Parameter.UserParam5,0,255);
400
 CHK_POTI(Parameter_UserParam6,EE_Parameter.UserParam6,0,255);
401
 CHK_POTI(Parameter_UserParam7,EE_Parameter.UserParam7,0,255);
402
 CHK_POTI(Parameter_UserParam8,EE_Parameter.UserParam8,0,255);
1 ingob 403
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
173 holgerb 404
 CHK_POTI(Parameter_LoopGasLimit,EE_Parameter.LoopGasLimit,0,255);
395 hbuss 405
 CHK_POTI(Parameter_AchsKopplung1,    EE_Parameter.AchsKopplung1,0,255);
406
 CHK_POTI(Parameter_AchsGegenKopplung1,EE_Parameter.AchsGegenKopplung1,0,255);
499 hbuss 407
 CHK_POTI(Parameter_DynamicStability,EE_Parameter.DynamicStability,0,255);
1 ingob 408
 
409
 Ki = (float) Parameter_I_Faktor * 0.0001;
410
 MAX_GAS = EE_Parameter.Gas_Max;
411
 MIN_GAS = EE_Parameter.Gas_Min;
412
}
413
 
414
 
415
//############################################################################
416
//
417
void MotorRegler(void)
418
//############################################################################
419
{
420
         int motorwert,pd_ergebnis,h,tmp_int;
421
         int GierMischanteil,GasMischanteil;
422
     static long SummeNick=0,SummeRoll=0;
423
     static long sollGier = 0,tmp_long,tmp_long2;
395 hbuss 424
     static long IntegralFehlerNick = 0;
425
     static long IntegralFehlerRoll = 0;
1 ingob 426
         static unsigned int RcLostTimer;
427
         static unsigned char delay_neutral = 0;
428
         static unsigned char delay_einschalten = 0,delay_ausschalten = 0;
429
         static unsigned int  modell_fliegt = 0;
430
     static int hoehenregler = 0;
431
     static char TimerWerteausgabe = 0;
432
     static char NeueKompassRichtungMerken = 0;
395 hbuss 433
     static long ausgleichNick, ausgleichRoll;
434
 
1 ingob 435
        Mittelwert();
436
 
437
    GRN_ON;
438
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
439
// Gaswert ermitteln
440
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
595 hbuss 441
        GasMischanteil = StickGas;
693 hbuss 442
    if(GasMischanteil < MIN_GAS) GasMischanteil = MIN_GAS;
1 ingob 443
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
693 hbuss 444
// Empfang schlecht
1 ingob 445
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
446
   if(SenderOkay < 100)
447
        {
173 holgerb 448
        if(!PcZugriff)
449
         {
450
           if(BeepMuster == 0xffff)
451
            {
452
             beeptime = 15000;
453
             BeepMuster = 0x0c00;
454
            }
455
         }
1 ingob 456
        if(RcLostTimer) RcLostTimer--;
457
        else
458
         {
459
          MotorenEin = 0;
460
          Notlandung = 0;
461
         }
462
        ROT_ON;
693 hbuss 463
        if(modell_fliegt > 1000)  // wahrscheinlich in der Luft --> langsam absenken
1 ingob 464
            {
465
            GasMischanteil = EE_Parameter.NotGas;
466
            Notlandung = 1;
744 hbuss 467
            PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
468
            PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;            
1 ingob 469
            PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
470
            PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
471
            PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] = 0;
173 holgerb 472
            }
1 ingob 473
         else MotorenEin = 0;
474
        }
475
        else
476
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
477
// Emfang gut
478
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
479
        if(SenderOkay > 140)
480
            {
481
            Notlandung = 0;
482
            RcLostTimer = EE_Parameter.NotGasZeit * 50;
483
            if(GasMischanteil > 40)
484
                {
485
                if(modell_fliegt < 0xffff) modell_fliegt++;
486
                }
693 hbuss 487
            if((modell_fliegt < 200))// || (GasMischanteil < 40))
1 ingob 488
                {
489
                SummeNick = 0;
490
                SummeRoll = 0;
693 hbuss 491
//                StickGier = 0;
492
//                Mess_Integral_Gier = 0;       
493
//                Mess_Integral_Gier2 = 0;
1 ingob 494
                }
595 hbuss 495
            if((PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] > 80) && MotorenEin == 0)
1 ingob 496
                {
497
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
498
// auf Nullwerte kalibrieren
499
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
500
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)  // Neutralwerte
501
                    {
502
                    if(++delay_neutral > 200)  // nicht sofort
503
                        {
504
                        GRN_OFF;
505
                        MotorenEin = 0;
506
                        delay_neutral = 0;
507
                        modell_fliegt = 0;
508
                        if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70 || abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) > 70)
509
                        {
304 ingob 510
                         unsigned char setting=1;
1 ingob 511
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 1;
512
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 2;
513
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 3;
514
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 4;
515
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 5;
516
                         eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACTIVE_SET], setting);  // aktiven Datensatz merken
517
                        }
518
                        if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
519
                          {
520
                             if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
521
                          }  
173 holgerb 522
                            ReadParameterSet(GetActiveParamSetNumber(), (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE);
523
                        SetNeutral();
524
                        Piep(GetActiveParamSetNumber());
1 ingob 525
                        }
526
                    }
513 hbuss 527
                 else
528
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)  // ACC Neutralwerte speichern
529
                    {
530
                    if(++delay_neutral > 200)  // nicht sofort
531
                        {
532
                        GRN_OFF;
533
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],0xff); // Werte löschen
534
                        MotorenEin = 0;
535
                        delay_neutral = 0;
536
                        modell_fliegt = 0;
537
                        SetNeutral();
538
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK],NeutralAccX / 256); // ACC-NeutralWerte speichern
539
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1],NeutralAccX % 256); // ACC-NeutralWerte speichern
540
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL],NeutralAccY / 256);
541
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1],NeutralAccY % 256);
542
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z],(int)NeutralAccZ / 256);
543
                        eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1],(int)NeutralAccZ % 256);
544
                        Piep(GetActiveParamSetNumber());
545
                        }
546
                    }
1 ingob 547
                 else delay_neutral = 0;
548
                }
549
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
550
// Gas ist unten
551
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
595 hbuss 552
            if(PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] < 35-120)
1 ingob 553
                {
554
                // Starten
555
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)
556
                    {
557
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
558
// Einschalten
559
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
560
                    if(++delay_einschalten > 200)
561
                        {
562
                        delay_einschalten = 200;
563
                        modell_fliegt = 1;
564
                        MotorenEin = 1;
565
                        sollGier = 0;
566
                        Mess_Integral_Gier = 0;
567
                        Mess_Integral_Gier2 = 0;
568
                        Mess_IntegralNick = 0;
569
                        Mess_IntegralRoll = 0;
570
                        Mess_IntegralNick2 = IntegralNick;
571
                        Mess_IntegralRoll2 = IntegralRoll;
572
                        SummeNick = 0;
573
                        SummeRoll = 0;
574
                        }          
575
                    }  
576
                    else delay_einschalten = 0;
577
                //Auf Neutralwerte setzen
578
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
579
// Auschalten
580
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
581
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)
582
                    {
583
                    if(++delay_ausschalten > 200)  // nicht sofort
584
                        {
585
                        MotorenEin = 0;
586
                        delay_ausschalten = 200;
587
                        modell_fliegt = 0;
588
                        }
589
                    }
590
                else delay_ausschalten = 0;
591
                }
592
            }
593
 
594
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
595
// neue Werte von der Funke
596
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
597
 if(!NewPpmData-- || Notlandung)  
598
  {
492 hbuss 599
    int tmp_int;
604 hbuss 600
        static int stick_nick,stick_roll;
1 ingob 601
    ParameterZuordnung();
723 hbuss 602
    stick_nick = (stick_nick * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_P) / 4;
603
    stick_nick += PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_D;
805 hbuss 604
    StickNick = stick_nick - (GPS_Nick + GPS_Nick2);
723 hbuss 605
//    StickNick  = (StickNick  * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_P) / 4; 
604 hbuss 606
 
723 hbuss 607
    stick_roll = (stick_roll * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_P) / 4;
608
    stick_roll += PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_D;
805 hbuss 609
    StickRoll = stick_roll - (GPS_Roll + GPS_Roll2);
723 hbuss 610
 
611
//    StickRoll = (StickRoll * 3 + PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_P) / 4;
612
 
1 ingob 613
    StickGier = -PPM_in[EE_Parameter.Kanalbelegung[K_GIER]];
595 hbuss 614
        StickGas  = PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] + 120;
615
 
723 hbuss 616
/*   if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]]) > MaxStickNick)
614 hbuss 617
     MaxStickNick = abs(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]]); else MaxStickNick--;
618
   if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) > MaxStickRoll)
619
     MaxStickRoll = abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]); else MaxStickRoll--;
723 hbuss 620
*/
1 ingob 621
    GyroFaktor     = ((float)Parameter_Gyro_P + 10.0) / 256.0;
622
    IntegralFaktor = ((float) Parameter_Gyro_I) / 44000;
623
 
595 hbuss 624
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
625
//+ Digitale Steuerung per DubWise
626
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
492 hbuss 627
#define KEY_VALUE (Parameter_UserParam1 * 4)  //(Poti3 * 8)
628
if(DubWiseKeys[1]) beeptime = 10;
629
    if(DubWiseKeys[1] & DUB_KEY_UP)    tmp_int = KEY_VALUE;   else
630
    if(DubWiseKeys[1] & DUB_KEY_DOWN)  tmp_int = -KEY_VALUE;  else   tmp_int = 0;
631
    ExternStickNick = (ExternStickNick * 7 + tmp_int) / 8;
632
    if(DubWiseKeys[1] & DUB_KEY_LEFT)  tmp_int = KEY_VALUE; else
633
    if(DubWiseKeys[1] & DUB_KEY_RIGHT) tmp_int = -KEY_VALUE; else tmp_int = 0;
634
    ExternStickRoll = (ExternStickRoll * 7 + tmp_int) / 8;
635
 
636
    if(DubWiseKeys[0] & 8)  ExternStickGier = 50;else
637
    if(DubWiseKeys[0] & 4)  ExternStickGier =-50;else ExternStickGier = 0;
638
    if(DubWiseKeys[0] & 2)  ExternHoehenValue++;
639
    if(DubWiseKeys[0] & 16) ExternHoehenValue--;
640
 
641
    StickNick += ExternStickNick / 8;
642
    StickRoll += ExternStickRoll / 8;
643
    StickGier += ExternStickGier;
595 hbuss 644
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
645
//+ Analoge Steuerung per Seriell
646
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
647
   if(ExternControl.Config & 0x01 && Parameter_UserParam1 > 128)
648
    {
649
         StickNick += (int) ExternControl.Nick * (int) EE_Parameter.Stick_P;
650
         StickRoll += (int) ExternControl.Roll * (int) EE_Parameter.Stick_P;
651
         StickGier += ExternControl.Gier;
652
     ExternHoehenValue =  (int) ExternControl.Hight * (int)EE_Parameter.Hoehe_Verstaerkung;
653
     if(ExternControl.Gas < StickGas) StickGas = ExternControl.Gas;
654
    }
492 hbuss 655
 
1 ingob 656
    if(EE_Parameter.GlobalConfig & CFG_HEADING_HOLD) IntegralFaktor =  0;
657
    if(GyroFaktor < 0) GyroFaktor = 0;
658
    if(IntegralFaktor < 0) IntegralFaktor = 0;
723 hbuss 659
 
660
    if(abs(StickNick) > MaxStickNick) MaxStickNick = abs(StickNick); else MaxStickNick--;
661
    if(abs(StickRoll) > MaxStickRoll) MaxStickRoll = abs(StickRoll); else MaxStickRoll--;
662
    if(Notlandung)  {MaxStickNick = 0; MaxStickRoll = 0;}
663
 
1 ingob 664
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
173 holgerb 665
// Looping?
666
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
395 hbuss 667
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_LINKS)  Looping_Links = 1;
668
  else
173 holgerb 669
   {
395 hbuss 670
     {
671
      if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Links = 0;  
672
     }  
673
   }
674
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < -EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_RECHTS) Looping_Rechts = 1;
675
   else
676
   {
677
   if(Looping_Rechts) // Hysterese
678
     {
679
      if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Rechts = 0;
680
     }
681
   }
173 holgerb 682
 
395 hbuss 683
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_OBEN) Looping_Oben = 1;
684
  else
173 holgerb 685
   {
395 hbuss 686
    if(Looping_Oben)  // Hysterese
687
     {
688
      if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Oben = 0;  
689
     }  
690
   }
691
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_UNTEN) Looping_Unten = 1;
692
   else
693
   {
694
    if(Looping_Unten) // Hysterese
695
     {
696
      if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Unten = 0;
697
     }
698
   }
699
 
700
   if(Looping_Links || Looping_Rechts)   Looping_Roll = 1; else Looping_Roll = 0;
701
   if(Looping_Oben  || Looping_Unten) {Looping_Nick = 1; Looping_Roll = 0; Looping_Links = 0; Looping_Rechts = 0;} else Looping_Nick = 0;
702
  } // Ende neue Funken-Werte
703
 
704
  if(Looping_Roll) beeptime = 100;
705
  if(Looping_Roll || Looping_Nick)
706
   {
173 holgerb 707
    if(GasMischanteil > EE_Parameter.LoopGasLimit) GasMischanteil = EE_Parameter.LoopGasLimit;
708
   }
709
 
710
 
711
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1 ingob 712
// Bei Empfangsausfall im Flug 
713
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
714
   if(Notlandung)
715
    {
716
     StickGier = 0;
717
     StickNick = 0;
718
     StickRoll = 0;
719
     GyroFaktor  = 0.1;
720
     IntegralFaktor = 0.005;
173 holgerb 721
     Looping_Roll = 0;
722
     Looping_Nick = 0;
1 ingob 723
    }  
395 hbuss 724
 
725
 
1 ingob 726
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
727
// Integrale auf ACC-Signal abgleichen
728
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
395 hbuss 729
#define ABGLEICH_ANZAHL 256L
730
 
731
 MittelIntegralNick  += IntegralNick;    // Für die Mittelwertbildung aufsummieren
732
 MittelIntegralRoll  += IntegralRoll;
733
 MittelIntegralNick2 += IntegralNick2;
734
 MittelIntegralRoll2 += IntegralRoll2;
735
 
736
 if(Looping_Nick || Looping_Roll)
737
  {
738
    IntegralAccNick = 0;
739
    IntegralAccRoll = 0;
740
    MittelIntegralNick = 0;
741
    MittelIntegralRoll = 0;
742
    MittelIntegralNick2 = 0;
743
    MittelIntegralRoll2 = 0;
744
    Mess_IntegralNick2 = Mess_IntegralNick;
745
    Mess_IntegralRoll2 = Mess_IntegralRoll;
746
    ZaehlMessungen = 0;
498 hbuss 747
    LageKorrekturNick = 0;
748
    LageKorrekturRoll = 0;
395 hbuss 749
  }
750
 
469 hbuss 751
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
498 hbuss 752
  if(!Looping_Nick && !Looping_Roll)
469 hbuss 753
  {
754
   long tmp_long, tmp_long2;
755
    tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
614 hbuss 756
    tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
469 hbuss 757
    tmp_long /= 16;
758
    tmp_long2 /= 16;
723 hbuss 759
   if((MaxStickNick > 32) || (MaxStickRoll > 32))
614 hbuss 760
    {
761
    tmp_long  /= 3;
762
    tmp_long2 /= 3;
763
    }
623 hbuss 764
   if(abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25)
765
    {
766
    tmp_long  /= 3;
767
    tmp_long2 /= 3;
768
    }
614 hbuss 769
 
770
 #define AUSGLEICH 32
469 hbuss 771
    if(tmp_long >  AUSGLEICH)  tmp_long  = AUSGLEICH;
772
    if(tmp_long < -AUSGLEICH)  tmp_long  =-AUSGLEICH;
773
    if(tmp_long2 > AUSGLEICH)  tmp_long2 = AUSGLEICH;
774
    if(tmp_long2 <-AUSGLEICH)  tmp_long2 =-AUSGLEICH;
614 hbuss 775
 
469 hbuss 776
    Mess_IntegralNick -= tmp_long;
777
    Mess_IntegralRoll -= tmp_long2;
778
  }
779
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
780
 
395 hbuss 781
 if(ZaehlMessungen >= ABGLEICH_ANZAHL)
782
 {
783
  static int cnt = 0;
784
  static char last_n_p,last_n_n,last_r_p,last_r_n;
785
  static long MittelIntegralNick_Alt,MittelIntegralRoll_Alt;
297 holgerb 786
  if(!Looping_Nick && !Looping_Roll)
173 holgerb 787
  {
395 hbuss 788
    MittelIntegralNick  /= ABGLEICH_ANZAHL;
789
    MittelIntegralRoll  /= ABGLEICH_ANZAHL;
790
        IntegralAccNick = (EE_Parameter.GyroAccFaktor * IntegralAccNick) / ABGLEICH_ANZAHL;
791
        IntegralAccRoll = (EE_Parameter.GyroAccFaktor * IntegralAccRoll) / ABGLEICH_ANZAHL;
792
    IntegralAccZ    = IntegralAccZ / ABGLEICH_ANZAHL;
492 hbuss 793
#define MAX_I 0//(Poti2/10)
395 hbuss 794
// Nick ++++++++++++++++++++++++++++++++++++++++++++++++
795
    IntegralFehlerNick = (long)(MittelIntegralNick - (long)IntegralAccNick);
796
    ausgleichNick = IntegralFehlerNick / EE_Parameter.GyroAccAbgleich;
797
// Roll ++++++++++++++++++++++++++++++++++++++++++++++++     
798
    IntegralFehlerRoll = (long)(MittelIntegralRoll - (long)IntegralAccRoll);
799
    ausgleichRoll = IntegralFehlerRoll / EE_Parameter.GyroAccAbgleich;
614 hbuss 800
 
801
    LageKorrekturNick = ausgleichNick / ABGLEICH_ANZAHL;
498 hbuss 802
    LageKorrekturRoll = ausgleichRoll / ABGLEICH_ANZAHL;
395 hbuss 803
 
723 hbuss 804
   if((MaxStickNick > 32) || (MaxStickRoll > 32) || (abs(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]) > 25))
614 hbuss 805
    {
806
     LageKorrekturNick /= 2;
720 ingob 807
     LageKorrekturRoll /= 2;
614 hbuss 808
    }
498 hbuss 809
 
395 hbuss 810
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
811
// Gyro-Drift ermitteln
812
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
813
    MittelIntegralNick2 /= ABGLEICH_ANZAHL;
814
    MittelIntegralRoll2 /= ABGLEICH_ANZAHL;
492 hbuss 815
    tmp_long  = IntegralNick2 - IntegralNick;
816
    tmp_long2 = IntegralRoll2 - IntegralRoll;
395 hbuss 817
    //DebugOut.Analog[25] = MittelIntegralRoll2 / 26;
818
 
819
    IntegralFehlerNick = tmp_long;
820
    IntegralFehlerRoll = tmp_long2;
821
    Mess_IntegralNick2 -= IntegralFehlerNick;
822
    Mess_IntegralRoll2 -= IntegralFehlerRoll;
823
 
824
//    IntegralFehlerNick = (IntegralFehlerNick * 1 + tmp_long) / 2;
825
//    IntegralFehlerRoll = (IntegralFehlerRoll * 1 + tmp_long2) / 2;
693 hbuss 826
DebugOut.Analog[10] = GierGyroFehler;
827
    if(GierGyroFehler > ABGLEICH_ANZAHL/2) AdNeutralGier++;
828
    if(GierGyroFehler <-ABGLEICH_ANZAHL/2) AdNeutralGier--;
395 hbuss 829
 
720 ingob 830
DebugOut.Analog[22] = MittelIntegralRoll / 26;
831
 
693 hbuss 832
    GierGyroFehler = 0;
720 ingob 833
 
834
 
835
/*DebugOut.Analog[17] = IntegralAccNick / 26;
395 hbuss 836
DebugOut.Analog[18] = IntegralAccRoll / 26;
837
DebugOut.Analog[19] = IntegralFehlerNick;// / 26;
838
DebugOut.Analog[20] = IntegralFehlerRoll;// / 26;
720 ingob 839
*/
840
//DebugOut.Analog[21] = MittelIntegralNick / 26;
841
//MittelIntegralRoll = MittelIntegralRoll;
469 hbuss 842
//DebugOut.Analog[28] = ausgleichNick;
720 ingob 843
/*
395 hbuss 844
DebugOut.Analog[29] = ausgleichRoll;
498 hbuss 845
DebugOut.Analog[30] = LageKorrekturRoll * 10;
720 ingob 846
*/
395 hbuss 847
 
492 hbuss 848
#define FEHLER_LIMIT  (ABGLEICH_ANZAHL * 4)
849
#define FEHLER_LIMIT2 (ABGLEICH_ANZAHL * 16)
850
#define BEWEGUNGS_LIMIT 20000
395 hbuss 851
// Nick +++++++++++++++++++++++++++++++++++++++++++++++++
852
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
492 hbuss 853
        if(labs(MittelIntegralNick_Alt - MittelIntegralNick) < BEWEGUNGS_LIMIT)
854
        {
395 hbuss 855
        if(IntegralFehlerNick >  FEHLER_LIMIT2)
856
         {
857
           if(last_n_p)
858
           {
859
            cnt += labs(IntegralFehlerNick) / FEHLER_LIMIT2;
492 hbuss 860
            ausgleichNick = IntegralFehlerNick / 8;
401 hbuss 861
            if(ausgleichNick > 5000) ausgleichNick = 5000;
498 hbuss 862
            LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
395 hbuss 863
           }
864
           else last_n_p = 1;
865
         } else  last_n_p = 0;
866
        if(IntegralFehlerNick < -FEHLER_LIMIT2)
867
         {
868
           if(last_n_n)
869
            {
870
             cnt += labs(IntegralFehlerNick) / FEHLER_LIMIT2;
492 hbuss 871
             ausgleichNick = IntegralFehlerNick / 8;
401 hbuss 872
             if(ausgleichNick < -5000) ausgleichNick = -5000;
498 hbuss 873
             LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
395 hbuss 874
            }
875
           else last_n_n = 1;
876
         } else  last_n_n = 0;
492 hbuss 877
        } else cnt = 0;
499 hbuss 878
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
395 hbuss 879
        if(IntegralFehlerNick >  FEHLER_LIMIT)   AdNeutralNick += cnt;
880
        if(IntegralFehlerNick < -FEHLER_LIMIT)   AdNeutralNick -= cnt;
401 hbuss 881
 
395 hbuss 882
// Roll +++++++++++++++++++++++++++++++++++++++++++++++++
492 hbuss 883
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
884
 
498 hbuss 885
        ausgleichRoll = 0;
492 hbuss 886
        if(labs(MittelIntegralRoll_Alt - MittelIntegralRoll) < BEWEGUNGS_LIMIT)
887
        {
395 hbuss 888
        if(IntegralFehlerRoll >  FEHLER_LIMIT2)
889
         {
890
           if(last_r_p)
891
           {
892
            cnt += labs(IntegralFehlerRoll) / FEHLER_LIMIT2;
492 hbuss 893
            ausgleichRoll = IntegralFehlerRoll / 8;
401 hbuss 894
            if(ausgleichRoll > 5000) ausgleichRoll = 5000;
498 hbuss 895
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
395 hbuss 896
           }
897
           else last_r_p = 1;
898
         } else  last_r_p = 0;
899
        if(IntegralFehlerRoll < -FEHLER_LIMIT2)
900
         {
901
           if(last_r_n)
902
           {
903
            cnt += labs(IntegralFehlerRoll) / FEHLER_LIMIT2;
492 hbuss 904
            ausgleichRoll = IntegralFehlerRoll / 8;
401 hbuss 905
            if(ausgleichRoll < -5000) ausgleichRoll = -5000;
498 hbuss 906
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
395 hbuss 907
           }
908
           else last_r_n = 1;
909
         } else  last_r_n = 0;
492 hbuss 910
        } else
911
        {
912
         cnt = 0;
913
        }
614 hbuss 914
 
499 hbuss 915
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
395 hbuss 916
        if(IntegralFehlerRoll >  FEHLER_LIMIT)   AdNeutralRoll += cnt;
917
        if(IntegralFehlerRoll < -FEHLER_LIMIT)   AdNeutralRoll -= cnt;
720 ingob 918
/*DebugOut.Analog[27] = ausgleichRoll;
492 hbuss 919
DebugOut.Analog[23] = AdNeutralNick;//10*(AdNeutralNick - StartNeutralNick);
401 hbuss 920
DebugOut.Analog[24] = 10*(AdNeutralRoll - StartNeutralRoll);
720 ingob 921
*/
173 holgerb 922
  }
498 hbuss 923
  else
924
  {
925
   LageKorrekturRoll = 0;
926
   LageKorrekturNick = 0;
927
  }
595 hbuss 928
 
498 hbuss 929
  if(!IntegralFaktor) { LageKorrekturRoll = 0; LageKorrekturNick = 0;} // z.B. bei HH
492 hbuss 930
// +++++++++++++++++++++++++++++++++++++++++++++++++++++     
931
   MittelIntegralNick_Alt = MittelIntegralNick;      
932
   MittelIntegralRoll_Alt = MittelIntegralRoll;      
933
// +++++++++++++++++++++++++++++++++++++++++++++++++++++     
395 hbuss 934
    IntegralAccNick = 0;
935
    IntegralAccRoll = 0;
936
    IntegralAccZ = 0;
937
    MittelIntegralNick = 0;
938
    MittelIntegralRoll = 0;
939
    MittelIntegralNick2 = 0;
940
    MittelIntegralRoll2 = 0;
941
    ZaehlMessungen = 0;
942
 }
469 hbuss 943
//DebugOut.Analog[31] = StickRoll / (26*IntegralFaktor);
395 hbuss 944
 
1 ingob 945
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
946
//  Gieren
947
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
693 hbuss 948
//    if(GasMischanteil < 35) { if(StickGier > 10) StickGier = 10; else if(StickGier < -10) StickGier = -10;};
188 holgerb 949
    if(abs(StickGier) > 20) // war 35 
1 ingob 950
     {
693 hbuss 951
      if(!(EE_Parameter.GlobalConfig & CFG_KOMPASS_FIX)) { NeueKompassRichtungMerken = 1; KompassSignalSchlecht = 500;};
1 ingob 952
     }
395 hbuss 953
    tmp_int  = (long) EE_Parameter.Gier_P * ((long)StickGier * abs(StickGier)) / 512L; // expo  y = ax + bx²
173 holgerb 954
    tmp_int += (EE_Parameter.Gier_P * StickGier) / 4;
955
    sollGier = tmp_int;
1 ingob 956
    Mess_Integral_Gier -= tmp_int;  
395 hbuss 957
    if(Mess_Integral_Gier > 50000) Mess_Integral_Gier = 50000;  // begrenzen
958
    if(Mess_Integral_Gier <-50000) Mess_Integral_Gier =-50000;
959
 
1 ingob 960
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
961
//  Kompass
962
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
963
    if(KompassValue && (EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV))
964
     {
693 hbuss 965
       int w,v,fehler,korrektur;
966
       static int KompassSignalSchlecht = 0;
1 ingob 967
       w = abs(IntegralNick /512); // mit zunehmender Neigung den Einfluss drosseln
968
       v = abs(IntegralRoll /512);
693 hbuss 969
//v /= 4;
970
//w /= 4;
1 ingob 971
       if(v > w) w = v; // grösste Neigung ermitteln
805 hbuss 972
       korrektur = w + 4;
693 hbuss 973
       if(w < 25 && NeueKompassRichtungMerken && !KompassSignalSchlecht)    
1 ingob 974
        {
975
         KompassStartwert = KompassValue;
976
         NeueKompassRichtungMerken = 0;
977
        }
805 hbuss 978
 
979
       fehler = ((540 + KompassValue - (ErsatzKompass/GIER_GRAD_FAKTOR)) % 360) - 180;
980
       ErsatzKompass += (fehler * 8);// / korrektur;
981
//           DebugOut.Analog[10] = fehler;
1 ingob 982
       w = (w * Parameter_KompassWirkung) / 64;           // auf die Wirkung normieren
983
       w = Parameter_KompassWirkung - w;                  // Wirkung ggf drosseln
984
       if(w > 0)
985
        {
693 hbuss 986
          if(!KompassSignalSchlecht)
987
          {
988
           GierGyroFehler += fehler;
989
           v = (KompassRichtung * w) / 32;  // nach Kompass ausrichten
990
           w = Parameter_KompassWirkung;
991
           if(v > w) v = w; // Begrenzen
992
           else
993
           if(v < -w) v = -w;
994
           Mess_Integral_Gier += v;
995
          }
996
          if(KompassSignalSchlecht) KompassSignalSchlecht--;
1 ingob 997
        }  
693 hbuss 998
        else KompassSignalSchlecht = 500; // so lange das Signal taub stellen --> ca. 1 sek
1 ingob 999
     }
1000
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1001
 
1002
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1003
//  Debugwerte zuordnen
1004
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1005
  if(!TimerWerteausgabe--)
1006
   {
395 hbuss 1007
    TimerWerteausgabe = 24;
805 hbuss 1008
 
1 ingob 1009
    DebugOut.Analog[0] = IntegralNick / EE_Parameter.GyroAccFaktor;
1010
    DebugOut.Analog[1] = IntegralRoll / EE_Parameter.GyroAccFaktor;
1011
    DebugOut.Analog[2] = Mittelwert_AccNick;
1012
    DebugOut.Analog[3] = Mittelwert_AccRoll;
1013
    DebugOut.Analog[4] = MesswertGier;
1014
    DebugOut.Analog[5] = HoehenWert;
805 hbuss 1015
    DebugOut.Analog[6] = (Mess_Integral_Hoch / 512);
1 ingob 1016
    DebugOut.Analog[8] = KompassValue;
297 holgerb 1017
    DebugOut.Analog[9] = UBat;
693 hbuss 1018
    DebugOut.Analog[11] = ErsatzKompass / GIER_GRAD_FAKTOR;  
297 holgerb 1019
    DebugOut.Analog[10] = SenderOkay;
395 hbuss 1020
    DebugOut.Analog[16] = Mittelwert_AccHoch;
173 holgerb 1021
 
744 hbuss 1022
    DebugOut.Analog[17] = FromNaviCtrl_Value.Distance;
1023
    DebugOut.Analog[18] = (int)FromNaviCtrl_Value.OsdBar;
1024
 
720 ingob 1025
    DebugOut.Analog[30] = GPS_Nick;
1026
    DebugOut.Analog[31] = GPS_Roll;
1027
 
805 hbuss 1028
/*    DebugOut.Analog[19] += (DebugOut.Analog[1] - Mittelwert_AccRoll)/32;
1029
    DebugOut.Analog[19] -= DebugOut.Analog[19]/32;
1030
    if(DebugOut.Analog[19] > 0) DebugOut.Analog[19]--; else DebugOut.Analog[19]++;
1031
GPS_Roll2 = (1 * GPS_Roll + ((DebugOut.Analog[19] / 16) * Poti3) / 32) / 2;
1032
 
1033
    DebugOut.Analog[20] += (DebugOut.Analog[0] - Mittelwert_AccNick)/32;
1034
    DebugOut.Analog[20] -= DebugOut.Analog[20]/32;
1035
    if(DebugOut.Analog[20] > 0) DebugOut.Analog[20]--; else DebugOut.Analog[20]++;
1036
GPS_Nick2 = (1 * GPS_Roll + ((DebugOut.Analog[20] / 16) * Poti3) / 32) / 2;
1037
*/
1038
//GPS_Nick = (GPS_Nick + (DebugOut.Analog[20] * Poti3) / 32) / 2;
1039
 
1040
 
1041
//    DebugOut.Analog[19] -= DebugOut.Analog[19]/128;
1042
//    if(DebugOut.Analog[19] > 0) DebugOut.Analog[19]--; else DebugOut.Analog[19]++;
1043
 
173 holgerb 1044
/*    DebugOut.Analog[16] = motor_rx[0];
1045
    DebugOut.Analog[17] = motor_rx[1];
1046
    DebugOut.Analog[18] = motor_rx[2];
1047
    DebugOut.Analog[19] = motor_rx[3];
1048
    DebugOut.Analog[20] = motor_rx[0] + motor_rx[1] + motor_rx[2] + motor_rx[3];
1049
    DebugOut.Analog[20] /= 14;
1050
    DebugOut.Analog[21] = motor_rx[4];
1051
    DebugOut.Analog[22] = motor_rx[5];
1052
    DebugOut.Analog[23] = motor_rx[6];
1053
    DebugOut.Analog[24] = motor_rx[7];
1054
    DebugOut.Analog[25] = motor_rx[4] + motor_rx[5] + motor_rx[6] + motor_rx[7];
1055
*/
1056
//    DebugOut.Analog[9] = MesswertNick;
1 ingob 1057
//    DebugOut.Analog[9] = SollHoehe;
1058
//    DebugOut.Analog[10] = Mess_Integral_Gier / 128;
1059
//    DebugOut.Analog[11] = KompassStartwert;
1060
//    DebugOut.Analog[10] = Parameter_Gyro_I;    
1061
//    DebugOut.Analog[10] = EE_Parameter.Gyro_I;    
1062
//    DebugOut.Analog[9] = KompassRichtung;    
1063
//    DebugOut.Analog[10] = GasMischanteil;
1064
//    DebugOut.Analog[3] = HoeheD * 32;
1065
//    DebugOut.Analog[4] = hoehenregler;
1066
  }
1067
 
1068
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1069
//  Drehgeschwindigkeit und -winkel zu einem Istwert zusammenfassen
1070
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
604 hbuss 1071
//DebugOut.Analog[26] = MesswertNick;
1072
//DebugOut.Analog[28] = MesswertRoll;
1073
 
173 holgerb 1074
    if(Looping_Nick) MesswertNick = MesswertNick * GyroFaktor;
1075
    else             MesswertNick = IntegralNick * IntegralFaktor + MesswertNick * GyroFaktor;
1076
    if(Looping_Roll) MesswertRoll = MesswertRoll * GyroFaktor;
1077
    else             MesswertRoll = IntegralRoll * IntegralFaktor + MesswertRoll * GyroFaktor;
623 hbuss 1078
    MesswertGier = MesswertGier * (2 * GyroFaktor) + Integral_Gier * IntegralFaktor / 2;
1 ingob 1079
 
720 ingob 1080
/*
469 hbuss 1081
DebugOut.Analog[25] = IntegralRoll * IntegralFaktor;
1082
DebugOut.Analog[31] = StickRoll;// / (26*IntegralFaktor);
604 hbuss 1083
DebugOut.Analog[28] = MesswertRoll;
720 ingob 1084
*/
1 ingob 1085
    // Maximalwerte abfangen
1086
    #define MAX_SENSOR  2048
1087
    if(MesswertNick >  MAX_SENSOR) MesswertNick =  MAX_SENSOR;
1088
    if(MesswertNick < -MAX_SENSOR) MesswertNick = -MAX_SENSOR;
1089
    if(MesswertRoll >  MAX_SENSOR) MesswertRoll =  MAX_SENSOR;
1090
    if(MesswertRoll < -MAX_SENSOR) MesswertRoll = -MAX_SENSOR;
1091
    if(MesswertGier >  MAX_SENSOR) MesswertGier =  MAX_SENSOR;
1092
    if(MesswertGier < -MAX_SENSOR) MesswertGier = -MAX_SENSOR;
1093
 
1094
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1095
// Höhenregelung
1096
// Die Höhenregelung schwächt lediglich das Gas ab, erhöht es allerdings nicht
1097
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1098
//OCR0B = 180 - (Poti1 + 120) / 4;
1099
//DruckOffsetSetting = OCR0B;
1100
 if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung
1101
  {
1102
    int tmp_int;
1103
    if(EE_Parameter.GlobalConfig & CFG_HOEHEN_SCHALTER)  // Regler wird über Schalter gesteuert
1104
    {
1105
     if(Parameter_MaxHoehe < 50)
1106
      {
1107
       SollHoehe = HoehenWert - 20;  // Parameter_MaxHoehe ist der PPM-Wert des Schalters
1108
       HoehenReglerAktiv = 0;
1109
      }
1110
      else  
1111
        HoehenReglerAktiv = 1;
1112
    }
1113
    else
1114
    {
492 hbuss 1115
     SollHoehe = ((int) ExternHoehenValue + (int) Parameter_MaxHoehe) * (int)EE_Parameter.Hoehe_Verstaerkung - 20;
1 ingob 1116
     HoehenReglerAktiv = 1;
1117
    }
1118
 
1119
    if(Notlandung) SollHoehe = 0;
1120
    h = HoehenWert;
1121
    if((h > SollHoehe) && HoehenReglerAktiv)      // zu hoch --> drosseln
723 hbuss 1122
     {      
1123
      h = ((h - SollHoehe) * (int) Parameter_Hoehe_P) / 16; // Differenz bestimmen --> P-Anteil
1 ingob 1124
      h = GasMischanteil - h;         // vom Gas abziehen
1125
      h -= (HoeheD * Parameter_Luftdruck_D)/8;    // D-Anteil
1126
      tmp_int = ((Mess_Integral_Hoch / 512) * (signed long) Parameter_Hoehe_ACC_Wirkung) / 32;
1127
      if(tmp_int > 50) tmp_int = 50;
1128
      else if(tmp_int < -50) tmp_int = -50;
1129
      h -= tmp_int;
1130
      hoehenregler = (hoehenregler*15 + h) / 16;      
1131
      if(hoehenregler < EE_Parameter.Hoehe_MinGas) // nicht unter MIN
1132
       {
1133
         if(GasMischanteil >= EE_Parameter.Hoehe_MinGas) hoehenregler = EE_Parameter.Hoehe_MinGas;
1134
         if(GasMischanteil < EE_Parameter.Hoehe_MinGas) hoehenregler = GasMischanteil;
1135
       }  
1136
      if(hoehenregler > GasMischanteil) hoehenregler = GasMischanteil; // nicht mehr als Gas
1137
      GasMischanteil = hoehenregler;
1138
     }
1139
  }
595 hbuss 1140
  if(GasMischanteil > MAX_GAS - 20) GasMischanteil = MAX_GAS - 20;
1 ingob 1141
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1142
// + Mischer und PI-Regler
1143
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
173 holgerb 1144
  DebugOut.Analog[7] = GasMischanteil;
1 ingob 1145
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1146
// Gier-Anteil
1147
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
188 holgerb 1148
#define MUL_G  1.0
173 holgerb 1149
    GierMischanteil = MesswertGier - sollGier;     // Regler für Gier
604 hbuss 1150
// GierMischanteil = 0;
693 hbuss 1151
#define MIN_GIERGAS  30  // unter diesem Gaswert trotzdem Gieren
1152
   if(GasMischanteil > MIN_GIERGAS)
1153
    {
1154
     if(GierMischanteil > (GasMischanteil / 2)) GierMischanteil = GasMischanteil / 2;
1155
     if(GierMischanteil < -(GasMischanteil / 2)) GierMischanteil = -(GasMischanteil / 2);
1156
    }
1157
    else
1158
    {
1159
     if(GierMischanteil > (MIN_GIERGAS / 2))  GierMischanteil = MIN_GIERGAS / 2;
1160
     if(GierMischanteil < -(MIN_GIERGAS / 2)) GierMischanteil = -(MIN_GIERGAS / 2);
1161
    }
514 hbuss 1162
    if(GierMischanteil > ((MAX_GAS - GasMischanteil))) GierMischanteil = ((MAX_GAS - GasMischanteil));
1163
    if(GierMischanteil < -((MAX_GAS - GasMischanteil))) GierMischanteil = -((MAX_GAS - GasMischanteil));
513 hbuss 1164
 
693 hbuss 1165
//    if(GasMischanteil < 20) GierMischanteil = 0;
1 ingob 1166
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1167
// Nick-Achse
1168
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
723 hbuss 1169
    DiffNick = MesswertNick - StickNick;        // Differenz bestimmen
1170
    if(IntegralFaktor) SummeNick += IntegralNick * IntegralFaktor - StickNick; // I-Anteil bei Winkelregelung
1171
 
498 hbuss 1172
    else  SummeNick += DiffNick; // I-Anteil bei HH 
1 ingob 1173
    if(SummeNick >  16000) SummeNick =  16000;
1174
    if(SummeNick < -16000) SummeNick = -16000;
297 holgerb 1175
    pd_ergebnis = DiffNick + Ki * SummeNick; // PI-Regler für Nick                                      
1 ingob 1176
    // Motor Vorn
499 hbuss 1177
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1178
    if(pd_ergebnis >  tmp_int) pd_ergebnis =  tmp_int;
1179
    if(pd_ergebnis < -tmp_int) pd_ergebnis = -tmp_int;
173 holgerb 1180
 
1 ingob 1181
    motorwert = GasMischanteil + pd_ergebnis + GierMischanteil;   // Mischer
173 holgerb 1182
        if ((motorwert < 0)) motorwert = 0;
1 ingob 1183
        else if(motorwert > MAX_GAS)        motorwert = MAX_GAS;
1184
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;       
1185
        Motor_Vorne = motorwert;           
1186
    // Motor Heck
1187
        motorwert = GasMischanteil - pd_ergebnis + GierMischanteil;
173 holgerb 1188
        if ((motorwert < 0)) motorwert = 0;
1 ingob 1189
        else if(motorwert > MAX_GAS)        motorwert = MAX_GAS;
1190
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;
1191
        Motor_Hinten = motorwert;              
1192
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1193
// Roll-Achse
1194
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
723 hbuss 1195
        DiffRoll = MesswertRoll - StickRoll;    // Differenz bestimmen
1196
    if(IntegralFaktor) SummeRoll += IntegralRoll * IntegralFaktor - StickRoll;// I-Anteil bei Winkelregelung
1197
 
498 hbuss 1198
    else                 SummeRoll += DiffRoll;  // I-Anteil bei HH
1 ingob 1199
    if(SummeRoll >  16000) SummeRoll =  16000;
1200
    if(SummeRoll < -16000) SummeRoll = -16000;
297 holgerb 1201
    pd_ergebnis = DiffRoll + Ki * SummeRoll;    // PI-Regler für Roll
499 hbuss 1202
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1203
    if(pd_ergebnis >  tmp_int) pd_ergebnis =  tmp_int;
1204
    if(pd_ergebnis < -tmp_int) pd_ergebnis = -tmp_int;
1 ingob 1205
    // Motor Links
1206
    motorwert = GasMischanteil + pd_ergebnis - GierMischanteil;
604 hbuss 1207
 
173 holgerb 1208
        if ((motorwert < 0)) motorwert = 0;
1 ingob 1209
        else if(motorwert > MAX_GAS)            motorwert = MAX_GAS;
1210
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;
623 hbuss 1211
    Motor_Links = motorwert;           
1 ingob 1212
    // Motor Rechts
1213
        motorwert = GasMischanteil - pd_ergebnis - GierMischanteil;
604 hbuss 1214
 
173 holgerb 1215
        if ((motorwert < 0)) motorwert = 0;
1 ingob 1216
        else if(motorwert > MAX_GAS)            motorwert = MAX_GAS;
1217
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;       
623 hbuss 1218
    Motor_Rechts = motorwert;          
1 ingob 1219
   // +++++++++++++++++++++++++++++++++++++++++++++++
1220
}
1221