Subversion Repositories FlightCtrl

Rev

Rev 744 | Rev 930 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 744 Rev 921
1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
// Testmodi
-
 
3
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
 
4
#define MOTOR_OFF       0
-
 
5
#define MOTOR_TEST      0
-
 
6
 
-
 
7
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
 
8
// Abstimmung
2
// Abstimmung
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
#define ACC_AMPLIFY    12
4
#define ACC_AMPLIFY    12
11
#define FAKTOR_P   1
5
#define FAKTOR_P   1
12
#define FAKTOR_I   0.0001
6
#define FAKTOR_I   0.0001
13
 
7
 
14
 
8
 
15
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16
// Debug-Interface
10
// Debug-Interface
17
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
18
#define SIO_DEBUG               1   // Soll der Debugger aktiviert sein?
12
#define SIO_DEBUG               1   // Soll der Debugger aktiviert sein?
19
#define MIN_DEBUG_INTERVALL   250   // in diesem Intervall werden Degugdaten ohne Aufforderung gesendet
13
#define MIN_DEBUG_INTERVALL   250   // in diesem Intervall werden Degugdaten ohne Aufforderung gesendet
20
 
14
 
21
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
22
// Sender
16
// Sender
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
 #define K_NICK    0  
18
 #define K_NICK    0  
25
 #define K_ROLL    1
19
 #define K_ROLL    1
26
 #define K_GAS     2
20
 #define K_GAS     2
27
 #define K_GIER    3
21
 #define K_GIER    3
28
 #define K_POTI1   4
22
 #define K_POTI1   4
29
 #define K_POTI2   5
23
 #define K_POTI2   5
30
 #define K_POTI3   6
24
 #define K_POTI3   6
31
 #define K_POTI4   7
25
 #define K_POTI4   7
32
// +++++++++++++++++++++++++++++++
26
// +++++++++++++++++++++++++++++++
33
// + Getestete Settings:
27
// + Getestete Settings:
34
// +++++++++++++++++++++++++++++++
28
// +++++++++++++++++++++++++++++++
35
// Setting: Kamera
29
// Setting: Kamera
36
// Stick_P:3
30
// Stick_P:3
37
// Stick_D:0
31
// Stick_D:0
38
// Gyro_P: 175
32
// Gyro_P: 175
39
// Gyro_I: 175
33
// Gyro_I: 175
40
// Ki_Anteil: 10
34
// Ki_Anteil: 10
41
// +++++++++++++++++++++++++++++++
35
// +++++++++++++++++++++++++++++++
42
// + Getestete Settings:
36
// + Getestete Settings:
43
// +++++++++++++++++++++++++++++++
37
// +++++++++++++++++++++++++++++++
44
// Setting: Normal
38
// Setting: Normal
45
// Stick_P:2
39
// Stick_P:2
46
// Stick_D:8
40
// Stick_D:8
47
// Gyro_P: 80
41
// Gyro_P: 80
48
// Gyro_I: 150
42
// Gyro_I: 150
49
// Ki_Anteil: 5
43
// Ki_Anteil: 5
50
 
44
 
51
 
45