Subversion Repositories FlightCtrl

Rev

Rev 116 | 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"
57
 
58
unsigned char h,m,s;
59
volatile unsigned char Timeout = 0;
60
volatile int MesswertNick,MesswertRoll,MesswertGier;
61
volatile int AdNeutralNick = 0,AdNeutralRoll = 0,AdNeutralGier = 0;
62
volatile int Mittelwert_AccNick, Mittelwert_AccRoll,Mittelwert_AccHoch, NeutralAccX=0, NeutralAccY=0;
63
volatile float NeutralAccZ = 0;
64
unsigned char CosinusNickWinkel = 0, CosinusRollWinkel = 0;
65
volatile long IntegralNick = 0,IntegralNick2 = 0;
66
volatile long IntegralRoll = 0,IntegralRoll2 = 0;
67
volatile long Integral_Gier = 0;
68
volatile long Mess_IntegralNick = 0,Mess_IntegralNick2 = 0;
69
volatile long Mess_IntegralRoll = 0,Mess_IntegralRoll2 = 0;
70
volatile long Mess_Integral_Gier = 0,Mess_Integral_Gier2 = 0;
71
volatile long Mess_Integral_Hoch = 0;
72
volatile int  KompassValue = 0;
73
volatile int  KompassStartwert = 0;
74
volatile int  KompassRichtung = 0;
75
unsigned char MAX_GAS,MIN_GAS;
76
unsigned char Notlandung = 0;
77
unsigned char HoehenReglerAktiv = 0;
106 salvo 78
static int SignalSchlecht = 0;
79
 
1 ingob 80
float GyroFaktor;
81
float IntegralFaktor;
82
 
83
volatile int  DiffNick,DiffRoll;
84
int  Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0;
85
volatile unsigned char Motor_Vorne,Motor_Hinten,Motor_Rechts,Motor_Links, Count;
86
unsigned char MotorWert[5];
87
volatile unsigned char SenderOkay = 0;
88
int StickNick = 0,StickRoll = 0,StickGier = 0;
89
char MotorenEin = 0;
90
int HoehenWert = 0;
91
int SollHoehe = 0;
92
 
93
float Kp =  FAKTOR_P;
94
float Ki =  FAKTOR_I;
95
 
96
unsigned char Parameter_Luftdruck_D  = 48;      // Wert : 0-250
97
unsigned char Parameter_MaxHoehe     = 251;      // Wert : 0-250
98
unsigned char Parameter_Hoehe_P      = 16;      // Wert : 0-32
99
unsigned char Parameter_Hoehe_ACC_Wirkung = 58; // Wert : 0-250
100
unsigned char Parameter_KompassWirkung = 64;    // Wert : 0-250
101
unsigned char Parameter_Gyro_P = 50;            // Wert : 10-250
102
unsigned char Parameter_Gyro_I = 150;           // Wert : 0-250
103
unsigned char Parameter_Gier_P = 2;             // Wert : 1-20
104
unsigned char Parameter_I_Faktor = 10;          // Wert : 1-20
105
unsigned char Parameter_UserParam1 = 0;
106
unsigned char Parameter_UserParam2 = 0;
107
unsigned char Parameter_UserParam3 = 0;
108
unsigned char Parameter_UserParam4 = 0;
109
unsigned char Parameter_ServoNickControl = 100;
110
struct mk_param_struct EE_Parameter;
111
 
112
void Piep(unsigned char Anzahl)
113
{
114
 while(Anzahl--)
115
 {
116
  if(MotorenEin) return; //auf keinen Fall im Flug!
117
  beeptime = 100;
118
  Delay_ms(250);
119
 }
120
}
121
 
122
//############################################################################
123
//  Nullwerte ermitteln
124
void SetNeutral(void)
125
//############################################################################
126
{
127
    unsigned int timer;
128
        NeutralAccX = 0;
129
        NeutralAccY = 0;
130
        NeutralAccZ = 0;
131
    AdNeutralNick = 0; 
132
        AdNeutralRoll = 0;     
133
        AdNeutralGier = 0;
134
    CalibrierMittelwert();     
135
    timer = SetDelay(5);    
136
        while (!CheckDelay(timer));
137
        CalibrierMittelwert();
138
    if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
139
     {    
140
      if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
141
     }
142
    AdNeutralNick= abs(MesswertNick);  
143
        AdNeutralRoll= abs(MesswertRoll);      
144
        AdNeutralGier= abs(MesswertGier);
117 salvo 145
// Salvo 1.9.2007 ACC mit festen neutralwerten *****
146
        if (ACC_NEUTRAL_FIXED > 0)
147
        {
148
                NeutralAccX     = ACC_X_NEUTRAL;
149
                NeutralAccY     = ACC_Y_NEUTRAL;
150
//              NeutralAccZ     = ACC_Z_NEUTRAL;
151
        }
152
        else
153
        { // Automatisch bei Offsetabgleich ermitteln
154
        NeutralAccY = abs(Mittelwert_AccRoll) / ACC_AMPLIFY;
155
                NeutralAccX = abs(Mittelwert_AccNick) / ACC_AMPLIFY;
156
        }
157
 // Salvo End   
158
        NeutralAccZ = Aktuell_az;      
1 ingob 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;  
173
}
174
 
175
//############################################################################
176
// Bildet den Mittelwert aus den Messwerten
177
void Mittelwert(void)
178
//############################################################################
179
{      
180
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
181
    ANALOG_OFF;
182
        if(MessanzahlNick)    (MesswertNick = AccumulateNick / MessanzahlNick);
183
        if(MessanzahlRoll)    (MesswertRoll = AccumulateRoll / MessanzahlRoll);
184
        if(MessanzahlGier)    (MesswertGier = AccumulateGier / MessanzahlGier);
185
        if(messanzahl_AccNick) Mittelwert_AccNick = ((long)Mittelwert_AccNick * 7 + ((ACC_AMPLIFY * (long)accumulate_AccNick) / messanzahl_AccNick)) / 8L;
186
        if(messanzahl_AccRoll) Mittelwert_AccRoll = ((long)Mittelwert_AccRoll * 7 + ((ACC_AMPLIFY * (long)accumulate_AccRoll) / messanzahl_AccRoll)) / 8L;
187
        if(messanzahl_AccHoch) Mittelwert_AccHoch = ((long)Mittelwert_AccHoch * 7 + ((long)accumulate_AccHoch) / messanzahl_AccHoch) / 8L;
188
    AccumulateNick = 0;   MessanzahlNick = 0;
189
    AccumulateRoll = 0;   MessanzahlRoll = 0;
190
    AccumulateGier = 0;   MessanzahlGier = 0;
191
    accumulate_AccRoll = 0;messanzahl_AccRoll = 0;
192
    accumulate_AccNick = 0;messanzahl_AccNick = 0;
193
    accumulate_AccHoch = 0;messanzahl_AccHoch = 0;
194
    Integral_Gier  = Mess_Integral_Gier;
195
//    Integral_Gier2 = Mess_Integral_Gier2;
196
    IntegralNick = Mess_IntegralNick;
197
    IntegralRoll = Mess_IntegralRoll;
198
    IntegralNick2 = Mess_IntegralNick2;
199
    IntegralRoll2 = Mess_IntegralRoll2;
200
    // ADC einschalten
201
    ANALOG_ON; 
202
 
203
//------------------------------------------------------------------------------
204
    if(MesswertNick > 200)  MesswertNick += 4 * (MesswertNick - 200);
205
    else                                         
206
    if(MesswertNick < -200) MesswertNick += 4 * (MesswertNick + 200);
207
 
208
    if(MesswertRoll > 200)  MesswertRoll += 4 * (MesswertRoll - 200);
209
    else                                         
210
    if(MesswertRoll < -200) MesswertRoll += 4 * (MesswertRoll + 200);
211
//------------------------------------------------------------------------------
212
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
213
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
214
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
215
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
216
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
217
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
218
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
219
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
220
}
221
 
222
//############################################################################
223
// Messwerte beim Ermitteln der Nullage
224
void CalibrierMittelwert(void)
225
//############################################################################
226
{                
227
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
228
        ANALOG_OFF;
229
    if(MessanzahlNick)    (MesswertNick = AccumulateNick / MessanzahlNick);
230
        if(MessanzahlRoll)    (MesswertRoll = AccumulateRoll / MessanzahlRoll);
231
        if(MessanzahlGier)    (MesswertGier = AccumulateGier / MessanzahlGier);
232
        if(messanzahl_AccNick) Mittelwert_AccNick = ((ACC_AMPLIFY * (long)accumulate_AccNick) / messanzahl_AccNick);
233
        if(messanzahl_AccRoll) Mittelwert_AccRoll = (ACC_AMPLIFY * (long)accumulate_AccRoll) / messanzahl_AccRoll;
234
        if(messanzahl_AccHoch) Mittelwert_AccHoch = ((long)accumulate_AccHoch) / messanzahl_AccHoch;
235
    AccumulateNick = 0;   MessanzahlNick = 0;
236
    AccumulateRoll = 0;   MessanzahlRoll = 0;
237
    AccumulateGier = 0;   MessanzahlGier = 0;
238
    accumulate_AccRoll = 0;messanzahl_AccRoll = 0;
239
    accumulate_AccNick = 0;messanzahl_AccNick = 0;
240
    accumulate_AccHoch = 0;messanzahl_AccHoch = 0;
241
    // ADC einschalten
242
    ANALOG_ON; 
243
    if(Poti1 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]] + 110 && Poti1) Poti1--;
244
    if(Poti2 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]] + 110 && Poti2) Poti2--;
245
    if(Poti3 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]] + 110 && Poti3) Poti3--;
246
    if(Poti4 < PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]] + 110 && Poti4) Poti4--;
247
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
248
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
249
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
250
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
251
}
252
 
253
//############################################################################
254
// Senden der Motorwerte per I2C-Bus
255
void SendMotorData(void)
256
//############################################################################
257
{
258
    if(MOTOR_OFF || !MotorenEin)
259
        {
260
        Motor_Hinten = 0;
261
        Motor_Vorne = 0;
262
        Motor_Rechts = 0;
263
        Motor_Links = 0;
264
        if(MotorTest[0]) Motor_Vorne = MotorTest[0];
265
        if(MotorTest[1]) Motor_Hinten = MotorTest[1];
266
        if(MotorTest[2]) Motor_Links = MotorTest[2];
267
        if(MotorTest[3]) Motor_Rechts = MotorTest[3];
268
        }
269
 
270
    DebugOut.Analog[12] = Motor_Vorne;
271
    DebugOut.Analog[13] = Motor_Hinten;
272
    DebugOut.Analog[14] = Motor_Links;
273
    DebugOut.Analog[15] = Motor_Rechts;  
274
 
275
    //Start I2C Interrupt Mode
276
    twi_state = 0;
277
    motor = 0;
278
    i2c_start();
279
}
280
 
281
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
282
// + Konstanten 
283
// + 0-250 -> normale Werte
284
// + 251 -> Poti1
285
// + 252 -> Poti2
286
// + 253 -> Poti3
287
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
288
void DefaultKonstanten1(void)
289
{
290
 EE_Parameter.Kanalbelegung[K_NICK]  = 1;
291
 EE_Parameter.Kanalbelegung[K_ROLL]  = 2;
292
 EE_Parameter.Kanalbelegung[K_GAS]   = 3;
293
 EE_Parameter.Kanalbelegung[K_GIER]  = 4;
294
 EE_Parameter.Kanalbelegung[K_POTI1] = 5;
295
 EE_Parameter.Kanalbelegung[K_POTI2] = 6;
296
 EE_Parameter.Kanalbelegung[K_POTI3] = 7;
297
 EE_Parameter.Kanalbelegung[K_POTI4] = 8;
298
 EE_Parameter.GlobalConfig = 0;//CFG_HOEHENREGELUNG | /*CFG_HOEHEN_SCHALTER |*/ CFG_KOMPASS_AKTIV | CFG_KOMPASS_FIX;//0x01;    
299
 EE_Parameter.Hoehe_MinGas = 30;
300
 EE_Parameter.MaxHoehe     = 251;     // Wert : 0-32   251 -> Poti1
301
 EE_Parameter.Hoehe_P      = 10;      // Wert : 0-32
302
 EE_Parameter.Luftdruck_D  = 70;      // Wert : 0-250
303
 EE_Parameter.Hoehe_ACC_Wirkung = 30; // Wert : 0-250
304
 EE_Parameter.Hoehe_Verstaerkung = 2; // Wert : 0-50
305
 EE_Parameter.Stick_P = 4; //2           // Wert : 1-6
306
 EE_Parameter.Stick_D = 8; //8           // Wert : 0-64
307
 EE_Parameter.Gier_P = 16;            // Wert : 1-20
308
 EE_Parameter.Gas_Min = 15;            // Wert : 0-32
309
 EE_Parameter.Gas_Max = 250;          // Wert : 33-250
310
 EE_Parameter.GyroAccFaktor = 26;     // Wert : 1-64
116 salvo 311
 EE_Parameter.KompassWirkung = 64;    // Wert : 0-250
1 ingob 312
 EE_Parameter.Gyro_P = 120; //80          // Wert : 0-250
313
 EE_Parameter.Gyro_I = 150;               // Wert : 0-250
116 salvo 314
 EE_Parameter.UnterspannungsWarnung = 100; // Wert : 0-250
1 ingob 315
 EE_Parameter.NotGas = 35;                // Wert : 0-250     // Gaswert bei Empangsverlust
316
 EE_Parameter.NotGasZeit = 20;            // Wert : 0-250     // Zeit bis auf NotGas geschaltet wird, wg. Rx-Problemen
317
 EE_Parameter.UfoAusrichtung = 0;         // X oder + Formation
318
 EE_Parameter.I_Faktor = 5;
319
 EE_Parameter.UserParam1 = 0;             //zur freien Verwendung
320
 EE_Parameter.UserParam2 = 0;             //zur freien Verwendung
321
 EE_Parameter.UserParam3 = 0;             //zur freien Verwendung
322
 EE_Parameter.UserParam4 = 0;             //zur freien Verwendung
323
 EE_Parameter.ServoNickControl = 100;     // Wert : 0-250     // Stellung des Servos
324
 EE_Parameter.ServoNickComp = 40;         // Wert : 0-250     // Einfluss Gyro/Servo
325
 EE_Parameter.ServoNickCompInvert = 0;    // Wert : 0-250     // Richtung Einfluss Gyro/Servo
326
 EE_Parameter.ServoNickMin = 50;           // Wert : 0-250     // Anschlag
327
 EE_Parameter.ServoNickMax = 150;         // Wert : 0-250     // Anschlag
328
 EE_Parameter.ServoNickRefresh = 5;
329
 memcpy(EE_Parameter.Name, "Normal\0", 12);  
330
}
331
 
332
void DefaultKonstanten2(void)
333
{
334
 EE_Parameter.Kanalbelegung[K_NICK]  = 1;
335
 EE_Parameter.Kanalbelegung[K_ROLL]  = 2;
336
 EE_Parameter.Kanalbelegung[K_GAS]   = 3;
337
 EE_Parameter.Kanalbelegung[K_GIER]  = 4;
338
 EE_Parameter.Kanalbelegung[K_POTI1] = 5;
339
 EE_Parameter.Kanalbelegung[K_POTI2] = 6;
340
 EE_Parameter.Kanalbelegung[K_POTI3] = 7;
341
 EE_Parameter.GlobalConfig = 0;//CFG_HOEHENREGELUNG | /*CFG_HOEHEN_SCHALTER |*/ CFG_KOMPASS_AKTIV;//0x01;    
342
 EE_Parameter.Hoehe_MinGas = 30;
343
 EE_Parameter.MaxHoehe     = 251;     // Wert : 0-32   251 -> Poti1
344
 EE_Parameter.Hoehe_P      = 10;      // Wert : 0-32
345
 EE_Parameter.Luftdruck_D  = 50;      // Wert : 0-250
346
 EE_Parameter.Hoehe_ACC_Wirkung = 50; // Wert : 0-250
347
 EE_Parameter.Hoehe_Verstaerkung = 2; // Wert : 0-50
348
 EE_Parameter.Stick_P = 4; //2           // Wert : 1-6
349
 EE_Parameter.Stick_D = 0; //8           // Wert : 0-64
350
 EE_Parameter.Gier_P = 16;            // Wert : 1-20
351
 EE_Parameter.Gas_Min = 15;            // Wert : 0-32
352
 EE_Parameter.Gas_Max = 250;          // Wert : 33-250
353
 EE_Parameter.GyroAccFaktor = 26;     // Wert : 1-64
116 salvo 354
 EE_Parameter.KompassWirkung = 64;    // Wert : 0-250
1 ingob 355
 EE_Parameter.Gyro_P = 175; //80           // Wert : 0-250
356
 EE_Parameter.Gyro_I = 175;           // Wert : 0-250
116 salvo 357
 EE_Parameter.UnterspannungsWarnung = 100;  // Wert : 0-250
1 ingob 358
 EE_Parameter.NotGas = 35;                 // Wert : 0-250     // Gaswert bei Empangsverlust
359
 EE_Parameter.NotGasZeit = 20;             // Wert : 0-250     // Zeit bis auf NotGas geschaltet wird, wg. Rx-Problemen
360
 EE_Parameter.UfoAusrichtung = 0;         // X oder + Formation
361
 EE_Parameter.I_Faktor = 5;
362
 EE_Parameter.UserParam1 = 0;   //zur freien Verwendung
363
 EE_Parameter.UserParam2 = 0;   //zur freien Verwendung
364
 EE_Parameter.UserParam3 = 0;   //zur freien Verwendung
365
 EE_Parameter.UserParam4 = 0;   //zur freien Verwendung
366
 EE_Parameter.UserParam3 = 0;             //zur freien Verwendung
367
 EE_Parameter.UserParam4 = 0;             //zur freien Verwendung
368
 EE_Parameter.ServoNickControl = 100;     // Wert : 0-250     // Stellung des Servos
369
 EE_Parameter.ServoNickComp = 40;         // Wert : 0-250     // Einfluss Gyro/Servo
370
 EE_Parameter.ServoNickCompInvert = 0;    // Wert : 0-250     // Richtung Einfluss Gyro/Servo
371
 EE_Parameter.ServoNickMin = 50;           // Wert : 0-250     // Anschlag
372
 EE_Parameter.ServoNickMax = 150;         // Wert : 0-250     // Anschlag
373
 EE_Parameter.ServoNickRefresh = 5;
374
 memcpy(EE_Parameter.Name, "Kamera\0", 12);  
375
}
376
 
377
 
378
//############################################################################
379
// Trägt ggf. das Poti als Parameter ein
380
void ParameterZuordnung(void)
381
//############################################################################
382
{
383
 
384
 #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;}
385
 CHK_POTI(Parameter_MaxHoehe,EE_Parameter.MaxHoehe,0,255);
386
 CHK_POTI(Parameter_Luftdruck_D,EE_Parameter.Luftdruck_D,0,100);
387
 CHK_POTI(Parameter_Hoehe_P,EE_Parameter.Hoehe_P,0,100);
388
 CHK_POTI(Parameter_Hoehe_ACC_Wirkung,EE_Parameter.Hoehe_ACC_Wirkung,0,255);
389
 CHK_POTI(Parameter_KompassWirkung,EE_Parameter.KompassWirkung,0,255);
390
 CHK_POTI(Parameter_Gyro_P,EE_Parameter.Gyro_P,10,255);
391
 CHK_POTI(Parameter_Gyro_I,EE_Parameter.Gyro_I,0,255);
392
 CHK_POTI(Parameter_I_Faktor,EE_Parameter.I_Faktor,0,255);
393
 CHK_POTI(Parameter_UserParam1,EE_Parameter.UserParam1,0,255);
394
 CHK_POTI(Parameter_UserParam2,EE_Parameter.UserParam2,0,255);
395
 CHK_POTI(Parameter_UserParam3,EE_Parameter.UserParam3,0,255);
396
 CHK_POTI(Parameter_UserParam4,EE_Parameter.UserParam4,0,255);
397
 
398
   unsigned char ServoNickComp;          // Wert : 0-250     // Einfluss Gyro/Servo
399
   unsigned char ServoNickCompInvert;    // Wert : 0-250     // Richtung Einfluss Gyro/Servo
400
   unsigned char ServoNickMin;           // Wert : 0-250     // Anschlag
401
   unsigned char ServoNickMax;           // Wert : 0-250     // Anschlag
402
 
403
 
404
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
405
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
406
 CHK_POTI(Parameter_ServoNickControl,EE_Parameter.ServoNickControl,0,255);
407
 
408
 Ki = (float) Parameter_I_Faktor * 0.0001;
409
 MAX_GAS = EE_Parameter.Gas_Max;
410
 MIN_GAS = EE_Parameter.Gas_Min;
411
}
412
 
413
 
414
//############################################################################
415
//
416
void MotorRegler(void)
417
//############################################################################
418
{
419
         int motorwert,pd_ergebnis,h,tmp_int;
420
         int GierMischanteil,GasMischanteil;
421
     static long SummeNick=0,SummeRoll=0;
422
     static long sollGier = 0,tmp_long,tmp_long2;
423
     static int IntegralFehlerNick = 0;
424
     static int IntegralFehlerRoll = 0;
425
         static unsigned int RcLostTimer;
426
         static unsigned char delay_neutral = 0;
427
         static unsigned char delay_einschalten = 0,delay_ausschalten = 0;
428
         static unsigned int  modell_fliegt = 0;
429
     static int hoehenregler = 0;
430
     static char TimerWerteausgabe = 0;
431
     static char NeueKompassRichtungMerken = 0;
432
        Mittelwert();
433
 
434
    GRN_ON;
435
 
436
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
437
// Gaswert ermitteln
438
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
439
        GasMischanteil = PPM_in[EE_Parameter.Kanalbelegung[K_GAS]] + 120;
440
    if(GasMischanteil < 0) GasMischanteil = 0;
441
 
442
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
443
// Emfang schlecht
444
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
445
   if(SenderOkay < 100)
446
        {
447
        if(!PcZugriff)  beeptime = 500;
448
        if(RcLostTimer) RcLostTimer--;
449
        else
450
         {
451
          MotorenEin = 0;
452
          Notlandung = 0;
453
         }
454
        ROT_ON;
455
        if(modell_fliegt > 2000)  // wahrscheinlich in der Luft --> langsam absenken
456
            {
457
            GasMischanteil = EE_Parameter.NotGas;
458
            Notlandung = 1;
459
            PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] = 0;
460
            PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] = 0;
461
            PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] = 0;
462
/*          Poti1 = 65;
463
            Poti2 = 48;
464
            Poti3 = 0;
465
*/          }
466
         else MotorenEin = 0;
467
        }
468
        else
469
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
470
// Emfang gut
471
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
472
        if(SenderOkay > 140)
473
            {
474
            Notlandung = 0;
475
            RcLostTimer = EE_Parameter.NotGasZeit * 50;
476
            if(GasMischanteil > 40)
477
                {
478
                if(modell_fliegt < 0xffff) modell_fliegt++;
479
                }
480
            if((modell_fliegt < 200) || (GasMischanteil < 40))
481
                {
482
                SummeNick = 0;
483
                SummeRoll = 0;
484
                Mess_Integral_Gier = 0;
485
                Mess_Integral_Gier2 = 0;
486
                }
487
            if((GasMischanteil > 200) && MotorenEin == 0)
488
                {
489
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
490
// auf Nullwerte kalibrieren
491
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
492
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)  // Neutralwerte
493
                    {
494
                    unsigned char setting;
495
                    if(++delay_neutral > 200)  // nicht sofort
496
                        {
497
                        GRN_OFF;
498
                        SetNeutral();
499
                        MotorenEin = 0;
500
                        delay_neutral = 0;
501
                        modell_fliegt = 0;
502
                        if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70 || abs(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]) > 70)
503
                        {
504
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 1;
505
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] > 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 2;
506
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] < 70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 3;
507
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > 70) setting = 4;
508
                         if(PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] <-70 && PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < 70) setting = 5;
509
                         eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACTIVE_SET], setting);  // aktiven Datensatz merken
510
                        }
511
                            ReadParameterSet(GetActiveParamSetNumber(), (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE);
512
                        Piep(GetActiveParamSetNumber());
513
                        if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung aktiviert?
514
                          {
515
                             if((MessLuftdruck > 950) || (MessLuftdruck < 750)) SucheLuftruckOffset();
516
                          }  
517
                        }
518
                    }
519
                 else delay_neutral = 0;
520
                }
521
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
522
// Gas ist unten
523
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
524
            if(GasMischanteil < 35)
525
                {
526
                // Starten
527
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] < -75)
528
                    {
529
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
530
// Einschalten
531
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
532
                    if(++delay_einschalten > 200)
533
                        {
534
                        delay_einschalten = 200;
535
                        modell_fliegt = 1;
536
                        MotorenEin = 1;
537
                        sollGier = 0;
538
                        Mess_Integral_Gier = 0;
539
                        Mess_Integral_Gier2 = 0;
540
                        Mess_IntegralNick = 0;
541
                        Mess_IntegralRoll = 0;
542
                        Mess_IntegralNick2 = IntegralNick;
543
                        Mess_IntegralRoll2 = IntegralRoll;
544
                        SummeNick = 0;
545
                        SummeRoll = 0;
546
                        }          
547
                    }  
548
                    else delay_einschalten = 0;
549
                //Auf Neutralwerte setzen
550
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
551
// Auschalten
552
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
553
                if(PPM_in[EE_Parameter.Kanalbelegung[K_GIER]] > 75)
554
                    {
555
                    if(++delay_ausschalten > 200)  // nicht sofort
556
                        {
557
                        MotorenEin = 0;
558
                        delay_ausschalten = 200;
559
                        modell_fliegt = 0;
560
                        }
561
                    }
562
                else delay_ausschalten = 0;
563
                }
564
            }
565
 
566
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
567
// neue Werte von der Funke
568
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
569
 if(!NewPpmData-- || Notlandung)  
570
  {
571
    ParameterZuordnung();
572
    StickNick = PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_P;
573
    StickNick += PPM_diff[EE_Parameter.Kanalbelegung[K_NICK]] * EE_Parameter.Stick_D;
574
    StickRoll = PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_P;
575
    StickRoll += PPM_diff[EE_Parameter.Kanalbelegung[K_ROLL]] * EE_Parameter.Stick_D;
576
    StickGier = -PPM_in[EE_Parameter.Kanalbelegung[K_GIER]];
577
 
578
    GyroFaktor     = ((float)Parameter_Gyro_P + 10.0) / 256.0;
579
    IntegralFaktor = ((float) Parameter_Gyro_I) / 44000;
580
 
581
    if(EE_Parameter.GlobalConfig & CFG_HEADING_HOLD) IntegralFaktor =  0;
582
    if(GyroFaktor < 0) GyroFaktor = 0;
583
    if(IntegralFaktor < 0) IntegralFaktor = 0;
584
  }
585
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
586
// Bei Empfangsausfall im Flug 
587
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
588
   if(Notlandung)
589
    {
590
     StickGier = 0;
591
     StickNick = 0;
592
     StickRoll = 0;
593
     GyroFaktor  = 0.1;
594
     IntegralFaktor = 0.005;
595
    }  
596
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
597
// Gyro-Drift kompensieren
598
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
599
#define DRIFT_FAKTOR 3
600
    if(ZaehlMessungen >= 1000 / DRIFT_FAKTOR)
601
        {
602
        IntegralFehlerNick = IntegralNick2 - IntegralNick;
603
        IntegralFehlerRoll = IntegralRoll2 - IntegralRoll;
604
        ZaehlMessungen = 0;
605
        if(IntegralFehlerNick > 500/DRIFT_FAKTOR)   AdNeutralNick++;
606
        if(IntegralFehlerNick < -500/DRIFT_FAKTOR)  AdNeutralNick--;
607
        if(IntegralFehlerRoll > 500/DRIFT_FAKTOR)   AdNeutralRoll++;
608
        if(IntegralFehlerRoll < -500/DRIFT_FAKTOR)  AdNeutralRoll--;
117 salvo 609
// Salvo 31.8.2007 Abgleich Giergyro nur wenn Kompass aktiv und ok ist ***********************
610
// Ohne Kompass wird die Gyrodrift durch die Driftkompensation nur verschlimmert
611
// Ohne Driftkompensation ist die Gierachse wesentlich stabiler
116 salvo 612
                if ((EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV) && (!SignalSchlecht))
106 salvo 613
                {
614
         if(Mess_Integral_Gier2 > 500/DRIFT_FAKTOR)  AdNeutralGier--;        
615
         if(Mess_Integral_Gier2 <-500/DRIFT_FAKTOR)  AdNeutralGier++;  
616
                }  
617
                else
618
                {
619
                  Mess_Integral_Gier2 = 0;     
620
                }
621
// Salvo End ***********************
1 ingob 622
    ANALOG_OFF; // ADC ausschalten, damit die Werte sich nicht während der Berechnung ändern
623
        Mess_IntegralNick2 = IntegralNick;
624
        Mess_IntegralRoll2 = IntegralRoll;
625
        Mess_Integral_Gier2 = Integral_Gier;
626
    ANALOG_ON;  // ADC einschalten
627
        }
628
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
629
// Integrale auf ACC-Signal abgleichen
630
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
631
    tmp_long = (long)(IntegralNick / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccNick) / 16;  
632
    tmp_long2 = (long)(IntegralRoll / EE_Parameter.GyroAccFaktor - (long)Mittelwert_AccRoll) / 16;  
633
#define AUSGLEICH 500
634
    if(tmp_long >  AUSGLEICH)  tmp_long  = AUSGLEICH;
635
    if(tmp_long < -AUSGLEICH)  tmp_long  =-AUSGLEICH;
636
    if(tmp_long2 > AUSGLEICH)  tmp_long2 = AUSGLEICH;
637
    if(tmp_long2 <-AUSGLEICH)  tmp_long2 =-AUSGLEICH;
638
 ANALOG_OFF; // ADC ausschalten, damit die Werte sich nicht während der Berechnung ändern
639
    Mess_IntegralNick -= tmp_long;
640
    Mess_IntegralRoll -= tmp_long2;
641
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
642
//  Gieren
643
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
644
    sollGier = StickGier;
645
    if(abs(StickGier) > 35)
646
     {
647
      if(!(EE_Parameter.GlobalConfig & CFG_KOMPASS_FIX)) NeueKompassRichtungMerken = 1;
648
     }
649
    tmp_int = EE_Parameter.Gier_P * (sollGier * abs(sollGier)) / 256; // expo
650
    Mess_Integral_Gier -= tmp_int;  
651
    if(Mess_Integral_Gier > 30000) Mess_Integral_Gier = 30000;  // begrenzen
652
    if(Mess_Integral_Gier <-30000) Mess_Integral_Gier =-30000;
104 salvo 653
// Salvo Gewolltes Gieren ignorieren 30.8.2007 **********************
654
    Mess_Integral_Gier2  -= tmp_int;  
655
// Salvo End *************************
1 ingob 656
 ANALOG_ON;     // ADC einschalten
657
 
658
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
659
//  Kompass
660
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
661
 //KompassValue = 12;
662
    if(KompassValue && (EE_Parameter.GlobalConfig & CFG_KOMPASS_AKTIV))
663
     {
664
       int w,v;
665
       w = abs(IntegralNick /512); // mit zunehmender Neigung den Einfluss drosseln
666
       v = abs(IntegralRoll /512);
667
       if(v > w) w = v; // grösste Neigung ermitteln
109 salvo 668
       if(w < 20 && NeueKompassRichtungMerken && !SignalSchlecht)    
1 ingob 669
        {
670
         KompassStartwert = KompassValue;
671
         NeueKompassRichtungMerken = 0;
672
        }
673
       w = (w * Parameter_KompassWirkung) / 64;           // auf die Wirkung normieren
674
       w = Parameter_KompassWirkung - w;                  // Wirkung ggf drosseln
675
       if(w > 0)
676
        {
677
          ANALOG_OFF; // ADC ausschalten, damit die Werte sich nicht während der Berechnung ändern
104 salvo 678
 
679
// Salvo 30.8.2007 Winkelbegrenzung **********************
680
         if ((!SignalSchlecht) )
681
                 {
682
                        if (abs(KompassRichtung) < 135 )
683
                        {
684
                                Mess_Integral_Gier += (KompassRichtung * w) / 32;  // nach Kompass ausrichten
685
                        }
686
                 }
687
 // Salvo End *************************
688
 
1 ingob 689
          ANALOG_ON;  // ADC einschalten
690
          if(SignalSchlecht) SignalSchlecht--;
691
        }  
692
        else SignalSchlecht = 500; // so lange das Signal taub stellen --> ca. 1 sek
693
     }
694
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
695
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
696
 
697
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
698
//  Debugwerte zuordnen
699
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
700
DebugOut.Sekunden++;
701
  if(!TimerWerteausgabe--)
702
   {
703
    TimerWerteausgabe = 49;
704
//    DebugOut.Analog[0] = MesswertNick;
705
//    DebugOut.Analog[1] = MesswertRoll;
706
//    DebugOut.Analog[2] = MesswertGier;
707
    DebugOut.Analog[0] = IntegralNick / EE_Parameter.GyroAccFaktor;
708
    DebugOut.Analog[1] = IntegralRoll / EE_Parameter.GyroAccFaktor;
709
    DebugOut.Analog[2] = Mittelwert_AccNick;
710
    DebugOut.Analog[3] = Mittelwert_AccRoll;
711
    DebugOut.Analog[4] = MesswertGier;
712
    DebugOut.Analog[5] = HoehenWert;
713
    DebugOut.Analog[6] = (Mess_Integral_Hoch / 512);
714
    DebugOut.Analog[7] = GasMischanteil;
715
    DebugOut.Analog[8] = KompassValue;
106 salvo 716
    DebugOut.Analog[9] = Mess_Integral_Gier2;
1 ingob 717
//    DebugOut.Analog[9] = SollHoehe;
718
//    DebugOut.Analog[10] = Mess_Integral_Gier / 128;
719
//    DebugOut.Analog[11] = KompassStartwert;
720
//    DebugOut.Analog[10] = Parameter_Gyro_I;    
721
//    DebugOut.Analog[10] = EE_Parameter.Gyro_I;    
722
//    DebugOut.Analog[9] = KompassRichtung;    
723
//    DebugOut.Analog[10] = GasMischanteil;
724
//    DebugOut.Analog[3] = HoeheD * 32;
725
//    DebugOut.Analog[4] = hoehenregler;
726
  }
727
 
728
 
729
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
730
//  Drehgeschwindigkeit und -winkel zu einem Istwert zusammenfassen
731
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
732
    MesswertNick = IntegralNick * IntegralFaktor + MesswertNick * GyroFaktor;
733
    MesswertRoll = IntegralRoll * IntegralFaktor + MesswertRoll * GyroFaktor;
734
    MesswertGier = MesswertGier * (GyroFaktor/2) + Integral_Gier * IntegralFaktor;
735
 
736
    // Maximalwerte abfangen
737
    #define MAX_SENSOR  2048
738
    if(MesswertNick >  MAX_SENSOR) MesswertNick =  MAX_SENSOR;
739
    if(MesswertNick < -MAX_SENSOR) MesswertNick = -MAX_SENSOR;
740
    if(MesswertRoll >  MAX_SENSOR) MesswertRoll =  MAX_SENSOR;
741
    if(MesswertRoll < -MAX_SENSOR) MesswertRoll = -MAX_SENSOR;
742
    if(MesswertGier >  MAX_SENSOR) MesswertGier =  MAX_SENSOR;
743
    if(MesswertGier < -MAX_SENSOR) MesswertGier = -MAX_SENSOR;
744
 
745
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
746
// Höhenregelung
747
// Die Höhenregelung schwächt lediglich das Gas ab, erhöht es allerdings nicht
748
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
749
//OCR0B = 180 - (Poti1 + 120) / 4;
750
//DruckOffsetSetting = OCR0B;
751
 if((EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG))  // Höhenregelung
752
  {
753
    int tmp_int;
754
    if(EE_Parameter.GlobalConfig & CFG_HOEHEN_SCHALTER)  // Regler wird über Schalter gesteuert
755
    {
756
     if(Parameter_MaxHoehe < 50)
757
      {
758
       SollHoehe = HoehenWert - 20;  // Parameter_MaxHoehe ist der PPM-Wert des Schalters
759
       HoehenReglerAktiv = 0;
760
      }
761
      else  
762
        HoehenReglerAktiv = 1;
763
    }
764
    else
765
    {
766
     SollHoehe = Parameter_MaxHoehe * EE_Parameter.Hoehe_Verstaerkung - 20;
767
     HoehenReglerAktiv = 1;
768
    }
769
 
770
    if(Notlandung) SollHoehe = 0;
771
    h = HoehenWert;
772
    if((h > SollHoehe) && HoehenReglerAktiv)      // zu hoch --> drosseln
773
     {      h = ((h - SollHoehe) * (int) Parameter_Hoehe_P) / 16; // Differenz bestimmen --> P-Anteil
774
      h = GasMischanteil - h;         // vom Gas abziehen
775
      h -= (HoeheD * Parameter_Luftdruck_D)/8;    // D-Anteil
776
      tmp_int = ((Mess_Integral_Hoch / 512) * (signed long) Parameter_Hoehe_ACC_Wirkung) / 32;
777
      if(tmp_int > 50) tmp_int = 50;
778
      else if(tmp_int < -50) tmp_int = -50;
779
      h -= tmp_int;
780
      hoehenregler = (hoehenregler*15 + h) / 16;      
781
      if(hoehenregler < EE_Parameter.Hoehe_MinGas) // nicht unter MIN
782
       {
783
         if(GasMischanteil >= EE_Parameter.Hoehe_MinGas) hoehenregler = EE_Parameter.Hoehe_MinGas;
784
         if(GasMischanteil < EE_Parameter.Hoehe_MinGas) hoehenregler = GasMischanteil;
785
       }  
786
      if(hoehenregler > GasMischanteil) hoehenregler = GasMischanteil; // nicht mehr als Gas
787
      GasMischanteil = hoehenregler;
788
     }
789
  }
790
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
791
// + Mischer und PI-Regler
792
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
793
 
794
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
795
// Gier-Anteil
796
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
797
        GierMischanteil = MesswertGier - sollGier;     // Regler für Gier
798
    if(GierMischanteil > 100)  GierMischanteil = 100;
799
    if(GierMischanteil < -100) GierMischanteil = -100;
800
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
801
// Nick-Achse
802
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
803
    DiffNick = Kp * (MesswertNick - (StickNick - GPS_Nick));    // Differenz bestimmen
804
    SummeNick += DiffNick;                                   // I-Anteil
805
    if(SummeNick > 0) SummeNick-= (abs(SummeNick)/256 + 1); else SummeNick += abs(SummeNick)/256 + 1;
806
    if(SummeNick >  16000) SummeNick =  16000;
807
    if(SummeNick < -16000) SummeNick = -16000;
808
    pd_ergebnis = DiffNick + Ki * SummeNick; // PI-Regler für Nick                                      
809
    // Motor Vorn
810
    motorwert = GasMischanteil + pd_ergebnis + GierMischanteil;   // Mischer
811
        if ((motorwert < 0) | (GasMischanteil < 10))    motorwert = 0;
812
        else if(motorwert > MAX_GAS)        motorwert = MAX_GAS;
813
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;       
814
        Motor_Vorne = motorwert;           
815
    // Motor Heck
816
        motorwert = GasMischanteil - pd_ergebnis + GierMischanteil;
817
        if ((motorwert < 0) | (GasMischanteil < 10)) motorwert = 0;
818
        else if(motorwert > MAX_GAS)        motorwert = MAX_GAS;
819
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;
820
        Motor_Hinten = motorwert;              
821
 
822
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
823
// Roll-Achse
824
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                
825
        DiffRoll = Kp * (MesswertRoll - (StickRoll  - GPS_Roll));       // Differenz bestimmen
826
        SummeRoll += DiffRoll;                                                              // I-Anteil
827
    if(SummeRoll > 0) SummeRoll-= (abs(SummeRoll)/256 + 1); else SummeRoll += abs(SummeRoll)/256 + 1;
828
    if(SummeRoll >  16000) SummeRoll =  16000;
829
    if(SummeRoll < -16000) SummeRoll = -16000;
830
    pd_ergebnis = DiffRoll + Ki * SummeRoll;    // PI-Regler für Roll
831
    // Motor Links
832
    motorwert = GasMischanteil + pd_ergebnis - GierMischanteil;
833
        if ((motorwert < 0) | (GasMischanteil < 10)) motorwert = 0;
834
        else if(motorwert > MAX_GAS)            motorwert = MAX_GAS;
835
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;
836
        Motor_Links = motorwert;               
837
    // Motor Rechts
838
        motorwert = GasMischanteil - pd_ergebnis - GierMischanteil;
839
        if ((motorwert < 0) | (GasMischanteil < 10))    motorwert = 0;
840
        else if(motorwert > MAX_GAS)            motorwert = MAX_GAS;
841
        if (motorwert < MIN_GAS)            motorwert = MIN_GAS;       
842
        Motor_Rechts = motorwert;
843
   // +++++++++++++++++++++++++++++++++++++++++++++++
844
 
845
}
846