Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

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