Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
158 KeyOz 1
/***************************************************************************
2
 *   Copyright (C) 2008 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation; either version 2 of the License.        *
8
 *                                                                         *
9
 *   This program is distributed in the hope that it will be useful,       *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 *   GNU General Public License for more details.                          *
13
 *                                                                         *
14
 *   You should have received a copy of the GNU General Public License     *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
19
#ifndef PARAMETER_POSITIONS_H
20
#define PARAMETER_POSITIONS_H
21
 
22
static const int MaxParameter = 86;
23
 
24
static const int P_KANAL_GAS   = 0;
25
static const int P_KANAL_GIER  = 1;
26
static const int P_KANAL_NICK  = 2;
27
static const int P_KANAL_ROLL  = 3;
28
static const int P_KANAL_POTI1 = 4;
29
static const int P_KANAL_POTI2 = 5;
30
static const int P_KANAL_POTI3 = 6;
31
static const int P_KANAL_POTI4 = 7;
32
static const int P_GLOBAL_CONF = 8;
33
static const int P_MIN_GAS     = 9;
34
 
35
static const int P_DRUCK_D       = 10;
36
static const int P_MAXHOEHE      = 11;
37
static const int P_HOEHE_P       = 12;
38
static const int P_HOEHE_GAIN    = 13;
39
static const int P_HOEHE_ACC     = 14;
40
static const int P_STICK_P       = 15;
41
static const int P_STICK_D       = 16;
42
static const int P_GIER_P        = 17;
43
static const int P_GAS_MIN       = 18;
44
static const int P_GAS_MAX       = 19;
45
 
46
static const int P_GYRO_ACC_FAKTOR = 20;
47
static const int P_KOMPASS_WIRKUNG = 21;
48
static const int P_GYRO_P          = 22;
49
static const int P_GYRO_I          = 23;
50
static const int P_UNTERSPANNUNG   = 24;
51
static const int P_NOTGAS          = 25;
52
static const int P_NOTGASZEIT      = 26;
53
static const int P_AUSRICHTUNG     = 27;
54
static const int P_FAKTOR_I        = 28;
55
static const int P_USER_1          = 29;
56
 
57
static const int P_USER_2          = 30;
58
static const int P_USER_3          = 31;
59
static const int P_USER_4          = 32;
60
static const int P_SERVO_NICK_CONT = 33;
61
static const int P_SERVO_NICK_COMP = 34;
62
static const int P_SERVO_NICK_MIN  = 35;
63
static const int P_SERVO_NICK_MAX  = 36;
64
static const int P_SERVO_NICK_REFR = 37;
65
static const int P_LOOP_GAS_LIMIT  = 38;
66
static const int P_LOOP_THRESHOLD  = 39;
67
 
68
static const int P_LOOP_HYSTERESE  = 40;
69
static const int P_ACHS_KOPPLUNG   = 41;
70
static const int P_ACHS_GKOPPLUNG  = 42;
71
static const int P_WINKEL_NICK     = 43;
72
static const int P_WINKEL_ROLL     = 44;
73
static const int P_GYRO_ACC_ABGL   = 45;
74
static const int P_DRIFT_KOMP      = 46;
75
static const int P_DYNAMIC_STAB    = 47;
76
static const int P_USER_5          = 48;
77
static const int P_USER_6          = 49;
78
 
79
static const int P_USER_7          = 50;
80
static const int P_USER_8          = 51;
81
static const int P_J16_BITMASK     = 52;
82
static const int P_J16_TIMING      = 53;
83
static const int P_J17_BITMASK     = 54;
84
static const int P_J17_TIMING      = 55;
85
static const int P_NAV_GPS_MODE    = 56;
86
static const int P_NAV_GPS_GAIN    = 57;
87
static const int P_NAV_GPS_P       = 58;
88
static const int P_NAV_GPS_I       = 59;
89
 
90
static const int P_NAV_GPS_D        = 60;
91
static const int P_NAV_GPS_ACC      = 61;
92
static const int P_NAV_GPS_MIN      = 62;
93
static const int P_NAV_STICK_THRE   = 63;
94
static const int P_NAV_WIND_CORR    = 64;
95
static const int P_NAV_SPEED_COMP   = 65;
96
static const int P_NAV_RADIUS       = 66;
97
 
98
static const int P_EXTERNAL         = 67;
99
static const int P_LOOP_CONFIG      = 68;
100
static const int P_SERVO_NICK_COMPI = 69;
101
static const int P_RESERVED         = 70;
102
static const int P_NAME             = 74;
103
 
104
#endif