Subversion Repositories FlightCtrl

Rev

Rev 309 | Details | Compare with Previous | Last modification | View Log | RSS feed

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