Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | ingob | 1 | /*####################################################################################### |
2 | Flight Control |
||
3 | #######################################################################################*/ |
||
4 | |||
5 | #ifndef _FC_H |
||
6 | #define _FC_H |
||
7 | |||
173 | holgerb | 8 | extern volatile unsigned int I2CTimeout; |
1 | ingob | 9 | extern unsigned char Sekunde,Minute; |
10 | extern volatile long IntegralNick,IntegralNick2; |
||
11 | extern volatile long IntegralRoll,IntegralRoll2; |
||
12 | extern volatile long Mess_IntegralNick,Mess_IntegralNick2; |
||
13 | extern volatile long Mess_IntegralRoll,Mess_IntegralRoll2; |
||
396 | hbuss | 14 | extern volatile long IntegralAccNick,IntegralAccRoll; |
1 | ingob | 15 | extern volatile long Mess_Integral_Hoch; |
16 | extern volatile long Integral_Gier,Mess_Integral_Gier,Mess_Integral_Gier2; |
||
17 | extern volatile int KompassValue; |
||
18 | extern volatile int KompassStartwert; |
||
19 | extern volatile int KompassRichtung; |
||
20 | extern int HoehenWert; |
||
21 | extern int SollHoehe; |
||
22 | extern volatile int MesswertNick,MesswertRoll,MesswertGier; |
||
23 | extern volatile int AdNeutralNick,AdNeutralRoll,AdNeutralGier, Mittelwert_AccNick, Mittelwert_AccRoll; |
||
24 | extern volatile int NeutralAccX, NeutralAccY,Mittelwert_AccHoch; |
||
25 | extern volatile float NeutralAccZ; |
||
396 | hbuss | 26 | extern long Umschlag180Nick, Umschlag180Roll; |
492 | hbuss | 27 | extern signed int ExternStickNick,ExternStickRoll,ExternStickGier; |
513 | hbuss | 28 | extern unsigned char Parameter_UserParam1,Parameter_UserParam2,Parameter_UserParam3,Parameter_UserParam4,Parameter_UserParam5,Parameter_UserParam6,Parameter_UserParam7,Parameter_UserParam8; |
1 | ingob | 29 | |
30 | void MotorRegler(void); |
||
31 | void SendMotorData(void); |
||
32 | void CalibrierMittelwert(void); |
||
33 | void Mittelwert(void); |
||
34 | void SetNeutral(void); |
||
304 | ingob | 35 | void Piep(unsigned char Anzahl); |
1 | ingob | 36 | |
304 | ingob | 37 | extern unsigned char h,m,s; |
38 | extern volatile unsigned char Timeout ; |
||
39 | extern unsigned char CosinusNickWinkel, CosinusRollWinkel; |
||
40 | extern volatile long IntegralNick,IntegralNick2; |
||
41 | extern volatile long IntegralRoll,IntegralRoll2; |
||
42 | extern volatile long Integral_Gier; |
||
43 | extern volatile long Mess_IntegralNick,Mess_IntegralNick2; |
||
44 | extern volatile long Mess_IntegralRoll,Mess_IntegralRoll2; |
||
45 | extern volatile long Mess_Integral_Gier; |
||
46 | extern volatile int DiffNick,DiffRoll; |
||
685 | killagreg | 47 | extern int Poti1, Poti2, Poti3, Poti4; |
304 | ingob | 48 | extern volatile unsigned char Motor_Vorne,Motor_Hinten,Motor_Rechts,Motor_Links, Count; |
49 | extern unsigned char MotorWert[5]; |
||
50 | extern volatile unsigned char SenderOkay; |
||
51 | extern int StickNick,StickRoll,StickGier; |
||
52 | extern char MotorenEin; |
||
1 | ingob | 53 | |
499 | hbuss | 54 | |
1 | ingob | 55 | |
56 | extern unsigned char Parameter_Luftdruck_D; |
||
57 | extern unsigned char Parameter_MaxHoehe; |
||
58 | extern unsigned char Parameter_Hoehe_P; |
||
59 | extern unsigned char Parameter_Hoehe_ACC_Wirkung; |
||
60 | extern unsigned char Parameter_KompassWirkung; |
||
61 | extern unsigned char Parameter_Gyro_P; |
||
62 | extern unsigned char Parameter_Gyro_I; |
||
63 | extern unsigned char Parameter_Gier_P; |
||
64 | extern unsigned char Parameter_ServoNickControl; |
||
396 | hbuss | 65 | extern unsigned char Parameter_AchsKopplung1; |
66 | extern unsigned char Parameter_AchsGegenKopplung1; |
||
1 | ingob | 67 | |
396 | hbuss | 68 | |
1 | ingob | 69 | #endif //_FC_H |
70 |