Subversion Repositories FlightCtrl

Rev

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