Subversion Repositories FlightCtrl

Rev

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

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