Rev 124 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 124 | Rev 136 | ||
---|---|---|---|
Line 11... | Line 11... | ||
11 | #define ACC_X_NEUTRAL 518 // ADC Wandler Wert in Neutrallage (0g): Vom individuellen Sensor abhaengig |
11 | #define ACC_X_NEUTRAL 518 // ADC Wandler Wert in Neutrallage (0g): Vom individuellen Sensor abhaengig |
12 | #define ACC_Y_NEUTRAL 516 // ADC Wandler wert in Neutrallage (0g) |
12 | #define ACC_Y_NEUTRAL 516 // ADC Wandler wert in Neutrallage (0g) |
13 | #define ACC_Z_NEUTRAL 745 // ADC Wandler Wert in Neutrallage (1g) |
13 | #define ACC_Z_NEUTRAL 745 // ADC Wandler Wert in Neutrallage (1g) |
Line 14... | Line 14... | ||
14 | 14 | ||
- | 15 | #define ACC_WAAGRECHT_LIMIT 100 // Nick und Roll kleiner als dieser Wert gelten als kriterium fuer waagrechte Lage |
|
- | 16 | // Salvo End |
|
- | 17 | //Salvo 2.9.2007 Ersatzkompass: Gyroincrements/Grad als Defaultwert ***** |
|
- | 18 | // Laut Datenblatt sind die Werte ueber Zeit und Temperatur sehr stabil. |
|
Line 15... | Line 19... | ||
15 | #define ACC_WAAGRECHT_LIMIT 100 // Nick und Roll kleiner als dieser Wert gelten als kriterium fuer waagrechte Lage |
19 | #define GYROKOMP_INC_GRAD_DEFAULT 1250 // Gyroincrements/Grad als Defaultwert |
Line 16... | Line 20... | ||
16 | 20 | ||
17 | // Salvo End |
21 | // Salvo End |
Line 33... | Line 37... | ||
33 | extern volatile int AdNeutralNick,AdNeutralRoll,AdNeutralGier, Mittelwert_AccNick, Mittelwert_AccRoll; |
37 | extern volatile int AdNeutralNick,AdNeutralRoll,AdNeutralGier, Mittelwert_AccNick, Mittelwert_AccRoll; |
34 | extern volatile int NeutralAccX, NeutralAccY,Mittelwert_AccHoch; |
38 | extern volatile int NeutralAccX, NeutralAccY,Mittelwert_AccHoch; |
35 | extern volatile float NeutralAccZ; |
39 | extern volatile float NeutralAccZ; |
36 | //Salvo 2.9.2007 Ersatzkompass |
40 | //Salvo 2.9.2007 Ersatzkompass |
37 | extern volatile long GyroKomp_Int,GyroKomp_Int2; |
41 | extern volatile long GyroKomp_Int,GyroKomp_Int2; |
- | 42 | extern volatile int GyroKomp_Inc_Grad; |
|
- | 43 | extern volatile int GyroKomp_Value; // Der ermittelte Kompasswert aus Gyro und Magnetkompass |
|
- | 44 | ||
38 | // Salvo End |
45 | // Salvo End |
Line 39... | Line 46... | ||
39 | 46 | ||
40 | void MotorRegler(void); |
47 | void MotorRegler(void); |
41 | void SendMotorData(void); |
48 | void SendMotorData(void); |