Subversion Repositories FlightCtrl

Rev

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