Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
90 gunterl 1
/*#######################################################################################
2
Flight Control
3
#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) 04.2007 Holger Buss
6
// + Copyright (c) 12.2007 Gunter Logemann (serial control) 
7
// + Nur für den privaten Gebrauch
8
// + www.MikroKopter.com
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation), 
11
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist. 
12
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt 
13
// + bzgl. der Nutzungsbedingungen aufzunehmen. 
14
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
15
// + Verkauf von Luftbildaufnahmen, usw.
16
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht, 
18
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
21
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
22
// + eindeutig als Ursprung verlinkt werden
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
25
// + Benutzung auf eigene Gefahr
26
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
27
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
28
// + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur 
29
// + mit unserer Zustimmung zulässig
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
32
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
// + Redistributions of source code (with or without modifications) must retain the above copyright notice, 
34
// + this list of conditions and the following disclaimer.
35
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
36
// +     from this software without specific prior written permission.
37
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permittet 
38
// +     for non-commercial use (directly or indirectly)
39
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted 
40
// +     with our written permission
41
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be 
42
// +     clearly linked as origin 
43
// +   * porting to systems other than hardware from www.mikrokopter.de is not allowed
44
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
45
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
48
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
49
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
50
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
51
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
52
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
53
// +  POSSIBILITY OF SUCH DAMAGE. 
54
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
55
 
56
#include "main.h"
57
#include "eeprom.c"
58
 
59
unsigned char h,m,s;
60
volatile unsigned int I2CTimeout = 100;
61
volatile int MesswertNick,MesswertRoll,MesswertGier;
62
volatile int AdNeutralNick = 0,AdNeutralRoll = 0,AdNeutralGier = 0,StartNeutralRoll = 0,StartNeutralNick = 0;
63
volatile int Mittelwert_AccNick, Mittelwert_AccRoll,Mittelwert_AccHoch, NeutralAccX=0, NeutralAccY=0;
64
volatile float NeutralAccZ = 0;
65
unsigned char CosinusNickWinkel = 0, CosinusRollWinkel = 0;
66
volatile long IntegralNick = 0,IntegralNick2 = 0;
67
volatile long IntegralRoll = 0,IntegralRoll2 = 0;
68
volatile long IntegralAccNick = 0,IntegralAccRoll = 0,IntegralAccZ = 0;
69
volatile long Integral_Gier = 0;
70
volatile long Mess_IntegralNick = 0,Mess_IntegralNick2 = 0;
71
volatile long Mess_IntegralRoll = 0,Mess_IntegralRoll2 = 0;
72
volatile long Mess_Integral_Gier = 0,Mess_Integral_Gier2 = 0;
73
volatile long MittelIntegralNick,MittelIntegralRoll,MittelIntegralNick2,MittelIntegralRoll2;
74
volatile long Mess_Integral_Hoch = 0;
75
volatile int  KompassValue = 0;
76
volatile int  KompassStartwert = 0;
77
volatile int  KompassRichtung = 0;
78
unsigned char MAX_GAS,MIN_GAS;
79
unsigned char Notlandung = 0;
80
unsigned char HoehenReglerAktiv = 0;
81
long Umschlag180Nick = 250000L, Umschlag180Roll = 250000L;
82
 
83
float GyroFaktor;
84
float IntegralFaktor;
85
volatile int  DiffNick,DiffRoll;
86
int  Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0;
87
volatile unsigned char Motor_Vorne,Motor_Hinten,Motor_Rechts,Motor_Links, Count;
88
unsigned char MotorWert[5];
89
volatile unsigned char SenderOkay = 0;
90
int StickNick = 0,StickRoll = 0,StickGier = 0;
91
char MotorenEin = 0;
92
int HoehenWert = 0;
93
int SollHoehe = 0;
94
int LageKorrekturRoll = 0,LageKorrekturNick = 0;
95
float Ki =  FAKTOR_I;
96
unsigned char Looping_Nick = 0,Looping_Roll = 0;
97
unsigned char Looping_Links = 0, Looping_Rechts = 0, Looping_Unten = 0, Looping_Oben = 0;
98
 
99
unsigned char Parameter_Luftdruck_D  = 48;      // Wert : 0-250
100
unsigned char Parameter_MaxHoehe     = 251;      // Wert : 0-250
101
unsigned char Parameter_Hoehe_P      = 16;      // Wert : 0-32
102
unsigned char Parameter_Hoehe_ACC_Wirkung = 58; // Wert : 0-250
103
unsigned char Parameter_KompassWirkung = 64;    // Wert : 0-250
104
unsigned char Parameter_Gyro_P = 150;           // Wert : 10-250
105
unsigned char Parameter_Gyro_I = 150;           // Wert : 0-250
106
unsigned char Parameter_Gier_P = 2;             // Wert : 1-20
107
unsigned char Parameter_I_Faktor = 10;          // Wert : 1-20
108
unsigned char Parameter_UserParam1 = 0;
109
unsigned char Parameter_UserParam2 = 0;
110
unsigned char Parameter_UserParam3 = 0;
111
unsigned char Parameter_UserParam4 = 0;
112
unsigned char Parameter_UserParam5 = 0;
113
unsigned char Parameter_UserParam6 = 0;
114
unsigned char Parameter_UserParam7 = 0;
115
unsigned char Parameter_UserParam8 = 0;
116
unsigned char Parameter_ServoNickControl = 100;
117
unsigned char Parameter_LoopGasLimit = 70;
118
unsigned char Parameter_AchsKopplung1 = 0;
119
unsigned char Parameter_AchsGegenKopplung1 = 0;
120
unsigned char Parameter_DynamicStability = 100;
121
struct mk_param_struct EE_Parameter;
122
signed int ExternStickNick = 0,ExternStickRoll = 0,ExternStickGier = 0, ExternHoehenValue = -20;
123
 
124
void Piep(unsigned char Anzahl)
125
{
126
 while(Anzahl--)
127
 {
128
  if(MotorenEin) return; //auf keinen Fall im Flug!
129
  beeptime = 100;
130
  Delay_ms(250);
131
 }
132
}
133
 
134
//############################################################################
135
//  Nullwerte ermitteln
136
void SetNeutral(void)
137
//############################################################################
138
{
139
        NeutralAccX = 0;
140
        NeutralAccY = 0;
141
        NeutralAccZ = 0;
142
    AdNeutralNick = 0; 
143
        AdNeutralRoll = 0;     
144
        AdNeutralGier = 0;
145
    Parameter_AchsKopplung1 = 0;
146
    Parameter_AchsGegenKopplung1 = 0;
147
    CalibrierMittelwert();     
148
    Delay_ms_Mess(100);
149
        CalibrierMittelwert();
150
    if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
151
     {    
152
      if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
153
     }
154
 
155
     AdNeutralNick= AdWertNick;
156
         AdNeutralRoll= AdWertRoll;    
157
         AdNeutralGier= AdWertGier;
158
     StartNeutralRoll = AdNeutralRoll;
159
     StartNeutralNick = AdNeutralNick;
160
    if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) > 4)
161
    {
162
      NeutralAccY = abs(Mittelwert_AccRoll) / ACC_AMPLIFY;
163
          NeutralAccX = abs(Mittelwert_AccNick) / ACC_AMPLIFY;
164
          NeutralAccZ = Aktuell_az;
165
    }
166
    else
167
    {
168
      NeutralAccX = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK+1]);
169
          NeutralAccY = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_ROLL+1]);
170
          NeutralAccZ = (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z]) * 256 + (int)eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_Z+1]);
171
    }
172
 
173
        Mess_IntegralNick = 0; 
174
    Mess_IntegralNick2 = 0;
175
    Mess_IntegralRoll = 0;     
176
    Mess_IntegralRoll2 = 0;
177
    Mess_Integral_Gier = 0;    
178
    MesswertNick = 0;
179
    MesswertRoll = 0;
180
    MesswertGier = 0;
181
    StartLuftdruck = Luftdruck;
182
    HoeheD = 0;
183
    Mess_Integral_Hoch = 0;
184
    KompassStartwert = KompassValue;
185
    GPS_Neutral();
186
    beeptime = 50;  
187
        Umschlag180Nick = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
188
        Umschlag180Roll = (long) EE_Parameter.WinkelUmschlagRoll * 2500L;
189
    ExternHoehenValue = 0;
190
}
191
 
192
//############################################################################
193
// Bearbeitet die Messwerte
194
void Mittelwert(void)
195
//############################################################################
196
{      
197
    static signed long tmpl,tmpl2;     
198
    MesswertGier = (signed int) AdNeutralGier - AdWertGier;
199
    MesswertRoll = (signed int) AdWertRoll - AdNeutralRoll;
200
    MesswertNick = (signed int) AdWertNick - AdNeutralNick;
201
 
202
// Beschleunigungssensor  ++++++++++++++++++++++++++++++++++++++++++++++++
203
        Mittelwert_AccNick = ((long)Mittelwert_AccNick * 1 + ((ACC_AMPLIFY * (long)AdWertAccNick))) / 2L;
204
        Mittelwert_AccRoll = ((long)Mittelwert_AccRoll * 1 + ((ACC_AMPLIFY * (long)AdWertAccRoll))) / 2L;
205
        Mittelwert_AccHoch = ((long)Mittelwert_AccHoch * 1 + ((long)AdWertAccHoch)) / 2L;
206
    IntegralAccNick += ACC_AMPLIFY * AdWertAccNick;
207
    IntegralAccRoll += ACC_AMPLIFY * AdWertAccRoll;
208
    IntegralAccZ    += Aktuell_az - NeutralAccZ;
209
// Gier  ++++++++++++++++++++++++++++++++++++++++++++++++
210
            Mess_Integral_Gier +=  MesswertGier;
211
            Mess_Integral_Gier2 += MesswertGier;
212
// Kopplungsanteil  +++++++++++++++++++++++++++++++++++++
213
      if(!Looping_Nick && !Looping_Roll && (EE_Parameter.GlobalConfig & CFG_ACHSENKOPPLUNG_AKTIV))
214
         {
215
            tmpl = Mess_IntegralNick / 4096L;
216
            tmpl *= MesswertGier;
217
            tmpl *= Parameter_AchsKopplung1;  //125
218
            tmpl /= 2048L;
219
            tmpl2 = Mess_IntegralRoll / 4096L;
220
            tmpl2 *= MesswertGier;
221
            tmpl2 *= Parameter_AchsKopplung1;
222
            tmpl2 /= 2048L;
223
         }
224
      else  tmpl = tmpl2 = 0;
225
// Roll  ++++++++++++++++++++++++++++++++++++++++++++++++
226
            MesswertRoll += tmpl;
227
            MesswertRoll += (tmpl2*Parameter_AchsGegenKopplung1)/512L; //109
228
            Mess_IntegralRoll2 += MesswertRoll;
229
            Mess_IntegralRoll +=  MesswertRoll - LageKorrekturRoll;
230
            if(Mess_IntegralRoll > Umschlag180Roll)
231
            {
232
             Mess_IntegralRoll  = -(Umschlag180Roll - 10000L);
233
             Mess_IntegralRoll2 = Mess_IntegralRoll;
234
            }
235
            if(Mess_IntegralRoll <-Umschlag180Roll)
236
            {
237
             Mess_IntegralRoll =  (Umschlag180Roll - 10000L);
238
             Mess_IntegralRoll2 = Mess_IntegralRoll;
239
            }  
240
            if(AdWertRoll < 15)   MesswertRoll = -1000;
241
            if(AdWertRoll <  7)   MesswertRoll = -2000;
242
            if(PlatinenVersion == 10)
243
                         {
244
              if(AdWertRoll > 1010) MesswertRoll = +1000;
245
              if(AdWertRoll > 1017) MesswertRoll = +2000;
246
                         }
247
                         else
248
                         {
249
              if(AdWertRoll > 2020) MesswertRoll = +1000;
250
              if(AdWertRoll > 2034) MesswertRoll = +2000;
251
                         }
252
// Nick  ++++++++++++++++++++++++++++++++++++++++++++++++
253
            MesswertNick -= tmpl2;
254
            MesswertNick -= (tmpl*Parameter_AchsGegenKopplung1)/512L;
255
            Mess_IntegralNick2 += MesswertNick;
256
            Mess_IntegralNick  += MesswertNick - LageKorrekturNick;
257
            if(Mess_IntegralNick > Umschlag180Nick)
258
            {
259
             Mess_IntegralNick = -(Umschlag180Nick - 10000L);
260
             Mess_IntegralNick2 = Mess_IntegralNick;
261
            }
262
            if(Mess_IntegralNick <-Umschlag180Nick)
263
            {
264
             Mess_IntegralNick =  (Umschlag180Nick - 10000L);
265
             Mess_IntegralNick2 = Mess_IntegralNick;
266
            }
267
            if(AdWertNick < 15)   MesswertNick = -1000;
268
            if(AdWertNick <  7)   MesswertNick = -2000;
269
            if(PlatinenVersion == 10)
270
                         {
271
              if(AdWertNick > 1010) MesswertNick = +1000;
272
              if(AdWertNick > 1017) MesswertNick = +2000;
273
                         }
274
                         else
275
                         {
276
              if(AdWertNick > 2020) MesswertNick = +1000;
277
              if(AdWertNick > 2034) MesswertNick = +2000;
278
                         }
279
//++++++++++++++++++++++++++++++++++++++++++++++++
280
// ADC einschalten
281
    ANALOG_ON; 
282
//++++++++++++++++++++++++++++++++++++++++++++++++
283
 
284
    Integral_Gier  = Mess_Integral_Gier;
285
    IntegralNick = Mess_IntegralNick;
286
    IntegralRoll = Mess_IntegralRoll;
287
    IntegralNick2 = Mess_IntegralNick2;
288
    IntegralRoll2 = Mess_IntegralRoll2;
289
 
290
  if(EE_Parameter.GlobalConfig & CFG_DREHRATEN_BEGRENZER && !Looping_Nick && !Looping_Roll)
291
  {
292
    if(MesswertNick > 200)       MesswertNick += 4 * (MesswertNick - 200);
293
    else if(MesswertNick < -200) MesswertNick += 4 * (MesswertNick + 200);
294
    if(MesswertRoll > 200)       MesswertRoll += 4 * (MesswertRoll - 200);
295
    else if(MesswertRoll < -200) MesswertRoll += 4 * (MesswertRoll + 200);
296
  }
297
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
298
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
299
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
300
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
301
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
302
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
303
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
304
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
305
}
306
 
307
//############################################################################
308
// Messwerte beim Ermitteln der Nullage
309
void CalibrierMittelwert(void)
310
//############################################################################
311
{                
312
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
313
        ANALOG_OFF;
314
        MesswertNick = AdWertNick;
315
        MesswertRoll = AdWertRoll;
316
        MesswertGier = AdWertGier;
317
        Mittelwert_AccNick = ACC_AMPLIFY * (long)AdWertAccNick;
318
        Mittelwert_AccRoll = ACC_AMPLIFY * (long)AdWertAccRoll;
319
        Mittelwert_AccHoch = (long)AdWertAccHoch;
320
   // ADC einschalten
321
    ANALOG_ON; 
322
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
323
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
324
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
325
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
326
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
327
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
328
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
329
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
330
 
331
        Umschlag180Nick = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
332
        Umschlag180Roll = (long) EE_Parameter.WinkelUmschlagNick * 2500L;
333
}
334
 
335
//############################################################################
336
// Senden der Motorwerte per I2C-Bus
337
void SendMotorData(void)
338
//############################################################################
339
{
340
    if(MOTOR_OFF || !MotorenEin)
341
        {
342
        Motor_Hinten = 0;
343
        Motor_Vorne = 0;
344
        Motor_Rechts = 0;
345
        Motor_Links = 0;
346
        if(MotorTest[0]) Motor_Vorne = MotorTest[0];
347
        if(MotorTest[1]) Motor_Hinten = MotorTest[1];
348
        if(MotorTest[2]) Motor_Links = MotorTest[2];
349
        if(MotorTest[3]) Motor_Rechts = MotorTest[3];
350
        }
351
 
352
    DebugOut.Analog[12] = Motor_Vorne;
353
    DebugOut.Analog[13] = Motor_Hinten;
354
    DebugOut.Analog[14] = Motor_Links;
355
    DebugOut.Analog[15] = Motor_Rechts;  
356
 
357
    //Start I2C Interrupt Mode
358
    twi_state = 0;
359
    motor = 0;
360
    i2c_start();
361
}
362
 
363
 
364
 
365
//############################################################################
366
// Trägt ggf. das Poti als Parameter ein
367
void ParameterZuordnung(void)
368
//############################################################################
369
{
370
 
371
 #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;}
372
 CHK_POTI(Parameter_MaxHoehe,EE_Parameter.MaxHoehe,0,255);
373
 CHK_POTI(Parameter_Luftdruck_D,EE_Parameter.Luftdruck_D,0,100);
374
 CHK_POTI(Parameter_Hoehe_P,EE_Parameter.Hoehe_P,0,100);
375
 CHK_POTI(Parameter_Hoehe_ACC_Wirkung,EE_Parameter.Hoehe_ACC_Wirkung,0,255);
376
 CHK_POTI(Parameter_KompassWirkung,EE_Parameter.KompassWirkung,0,255);
377
 CHK_POTI(Parameter_Gyro_P,EE_Parameter.Gyro_P,10,255);
378
 CHK_POTI(Parameter_Gyro_I,EE_Parameter.Gyro_I,0,255);
379
 CHK_POTI(Parameter_I_Faktor,EE_Parameter.I_Faktor,0,255);
380
 CHK_POTI(Parameter_UserParam1,EE_Parameter.UserParam1,0,255);
381
 CHK_POTI(Parameter_UserParam2,EE_Parameter.UserParam2,0,255);
382
 CHK_POTI(Parameter_UserParam3,EE_Parameter.UserParam3,0,255);
383
 CHK_POTI(Parameter_UserParam4,EE_Parameter.UserParam4,0,255);
384
 CHK_POTI(Parameter_UserParam5,EE_Parameter.UserParam5,0,255);
385
 CHK_POTI(Parameter_UserParam6,EE_Parameter.UserParam6,0,255);
386
 CHK_POTI(Parameter_UserParam7,EE_Parameter.UserParam7,0,255);
387
 CHK_POTI(Parameter_UserParam8,EE_Parameter.UserParam8,0,255);
388
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
389
 CHK_POTI(Parameter_LoopGasLimit,EE_Parameter.LoopGasLimit,0,255);
390
 CHK_POTI(Parameter_AchsKopplung1,    EE_Parameter.AchsKopplung1,0,255);
391
 CHK_POTI(Parameter_AchsGegenKopplung1,EE_Parameter.AchsGegenKopplung1,0,255);
392
 CHK_POTI(Parameter_DynamicStability,EE_Parameter.DynamicStability,0,255);
393
 
394
 Ki = (float) Parameter_I_Faktor * 0.0001;
395
 MAX_GAS = EE_Parameter.Gas_Max;
396
 MIN_GAS = EE_Parameter.Gas_Min;
397
}
398
 
399
 
400
//############################################################################
401
//
402
void MotorRegler(void)
403
//############################################################################
404
{
405
         int motorwert,pd_ergebnis,h,tmp_int;
406
         int GierMischanteil,GasMischanteil;
407
     static long SummeNick=0,SummeRoll=0;
408
     static long sollGier = 0,tmp_long,tmp_long2;
409
     static long IntegralFehlerNick = 0;
410
     static long IntegralFehlerRoll = 0;
411
         static unsigned int RcLostTimer;
412
         static unsigned char delay_neutral = 0;
413
         static unsigned char delay_einschalten = 0,delay_ausschalten = 0;
414
         static unsigned int  modell_fliegt = 0;
415
     static int hoehenregler = 0;
416
     static char TimerWerteausgabe = 0;
417
     static char NeueKompassRichtungMerken = 0;
418
     static long ausgleichNick, ausgleichRoll;
419
 
420
        Mittelwert();
421
 
422
    GRN_ON;
423
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
424
// Gaswert ermitteln
425
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
426
        GasMischanteil = PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] + 120;
427
 
428
        if(Parameter_UserParam2 > 10) {
429
                GasMischanteil = GasMischanteil + (int)ControlIn.gas;
430
        }
431
 
432
    if(GasMischanteil > MAX_GAS - 20) GasMischanteil = MAX_GAS - 20;
433
    if(GasMischanteil < 0) GasMischanteil = 0;
434
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
435
// Emfang schlecht
436
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
437
   if(SenderOkay < 100)
438
        {
439
        if(!PcZugriff)
440
         {
441
           if(BeepMuster == 0xffff)
442
            {
443
             beeptime = 15000;
444
             BeepMuster = 0x0c00;
445
            }
446
         }
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;
461
            }
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
                }
483
            if((GasMischanteil > 200) && MotorenEin == 0)
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
                        {
498
                         unsigned char setting=1;
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
                          }  
510
                            ReadParameterSet(GetActiveParamSetNumber(), (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE);
511
                        SetNeutral();
512
                        Piep(GetActiveParamSetNumber());
513
                        }
514
                    }
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
                    }
535
                 else delay_neutral = 0;
536
                }
537
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
538
// Gas ist unten
539
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
540
            if(GasMischanteil < 35)
541
                {
542
                // Starten
543
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)
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
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
569
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)
570
                    {
571
                    if(++delay_ausschalten > 200)  // nicht sofort
572
                        {
573
                        MotorenEin = 0;
574
                        delay_ausschalten = 200;
575
                        modell_fliegt = 0;
576
                        }
577
                    }
578
                else delay_ausschalten = 0;
579
                }
580
            }
581
 
582
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
583
// neue Werte von der Funke
584
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
585
 if(!NewPpmData-- || Notlandung)  
586
  {
587
    int tmp_int;
588
    ParameterZuordnung();
589
    StickNick = PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_P;
590
    StickNick += PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_D;
591
    StickRoll = PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_P;
592
    StickRoll += PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_D;
593
    StickGier = -PPM_in[EE_Parameter.Kanalbelegung[K_GIER]];
594
    GyroFaktor     = ((float)Parameter_Gyro_P + 10.0) / 256.0;
595
    IntegralFaktor = ((float) Parameter_Gyro_I) / 44000;
596
 
597
#define KEY_VALUE (Parameter_UserParam1 * 4)  //(Poti3 * 8)
598
if(DubWiseKeys[1]) beeptime = 10;
599
    if(DubWiseKeys[1] & DUB_KEY_UP)    tmp_int = KEY_VALUE;   else
600
    if(DubWiseKeys[1] & DUB_KEY_DOWN)  tmp_int = -KEY_VALUE;  else   tmp_int = 0;
601
    ExternStickNick = (ExternStickNick * 7 + tmp_int) / 8;
602
    if(DubWiseKeys[1] & DUB_KEY_LEFT)  tmp_int = KEY_VALUE; else
603
    if(DubWiseKeys[1] & DUB_KEY_RIGHT) tmp_int = -KEY_VALUE; else tmp_int = 0;
604
    ExternStickRoll = (ExternStickRoll * 7 + tmp_int) / 8;
605
 
606
    if(DubWiseKeys[0] & 8)  ExternStickGier = 50;else
607
    if(DubWiseKeys[0] & 4)  ExternStickGier =-50;else ExternStickGier = 0;
608
    if(DubWiseKeys[0] & 2)  ExternHoehenValue++;
609
    if(DubWiseKeys[0] & 16) ExternHoehenValue--;
610
 
611
    StickNick += ExternStickNick / 8;
612
    StickRoll += ExternStickRoll / 8;
613
    StickGier += ExternStickGier;
614
 
615
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
616
// neue Werte von der seriellen Schnittstelle 
617
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
618
        if(Parameter_UserParam2 > 10) {
619
                StickNick = StickNick + (int)ControlIn.nick;
620
                StickRoll = StickRoll + (int)ControlIn.roll;
621
                StickGier = StickGier + (int)ControlIn.gier;
622
        }
623
 
624
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
625
 
626
 
627
    if(EE_Parameter.GlobalConfig & CFG_HEADING_HOLD) IntegralFaktor =  0;
628
    if(GyroFaktor < 0) GyroFaktor = 0;
629
    if(IntegralFaktor < 0) IntegralFaktor = 0;
630
    // greift in den Stick ein, um ungewolltes überschlagen zu verhindern
631
    if(!(EE_Parameter.LoopConfig & CFG_LOOP_LINKS) && !(EE_Parameter.LoopConfig & CFG_LOOP_RECHTS))
632
     {
633
      if(IntegralNick >  60000)  
634
      {
635
       StickNick -=  8 * EE_Parameter.Stick_P;      
636
       if(IntegralNick >  80000) StickNick -= 16 * EE_Parameter.Stick_P;      
637
      }
638
      else
639
      if(IntegralNick < -60000)  
640
      {
641
       StickNick += 8 * EE_Parameter.Stick_P;
642
       if(IntegralNick >  80000) StickNick -= 16 * EE_Parameter.Stick_P;      
643
      }
644
      if(IntegralRoll >  60000)  
645
      {
646
       StickRoll -=  8 * EE_Parameter.Stick_P;      
647
       if(IntegralRoll >  80000) StickRoll -= 16 * EE_Parameter.Stick_P;      
648
      }
649
      else
650
      if(IntegralRoll < -60000)  
651
      {
652
       StickRoll += 8 * EE_Parameter.Stick_P;
653
       if(IntegralRoll >  80000) StickRoll -= 16 * EE_Parameter.Stick_P;      
654
      }
655
     }
656
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
657
// Looping?
658
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
659
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_LINKS)  Looping_Links = 1;
660
  else
661
   {
662
     {
663
      if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Links = 0;  
664
     }  
665
   }
666
  if((PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < -EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_RECHTS) Looping_Rechts = 1;
667
   else
668
   {
669
   if(Looping_Rechts) // Hysterese
670
     {
671
      if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Rechts = 0;
672
     }
673
   }
674
 
675
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_OBEN) Looping_Oben = 1;
676
  else
677
   {
678
    if(Looping_Oben)  // Hysterese
679
     {
680
      if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < (EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese))) Looping_Oben = 0;  
681
     }  
682
   }
683
  if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -EE_Parameter.LoopThreshold) && EE_Parameter.LoopConfig & CFG_LOOP_UNTEN) Looping_Unten = 1;
684
   else
685
   {
686
    if(Looping_Unten) // Hysterese
687
     {
688
      if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > -(EE_Parameter.LoopThreshold - EE_Parameter.LoopHysterese)) Looping_Unten = 0;
689
     }
690
   }
691
 
692
   if(Looping_Links || Looping_Rechts)   Looping_Roll = 1; else Looping_Roll = 0;
693
   if(Looping_Oben  || Looping_Unten) {Looping_Nick = 1; Looping_Roll = 0; Looping_Links = 0; Looping_Rechts = 0;} else Looping_Nick = 0;
694
  } // Ende neue Funken-Werte
695
 
696
  if(Looping_Roll) beeptime = 100;
697
  if(Looping_Roll || Looping_Nick)
698
   {
699
    if(GasMischanteil > EE_Parameter.LoopGasLimit) GasMischanteil = EE_Parameter.LoopGasLimit;
700
   }
701
 
702
 
703
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
704
// Bei Empfangsausfall im Flug 
705
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
706
   if(Notlandung)
707
    {
708
     StickGier = 0;
709
     StickNick = 0;
710
     StickRoll = 0;
711
     GyroFaktor  = 0.1;
712
     IntegralFaktor = 0.005;
713
     Looping_Roll = 0;
714
     Looping_Nick = 0;
715
    }  
716
 
717
 
718
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
719
// Integrale auf ACC-Signal abgleichen
720
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
721
#define ABGLEICH_ANZAHL 256L
722
 
723
 MittelIntegralNick  += IntegralNick;    // Für die Mittelwertbildung aufsummieren
724
 MittelIntegralRoll  += IntegralRoll;
725
 MittelIntegralNick2 += IntegralNick2;
726
 MittelIntegralRoll2 += IntegralRoll2;
727
 
728
 if(Looping_Nick || Looping_Roll)
729
  {
730
    IntegralAccNick = 0;
731
    IntegralAccRoll = 0;
732
    MittelIntegralNick = 0;
733
    MittelIntegralRoll = 0;
734
    MittelIntegralNick2 = 0;
735
    MittelIntegralRoll2 = 0;
736
    Mess_IntegralNick2 = Mess_IntegralNick;
737
    Mess_IntegralRoll2 = Mess_IntegralRoll;
738
    ZaehlMessungen = 0;
739
    LageKorrekturNick = 0;
740
    LageKorrekturRoll = 0;
741
  }
742
 
743
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
744
  if(!Looping_Nick && !Looping_Roll)
745
  {
746
   long tmp_long, tmp_long2;
747
    tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick);
748
    tmp_long /= 16;
749
    tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll);
750
    tmp_long2 /= 16;
751
 #define AUSGLEICH 32 //(Parameter_UserParam1 / 2)
752
    if(tmp_long >  AUSGLEICH)  tmp_long  = AUSGLEICH;
753
    if(tmp_long < -AUSGLEICH)  tmp_long  =-AUSGLEICH;
754
    if(tmp_long2 > AUSGLEICH)  tmp_long2 = AUSGLEICH;
755
    if(tmp_long2 <-AUSGLEICH)  tmp_long2 =-AUSGLEICH;
756
    Mess_IntegralNick -= tmp_long;
757
    Mess_IntegralRoll -= tmp_long2;
758
  }
759
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
760
 
761
 if(ZaehlMessungen >= ABGLEICH_ANZAHL)
762
 {
763
  static int cnt = 0;
764
  static char last_n_p,last_n_n,last_r_p,last_r_n;
765
  static long MittelIntegralNick_Alt,MittelIntegralRoll_Alt;
766
  if(!Looping_Nick && !Looping_Roll)
767
  {
768
    MittelIntegralNick  /= ABGLEICH_ANZAHL;
769
    MittelIntegralRoll  /= ABGLEICH_ANZAHL;
770
        IntegralAccNick = (EE_Parameter.GyroAccFaktor * IntegralAccNick) / ABGLEICH_ANZAHL;
771
        IntegralAccRoll = (EE_Parameter.GyroAccFaktor * IntegralAccRoll) / ABGLEICH_ANZAHL;
772
    IntegralAccZ    = IntegralAccZ / ABGLEICH_ANZAHL;
773
#define MAX_I 0//(Poti2/10)
774
// Nick ++++++++++++++++++++++++++++++++++++++++++++++++
775
    IntegralFehlerNick = (long)(MittelIntegralNick - (long)IntegralAccNick);
776
    ausgleichNick = IntegralFehlerNick / EE_Parameter.GyroAccAbgleich;
777
    LageKorrekturNick = ausgleichNick / ABGLEICH_ANZAHL;
778
// Roll ++++++++++++++++++++++++++++++++++++++++++++++++     
779
    IntegralFehlerRoll = (long)(MittelIntegralRoll - (long)IntegralAccRoll);
780
    ausgleichRoll = IntegralFehlerRoll / EE_Parameter.GyroAccAbgleich;
781
    LageKorrekturRoll = ausgleichRoll / ABGLEICH_ANZAHL;
782
 
783
//    Mess_IntegralNick -= ausgleichNick;
784
//    Mess_IntegralRoll -= ausgleichRoll;
785
 
786
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
787
// Gyro-Drift ermitteln
788
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
789
    MittelIntegralNick2 /= ABGLEICH_ANZAHL;
790
    MittelIntegralRoll2 /= ABGLEICH_ANZAHL;
791
//    tmp_long  = (long)(MittelIntegralNick2 - (long)IntegralAccNick); 
792
//    tmp_long2 = (long)(MittelIntegralRoll2 - (long)IntegralAccRoll); 
793
    tmp_long  = IntegralNick2 - IntegralNick;
794
    tmp_long2 = IntegralRoll2 - IntegralRoll;
795
    //DebugOut.Analog[25] = MittelIntegralRoll2 / 26;
796
 
797
    IntegralFehlerNick = tmp_long;
798
    IntegralFehlerRoll = tmp_long2;
799
    Mess_IntegralNick2 -= IntegralFehlerNick;
800
    Mess_IntegralRoll2 -= IntegralFehlerRoll;
801
 
802
//    IntegralFehlerNick = (IntegralFehlerNick * 1 + tmp_long) / 2;
803
//    IntegralFehlerRoll = (IntegralFehlerRoll * 1 + tmp_long2) / 2;
804
 
805
 
806
DebugOut.Analog[17] = IntegralAccNick / 26;
807
DebugOut.Analog[18] = IntegralAccRoll / 26;
808
DebugOut.Analog[19] = IntegralFehlerNick;// / 26;
809
DebugOut.Analog[20] = IntegralFehlerRoll;// / 26;
810
DebugOut.Analog[21] = MittelIntegralNick / 26;
811
DebugOut.Analog[22] = MittelIntegralRoll / 26;
812
//DebugOut.Analog[28] = ausgleichNick;
813
DebugOut.Analog[29] = ausgleichRoll;
814
DebugOut.Analog[30] = LageKorrekturRoll * 10;
815
 
816
#define FEHLER_LIMIT  (ABGLEICH_ANZAHL * 4)
817
#define FEHLER_LIMIT2 (ABGLEICH_ANZAHL * 16)
818
#define BEWEGUNGS_LIMIT 20000
819
// Nick +++++++++++++++++++++++++++++++++++++++++++++++++
820
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
821
        if(labs(MittelIntegralNick_Alt - MittelIntegralNick) < BEWEGUNGS_LIMIT)
822
        {
823
        if(IntegralFehlerNick >  FEHLER_LIMIT2)
824
         {
825
           if(last_n_p)
826
           {
827
            cnt += labs(IntegralFehlerNick) / FEHLER_LIMIT2;
828
            ausgleichNick = IntegralFehlerNick / 8;
829
            if(ausgleichNick > 5000) ausgleichNick = 5000;
830
            LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
831
//            Mess_IntegralNick -= ausgleichNick;
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;
840
             ausgleichNick = IntegralFehlerNick / 8;
841
             if(ausgleichNick < -5000) ausgleichNick = -5000;
842
             LageKorrekturNick += ausgleichNick / ABGLEICH_ANZAHL;
843
//             Mess_IntegralNick -= ausgleichNick;
844
            }
845
           else last_n_n = 1;
846
         } else  last_n_n = 0;
847
        } else cnt = 0;
848
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
849
        if(IntegralFehlerNick >  FEHLER_LIMIT)   AdNeutralNick += cnt;
850
        if(IntegralFehlerNick < -FEHLER_LIMIT)   AdNeutralNick -= cnt;
851
 
852
// Roll +++++++++++++++++++++++++++++++++++++++++++++++++
853
        cnt = 1;// + labs(IntegralFehlerNick) / 4096;
854
 
855
        ausgleichRoll = 0;
856
        if(labs(MittelIntegralRoll_Alt - MittelIntegralRoll) < BEWEGUNGS_LIMIT)
857
        {
858
        if(IntegralFehlerRoll >  FEHLER_LIMIT2)
859
         {
860
           if(last_r_p)
861
           {
862
            cnt += labs(IntegralFehlerRoll) / FEHLER_LIMIT2;
863
            ausgleichRoll = IntegralFehlerRoll / 8;
864
            if(ausgleichRoll > 5000) ausgleichRoll = 5000;
865
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
866
//            Mess_IntegralRoll -= ausgleichRoll;
867
           }
868
           else last_r_p = 1;
869
         } else  last_r_p = 0;
870
        if(IntegralFehlerRoll < -FEHLER_LIMIT2)
871
         {
872
           if(last_r_n)
873
           {
874
            cnt += labs(IntegralFehlerRoll) / FEHLER_LIMIT2;
875
            ausgleichRoll = IntegralFehlerRoll / 8;
876
            if(ausgleichRoll < -5000) ausgleichRoll = -5000;
877
//            Mess_IntegralRoll -= ausgleichRoll;
878
            LageKorrekturRoll += ausgleichRoll / ABGLEICH_ANZAHL;
879
           }
880
           else last_r_n = 1;
881
         } else  last_r_n = 0;
882
        } else
883
        {
884
         cnt = 0;
885
        }
886
DebugOut.Analog[27] = ausgleichRoll;
887
        if(cnt > EE_Parameter.Driftkomp) cnt = EE_Parameter.Driftkomp;
888
//if(cnt > 1) beeptime = 50;
889
        if(IntegralFehlerRoll >  FEHLER_LIMIT)   AdNeutralRoll += cnt;
890
        if(IntegralFehlerRoll < -FEHLER_LIMIT)   AdNeutralRoll -= cnt;
891
DebugOut.Analog[23] = AdNeutralNick;//10*(AdNeutralNick - StartNeutralNick);
892
DebugOut.Analog[24] = 10*(AdNeutralRoll - StartNeutralRoll);
893
  }
894
  else
895
  {
896
   LageKorrekturRoll = 0;
897
   LageKorrekturNick = 0;
898
  }
899
  if(!IntegralFaktor) { LageKorrekturRoll = 0; LageKorrekturNick = 0;} // z.B. bei HH
900
// +++++++++++++++++++++++++++++++++++++++++++++++++++++     
901
   MittelIntegralNick_Alt = MittelIntegralNick;      
902
   MittelIntegralRoll_Alt = MittelIntegralRoll;      
903
// +++++++++++++++++++++++++++++++++++++++++++++++++++++     
904
    IntegralAccNick = 0;
905
    IntegralAccRoll = 0;
906
    IntegralAccZ = 0;
907
    MittelIntegralNick = 0;
908
    MittelIntegralRoll = 0;
909
    MittelIntegralNick2 = 0;
910
    MittelIntegralRoll2 = 0;
911
    ZaehlMessungen = 0;
912
 }
913
//DebugOut.Analog[31] = StickRoll / (26*IntegralFaktor);
914
 
915
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
916
//  Gieren
917
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
918
    if(abs(StickGier) > 20) // war 35 
919
     {
920
      if(!(EE_Parameter.GlobalConfig & CFG_KOMPASS_FIX)) NeueKompassRichtungMerken = 1;
921
     }
922
    tmp_int  = (long) EE_Parameter.Gier_P * ((long)StickGier * abs(StickGier)) / 512L; // expo  y = ax + bx²
923
    tmp_int += (EE_Parameter.Gier_P * StickGier) / 4;
924
    sollGier = tmp_int;
925
    Mess_Integral_Gier -= tmp_int;  
926
    if(Mess_Integral_Gier > 50000) Mess_Integral_Gier = 50000;  // begrenzen
927
    if(Mess_Integral_Gier <-50000) Mess_Integral_Gier =-50000;
928
 
929
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
930
//  Kompass
931
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
932
    if(KompassValue && (EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV))
933
     {
934
       int w,v;
935
       static int SignalSchlecht = 0;
936
       w = abs(IntegralNick /512); // mit zunehmender Neigung den Einfluss drosseln
937
       v = abs(IntegralRoll /512);
938
       if(v > w) w = v; // grösste Neigung ermitteln
939
       if(w < 25 && NeueKompassRichtungMerken && !SignalSchlecht)    
940
        {
941
         KompassStartwert = KompassValue;
942
         NeueKompassRichtungMerken = 0;
943
        }
944
       w = (w * Parameter_KompassWirkung) / 64;           // auf die Wirkung normieren
945
       w = Parameter_KompassWirkung - w;                  // Wirkung ggf drosseln
946
       if(w > 0)
947
        {
948
          if(!SignalSchlecht) Mess_Integral_Gier += (KompassRichtung * w) / 32;  // nach Kompass ausrichten
949
          if(SignalSchlecht) SignalSchlecht--;
950
        }  
951
        else SignalSchlecht = 500; // so lange das Signal taub stellen --> ca. 1 sek
952
     }
953
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
954
 
955
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
956
//  Debugwerte zuordnen
957
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
958
  if(!TimerWerteausgabe--)
959
   {
960
    TimerWerteausgabe = 24;
961
    DebugOut.Analog[0] = IntegralNick / EE_Parameter.GyroAccFaktor;
962
    DebugOut.Analog[1] = IntegralRoll / EE_Parameter.GyroAccFaktor;
963
    DebugOut.Analog[2] = Mittelwert_AccNick;
964
    DebugOut.Analog[3] = Mittelwert_AccRoll;
965
    DebugOut.Analog[4] = MesswertGier;
966
    DebugOut.Analog[5] = HoehenWert;
967
    DebugOut.Analog[6] =(Mess_Integral_Hoch / 512);
968
    DebugOut.Analog[8] = KompassValue;
969
    DebugOut.Analog[9] = UBat;
970
    DebugOut.Analog[10] = SenderOkay;
971
    DebugOut.Analog[16] = Mittelwert_AccHoch;
972
 
973
/*    DebugOut.Analog[16] = motor_rx[0];
974
    DebugOut.Analog[17] = motor_rx[1];
975
    DebugOut.Analog[18] = motor_rx[2];
976
    DebugOut.Analog[19] = motor_rx[3];
977
    DebugOut.Analog[20] = motor_rx[0] + motor_rx[1] + motor_rx[2] + motor_rx[3];
978
    DebugOut.Analog[20] /= 14;
979
    DebugOut.Analog[21] = motor_rx[4];
980
    DebugOut.Analog[22] = motor_rx[5];
981
    DebugOut.Analog[23] = motor_rx[6];
982
    DebugOut.Analog[24] = motor_rx[7];
983
    DebugOut.Analog[25] = motor_rx[4] + motor_rx[5] + motor_rx[6] + motor_rx[7];
984
*/
985
//    DebugOut.Analog[9] = MesswertNick;
986
//    DebugOut.Analog[9] = SollHoehe;
987
//    DebugOut.Analog[10] = Mess_Integral_Gier / 128;
988
//    DebugOut.Analog[11] = KompassStartwert;
989
//    DebugOut.Analog[10] = Parameter_Gyro_I;    
990
//    DebugOut.Analog[10] = EE_Parameter.Gyro_I;    
991
//    DebugOut.Analog[9] = KompassRichtung;    
992
//    DebugOut.Analog[10] = GasMischanteil;
993
//    DebugOut.Analog[3] = HoeheD * 32;
994
//    DebugOut.Analog[4] = hoehenregler;
995
  }
996
 
997
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
998
//  Drehgeschwindigkeit und -winkel zu einem Istwert zusammenfassen
999
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1000
    if(Looping_Nick) MesswertNick = MesswertNick * GyroFaktor;
1001
    else             MesswertNick = IntegralNick * IntegralFaktor + MesswertNick * GyroFaktor;
1002
    if(Looping_Roll) MesswertRoll = MesswertRoll * GyroFaktor;
1003
    else             MesswertRoll = IntegralRoll * IntegralFaktor + MesswertRoll * GyroFaktor;
1004
//    MesswertGier = MesswertGier * (GyroFaktor/2) + Integral_Gier * IntegralFaktor;
1005
    MesswertGier = MesswertGier * (GyroFaktor) + Integral_Gier * IntegralFaktor/2;
1006
 
1007
DebugOut.Analog[28] = MesswertRoll;
1008
DebugOut.Analog[25] = IntegralRoll * IntegralFaktor;
1009
DebugOut.Analog[31] = StickRoll;// / (26*IntegralFaktor);
1010
 
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
    {
1041
     SollHoehe = ((int) ExternHoehenValue + (int) Parameter_MaxHoehe) * (int)EE_Parameter.Hoehe_Verstaerkung - 20;
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
  }
1065
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1066
// + Mischer und PI-Regler
1067
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1068
  DebugOut.Analog[7] = GasMischanteil;
1069
 
1070
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1071
// Gier-Anteil
1072
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1073
#define MUL_G  1.0
1074
    GierMischanteil = MesswertGier - sollGier;     // Regler für Gier
1075
//GierMischanteil = 0;
1076
 
1077
    if(GierMischanteil > (GasMischanteil / 2)) GierMischanteil = GasMischanteil / 2; // MartinR
1078
    if(GierMischanteil < -(GasMischanteil / 2)) GierMischanteil = -(GasMischanteil / 2); // MartinR
1079
    if(GierMischanteil > ((MAX_GAS - GasMischanteil)/2)) GierMischanteil = ((MAX_GAS - GasMischanteil) / 2); // MartinR
1080
    if(GierMischanteil < -((MAX_GAS - GasMischanteil) / 2)) GierMischanteil = -((MAX_GAS - GasMischanteil) / 2); // MartinR
1081
 
1082
    if(GasMischanteil < 20) GierMischanteil = 0;
1083
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1084
// Nick-Achse
1085
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1086
    DiffNick = MesswertNick - (StickNick - GPS_Nick);   // Differenz bestimmen
1087
    if(IntegralFaktor) SummeNick += IntegralNick * IntegralFaktor - (StickNick - GPS_Nick); // I-Anteil bei Winkelregelung
1088
    else  SummeNick += DiffNick; // I-Anteil bei HH 
1089
//    if(SummeNick > 0) SummeNick-= (abs(SummeNick)/256 + 1); else SummeNick += abs(SummeNick)/256 + 1; 
1090
    if(SummeNick > 0) SummeNick-= 2 ; else SummeNick += 2 ;
1091
    if(SummeNick >  16000) SummeNick =  16000;
1092
    if(SummeNick < -16000) SummeNick = -16000;
1093
    pd_ergebnis = DiffNick + Ki * SummeNick; // PI-Regler für Nick                                      
1094
    // Motor Vorn
1095
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1096
    if(pd_ergebnis >  tmp_int) pd_ergebnis =  tmp_int;
1097
    if(pd_ergebnis < -tmp_int) pd_ergebnis = -tmp_int;
1098
 
1099
    motorwert = GasMischanteil + pd_ergebnis + GierMischanteil;   // Mischer
1100
        if ((motorwert < 0)) motorwert = 0;
1101
        else if(motorwert > MAX_GAS)        motorwert = MAX_GAS;
1102
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;       
1103
        Motor_Vorne = motorwert;           
1104
    // Motor Heck
1105
        motorwert = GasMischanteil - pd_ergebnis + GierMischanteil;
1106
        if ((motorwert < 0)) motorwert = 0;
1107
        else if(motorwert > MAX_GAS)        motorwert = MAX_GAS;
1108
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;
1109
        Motor_Hinten = motorwert;              
1110
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1111
// Roll-Achse
1112
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
1113
        DiffRoll = MesswertRoll - (StickRoll  - GPS_Roll);      // Differenz bestimmen
1114
    if(IntegralFaktor) SummeRoll += IntegralRoll * IntegralFaktor - (StickRoll  - GPS_Roll);// I-Anteil bei Winkelregelung
1115
    else                 SummeRoll += DiffRoll;  // I-Anteil bei HH
1116
//if(Poti2 < 100){  if(SummeRoll > 0) SummeRoll-= (abs(SummeRoll)/256 + 1); else SummeRoll += abs(SummeRoll)/256 + 1;}
1117
    if(SummeRoll > 0) SummeRoll-= 2 ; else SummeRoll += 2 ;
1118
    if(SummeRoll >  16000) SummeRoll =  16000;
1119
    if(SummeRoll < -16000) SummeRoll = -16000;
1120
    pd_ergebnis = DiffRoll + Ki * SummeRoll;    // PI-Regler für Roll
1121
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMischanteil + abs(GierMischanteil)/2)) / 64;
1122
    if(pd_ergebnis >  tmp_int) pd_ergebnis =  tmp_int;
1123
    if(pd_ergebnis < -tmp_int) pd_ergebnis = -tmp_int;
1124
    // Motor Links
1125
    motorwert = GasMischanteil + pd_ergebnis - GierMischanteil;
1126
        if ((motorwert < 0)) motorwert = 0;
1127
        else if(motorwert > MAX_GAS)            motorwert = MAX_GAS;
1128
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;
1129
        Motor_Links = motorwert;               
1130
    // Motor Rechts
1131
        motorwert = GasMischanteil - pd_ergebnis - GierMischanteil;
1132
        if ((motorwert < 0)) motorwert = 0;
1133
        else if(motorwert > MAX_GAS)            motorwert = MAX_GAS;
1134
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;       
1135
        Motor_Rechts = motorwert;
1136
   // +++++++++++++++++++++++++++++++++++++++++++++++
1137
}
1138