Subversion Repositories FlightCtrl

Rev

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