Subversion Repositories FlightCtrl

Rev

Rev 2117 | Rev 2158 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1612 dongfang 1
#ifndef _CONFIGURATION_H
2
#define _CONFIGURATION_H
3
 
4
#include <inttypes.h>
5
#include <avr/io.h>
6
 
1960 - 7
#define MAX_CHANNELS 10
8
#define MAX_MOTORS 12
9
 
2018 - 10
// bitmask for VersionInfo_t.HardwareError[0]
11
#define FC_ERROR0_GYRO_PITCH    0x01
12
#define FC_ERROR0_GYRO_ROLL     0x02
13
#define FC_ERROR0_GYRO_YAW              0x04
14
#define FC_ERROR0_ACC_X                 0x08
15
#define FC_ERROR0_ACC_Y                 0x10
16
#define FC_ERROR0_ACC_Z                 0x20
17
#define FC_ERROR0_PRESSURE              0x40
18
#define FC_ERROR1_RES0                  0x80
19
// bitmask for VersionInfo_t.HardwareError[1]
20
#define FC_ERROR1_I2C                   0x01
21
#define FC_ERROR1_BL_MISSING    0x02
22
#define FC_ERROR1_SPI_RX                0x04
23
#define FC_ERROR1_PPM                   0x08
24
#define FC_ERROR1_MIXER                 0x10
25
#define FC_ERROR1_RES1                  0x20
26
#define FC_ERROR1_RES2                  0x40
27
#define FC_ERROR1_RES3                  0x80
28
 
1612 dongfang 29
typedef struct {
2018 - 30
        uint8_t SWMajor;
31
        uint8_t SWMinor;
32
        uint8_t protoMajor;
33
        uint8_t protoMinor;
34
        uint8_t SWPatch;
35
        uint8_t hardwareErrors[5];
36
}__attribute__((packed)) VersionInfo_t;
37
 
38
extern VersionInfo_t versionInfo;
39
 
40
typedef struct {
1960 - 41
  /*PMM*/uint8_t gyroP;
2032 - 42
  /* P */uint8_t gyroI;
1960 - 43
  /* P */uint8_t gyroD;
2052 - 44
  /* P */uint8_t compassControlHeading;
1960 - 45
 
46
  // Control
47
  /* P */uint8_t externalControl;
48
  /* P */uint8_t dynamicStability;
49
 
50
  // Height control
51
  /*PMM*/uint8_t heightP;
2032 - 52
  /* P */uint8_t heightI;
1960 - 53
  /*PMM*/uint8_t heightD;
54
  /* P */uint8_t heightSetting;
55
 
56
  uint8_t attitudeControl;
57
 
2039 - 58
  // Output and servo
1960 - 59
  /*PMM*/uint8_t output0Timing;
60
  /*PMM*/uint8_t output1Timing;
61
 
62
  uint8_t servoManualControl[2];
2039 - 63
 
64
  // Correction
2032 - 65
  uint8_t levelCorrection[2];
1960 - 66
 
2039 - 67
  // Simple direct navigation
2045 - 68
  uint8_t naviMode;
2039 - 69
 
2032 - 70
  /* P */uint8_t userParams[8];
2059 - 71
} DynamicParams_t;
1960 - 72
 
2059 - 73
extern volatile DynamicParams_t dynamicParams;
1612 dongfang 74
 
1775 - 75
typedef struct {
1864 - 76
  uint8_t sourceIdx, targetIdx;
77
  uint8_t min, max;
1775 - 78
} MMXLATION;
1612 dongfang 79
 
2059 - 80
/*
1775 - 81
typedef struct {
1864 - 82
  uint8_t sourceIdx, targetIdx;
1775 - 83
} XLATION;
2059 - 84
*/
1775 - 85
 
1960 - 86
typedef struct {
2117 - 87
        uint8_t trim;
88
        uint8_t variableOffset;
1960 - 89
  uint8_t channels[MAX_CHANNELS];
2117 - 90
} ChannelMap_t;
91
extern ChannelMap_t channelMap;
1960 - 92
 
93
typedef struct {
2017 - 94
  char name[12];
1960 - 95
  int8_t motor[MAX_MOTORS][4];
2157 - 96
}__attribute__((packed)) MixerMatrix_t;
97
extern MixerMatrix_t mixerMatrix;
1960 - 98
 
99
typedef struct {
1965 - 100
  int16_t offsets[3];
101
} sensorOffset_t;
102
 
103
typedef struct {
1960 - 104
  uint8_t manualControl;
1980 - 105
  uint8_t stabilizationFactor;
1960 - 106
  uint8_t minValue;
107
  uint8_t maxValue;
108
  uint8_t flags;
2117 - 109
} Servo_t;
1960 - 110
 
1980 - 111
#define SERVO_STABILIZATION_REVERSE 1
1977 - 112
 
1960 - 113
typedef struct {
114
  uint8_t bitmask;
115
  uint8_t timing;
116
} output_flash_t;
117
 
1612 dongfang 118
typedef struct {
2015 - 119
  uint8_t gyroQuadrant;
120
  uint8_t accQuadrant;
121
  uint8_t imuReversedFlags;
2113 - 122
 
1960 - 123
  uint8_t gyroPIDFilterConstant;
2095 - 124
  uint8_t gyroDWindowLength;
1960 - 125
  uint8_t gyroDFilterConstant;
126
  uint8_t accFilterConstant;
127
 
2018 - 128
  uint8_t zerothOrderCorrection;
2089 - 129
  uint8_t rateTolerance;
2092 - 130
 
2095 - 131
  uint8_t gyroActivityDamping;
1960 - 132
  uint8_t driftCompDivider; // 1/k  (Koppel_ACC_Wirkung)
133
  uint8_t driftCompLimit;   // limit for gyrodrift compensation
2092 - 134
} IMUConfig_t;
1960 - 135
 
2092 - 136
extern IMUConfig_t IMUConfig;
137
 
138
// values above 250 representing poti1 to poti4
139
typedef struct {
140
  // Global bitflags
141
  uint8_t bitConfig;  // see upper defines for bitcoding
142
 
2051 - 143
  // uint8_t axisCoupling1; // Value: 0-250  Faktor, mit dem Yaw die Achsen Roll und Nick koppelt (NickRollMitkopplung)
144
  // uint8_t axisCoupling2; // Value: 0-250  Faktor, mit dem Nick und Roll verkoppelt werden
145
  // uint8_t axisCouplingYawCorrection;// Value: 0-250  Faktor, mit dem Nick und Roll verkoppelt werden
1960 - 146
 
2032 - 147
  uint8_t levelCorrection[2];
148
 
149
  // Control
150
  uint8_t gyroP;
151
  uint8_t gyroI;
152
  uint8_t gyroD;
153
 
154
  uint8_t attitudeControl;
2051 - 155
 
2032 - 156
  uint8_t stickP;
157
  uint8_t stickD;
158
  uint8_t stickYawP;
159
  uint8_t stickThrottleD;
2051 - 160
 
2032 - 161
  uint8_t minThrottle;
162
  uint8_t maxThrottle;
2051 - 163
 
2032 - 164
  uint8_t externalControl; // for serial Control
165
  uint8_t motorSmoothing;
1960 - 166
  uint8_t dynamicStability; // PID limit for Attitude controller
2051 - 167
 
2018 - 168
  uint8_t IFactor;
1960 - 169
  uint8_t yawIFactor;
2051 - 170
 
2052 - 171
  uint8_t compassMode;      // bitflag thing.
2051 - 172
  uint8_t compassYawCorrection;
2052 - 173
  uint8_t compassBendingReturnSpeed;
174
  uint8_t compassP;
2051 - 175
 
2032 - 176
  uint8_t batteryVoltageWarning;
177
  uint8_t emergencyThrottle;
178
  uint8_t emergencyFlightDuration;
1612 dongfang 179
 
2032 - 180
  // Height Control
2035 - 181
  uint8_t airpressureFilterConstant;
182
  uint8_t airpressureWindowLength; // 0 means: Use filter.
2073 - 183
  uint8_t airpressureDWindowLength; // values 1..5 are legal.
2032 - 184
  uint8_t airpressureAccZCorrection;
2074 - 185
 
2032 - 186
  uint8_t heightP;
187
  uint8_t heightI;
188
  uint8_t heightD;
2074 - 189
 
2032 - 190
  uint8_t heightSetting;
2073 - 191
  uint8_t heightControlMaxIntegralIn;
192
  uint8_t heightControlMaxIntegralOut;
2032 - 193
  uint8_t heightControlMaxThrottleChange;
194
 
2074 - 195
  uint8_t heightControlTestOscPeriod;
196
  uint8_t heightControlTestOscAmplitude;
197
 
1960 - 198
  // Servos
1980 - 199
  uint8_t servoCount;
200
  uint8_t servoManualMaxSpeed;
2117 - 201
  Servo_t servoConfigurations[2]; // [PITCH, ROLL]
1612 dongfang 202
 
1960 - 203
  // Outputs
204
  output_flash_t outputFlash[2];
205
  uint8_t outputDebugMask;
1986 - 206
  uint8_t outputFlags;
1612 dongfang 207
 
2039 - 208
 // Shared for both modes of navigation
2045 - 209
  uint8_t naviMode;
2039 - 210
  uint8_t naviStickThreshold;
2047 - 211
  uint8_t naviStickLimit;
2039 - 212
  uint8_t GPSMininumSatellites;
213
  uint8_t naviP;
214
  uint8_t naviI;
215
  uint8_t naviD;
216
 
2086 - 217
  uint8_t naviTestOscPeriod;
218
  uint8_t naviTestOscAmplitude;
219
 
1960 - 220
  // User params
2018 - 221
  uint8_t userParams[8];
1612 dongfang 222
 
1960 - 223
  // Name
2017 - 224
  char name[12];
2039 - 225
} ParamSet_t;
1960 - 226
 
2039 - 227
extern ParamSet_t staticParams;
228
 
1612 dongfang 229
// MKFlags
230
#define MKFLAG_MOTOR_RUN        (1<<0)
2055 - 231
//#define MKFLAG_FLY            (1<<1)
1612 dongfang 232
#define MKFLAG_CALIBRATE        (1<<2)
233
#define MKFLAG_START            (1<<3)
1960 - 234
#define MKFLAG_EMERGENCY_FLIGHT (1<<4)
2035 - 235
#define MKFLAG_LOWBAT           (1<<5)
1612 dongfang 236
#define MKFLAG_RESERVE2         (1<<6)
237
#define MKFLAG_RESERVE3         (1<<7)
238
 
1960 - 239
// bit mask for staticParams.bitConfig
1980 - 240
#define CFG_SIMPLE_HEIGHT_CONTROL               (1<<0)
1961 - 241
#define CFG_SIMPLE_HC_HOLD_SWITCH       (1<<1)
1980 - 242
#define CFG_HEADING_HOLD                        (1<<2)
2052 - 243
#define CFG_COMPASS_ENABLED             (1<<3)
244
#define CFG_UNUSED                              (1<<4)
2088 - 245
#define CFG_NAVI_ENABLED                        (1<<5)
2058 - 246
#define CFG_AXIS_COUPLING_ENABLED       (1<<6)
1960 - 247
#define CFG_GYRO_SATURATION_PREVENTION  (1<<7)
1612 dongfang 248
 
2020 - 249
#define IMU_REVERSE_GYRO_PR                             (1<<0)
250
#define IMU_REVERSE_GYRO_YAW                    (1<<1)
251
#define IMU_REVERSE_ACC_XY                              (1<<2)
252
#define IMU_REVERSE_ACC_Z                               (1<<3)
253
 
1612 dongfang 254
#define ATMEGA644       0
255
#define ATMEGA644P      1
256
#define SYSCLK F_CPU
257
 
2033 - 258
// Not really a part of configuration, but LEDs and HW s test are the same.
1960 - 259
#define RED_OFF   {if((boardRelease == 10) || (boardRelease == 20)) PORTB &=~(1<<PORTB0); else  PORTB |= (1<<PORTB0);}
260
#define RED_ON    {if((boardRelease == 10) || (boardRelease == 20)) PORTB |= (1<<PORTB0); else  PORTB &=~(1<<PORTB0);}
1612 dongfang 261
#define RED_FLASH PORTB ^= (1<<PORTB0)
1960 - 262
#define GRN_OFF   {if(boardRelease  < 12) PORTB &=~(1<<PORTB1); else PORTB |= (1<<PORTB1);}
263
#define GRN_ON    {if(boardRelease  < 12) PORTB |= (1<<PORTB1); else PORTB &=~(1<<PORTB1);}
1612 dongfang 264
#define GRN_FLASH PORTB ^= (1<<PORTB1)
265
 
266
// Mixer table
267
#define MIX_THROTTLE    0
268
#define MIX_PITCH       1
269
#define MIX_ROLL        2
270
#define MIX_YAW         3
271
 
1961 - 272
#define VARIABLE_COUNT 8
273
 
1612 dongfang 274
extern volatile uint8_t MKFlags;
1960 - 275
extern uint8_t requiredMotors;
1961 - 276
extern int16_t variables[VARIABLE_COUNT]; // The "Poti"s.
1960 - 277
extern uint8_t boardRelease;
1612 dongfang 278
extern uint8_t CPUType;
279
 
1963 - 280
extern volatile uint8_t MKFlags;
281
extern uint16_t isFlying;
282
 
2092 - 283
void IMUConfig_default(void);
1960 - 284
void channelMap_default(void);
285
void paramSet_default(uint8_t setnumber);
286
void mixerMatrix_default(void);
287
 
2059 - 288
void configuration_setNormalFlightParameters(void);
289
void configuration_setFailsafeFlightParameters(void);
1612 dongfang 290
void configuration_applyVariablesToParams(void);
2059 - 291
 
2088 - 292
void setCPUType(void);
293
void setBoardRelease(void);
1612 dongfang 294
 
2059 - 295
// Called after a change in configuration parameters, as a hook for modules to take over changes.
296
void configuration_paramSetDidChange(void);
1612 dongfang 297
#endif // _CONFIGURATION_H