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 { |
2160 | - | 87 | uint8_t RCPolarity; // 1=positive, 0=negative. Use positive with Futaba receiver, negative with FrSky. |
88 | uint8_t HWTrim; |
||
2117 | - | 89 | uint8_t variableOffset; |
2160 | - | 90 | uint8_t channels[MAX_CHANNELS]; |
2117 | - | 91 | } ChannelMap_t; |
2160 | - | 92 | |
2117 | - | 93 | extern ChannelMap_t channelMap; |
1960 | - | 94 | |
95 | typedef struct { |
||
2017 | - | 96 | char name[12]; |
2158 | - | 97 | int8_t matrix[MAX_MOTORS][5]; |
98 | //int8_t oppositeMotor[MAX_MOTORS]; |
||
99 | }__attribute__((packed)) MotorMixer_t; |
||
100 | extern MotorMixer_t motorMixer; |
||
1960 | - | 101 | |
102 | typedef struct { |
||
1965 | - | 103 | int16_t offsets[3]; |
104 | } sensorOffset_t; |
||
105 | |||
106 | typedef struct { |
||
1960 | - | 107 | uint8_t manualControl; |
1980 | - | 108 | uint8_t stabilizationFactor; |
1960 | - | 109 | uint8_t minValue; |
110 | uint8_t maxValue; |
||
111 | uint8_t flags; |
||
2117 | - | 112 | } Servo_t; |
1960 | - | 113 | |
1980 | - | 114 | #define SERVO_STABILIZATION_REVERSE 1 |
1977 | - | 115 | |
1960 | - | 116 | typedef struct { |
117 | uint8_t bitmask; |
||
118 | uint8_t timing; |
||
119 | } output_flash_t; |
||
120 | |||
1612 | dongfang | 121 | typedef struct { |
2015 | - | 122 | uint8_t gyroQuadrant; |
123 | uint8_t accQuadrant; |
||
124 | uint8_t imuReversedFlags; |
||
2113 | - | 125 | |
1960 | - | 126 | uint8_t gyroPIDFilterConstant; |
2095 | - | 127 | uint8_t gyroDWindowLength; |
2158 | - | 128 | // uint8_t gyroDFilterConstant; |
1960 | - | 129 | uint8_t accFilterConstant; |
130 | |||
2018 | - | 131 | uint8_t zerothOrderCorrection; |
2089 | - | 132 | uint8_t rateTolerance; |
2092 | - | 133 | |
2095 | - | 134 | uint8_t gyroActivityDamping; |
1960 | - | 135 | uint8_t driftCompDivider; // 1/k (Koppel_ACC_Wirkung) |
136 | uint8_t driftCompLimit; // limit for gyrodrift compensation |
||
2092 | - | 137 | } IMUConfig_t; |
1960 | - | 138 | |
2092 | - | 139 | extern IMUConfig_t IMUConfig; |
140 | |||
141 | // values above 250 representing poti1 to poti4 |
||
142 | typedef struct { |
||
143 | // Global bitflags |
||
144 | uint8_t bitConfig; // see upper defines for bitcoding |
||
145 | |||
2051 | - | 146 | // uint8_t axisCoupling1; // Value: 0-250 Faktor, mit dem Yaw die Achsen Roll und Nick koppelt (NickRollMitkopplung) |
147 | // uint8_t axisCoupling2; // Value: 0-250 Faktor, mit dem Nick und Roll verkoppelt werden |
||
148 | // uint8_t axisCouplingYawCorrection;// Value: 0-250 Faktor, mit dem Nick und Roll verkoppelt werden |
||
1960 | - | 149 | |
2032 | - | 150 | uint8_t levelCorrection[2]; |
151 | |||
152 | // Control |
||
153 | uint8_t gyroP; |
||
154 | uint8_t gyroI; |
||
155 | uint8_t gyroD; |
||
156 | |||
157 | uint8_t attitudeControl; |
||
2051 | - | 158 | |
2032 | - | 159 | uint8_t stickP; |
160 | uint8_t stickD; |
||
161 | uint8_t stickYawP; |
||
162 | uint8_t stickThrottleD; |
||
2051 | - | 163 | |
2032 | - | 164 | uint8_t minThrottle; |
165 | uint8_t maxThrottle; |
||
2051 | - | 166 | |
2032 | - | 167 | uint8_t externalControl; // for serial Control |
168 | uint8_t motorSmoothing; |
||
1960 | - | 169 | uint8_t dynamicStability; // PID limit for Attitude controller |
2051 | - | 170 | |
2018 | - | 171 | uint8_t IFactor; |
1960 | - | 172 | uint8_t yawIFactor; |
2051 | - | 173 | |
2052 | - | 174 | uint8_t compassMode; // bitflag thing. |
2051 | - | 175 | uint8_t compassYawCorrection; |
2052 | - | 176 | uint8_t compassBendingReturnSpeed; |
177 | uint8_t compassP; |
||
2051 | - | 178 | |
2032 | - | 179 | uint8_t batteryVoltageWarning; |
180 | uint8_t emergencyThrottle; |
||
181 | uint8_t emergencyFlightDuration; |
||
1612 | dongfang | 182 | |
2032 | - | 183 | // Height Control |
2035 | - | 184 | uint8_t airpressureFilterConstant; |
185 | uint8_t airpressureWindowLength; // 0 means: Use filter. |
||
2073 | - | 186 | uint8_t airpressureDWindowLength; // values 1..5 are legal. |
2032 | - | 187 | uint8_t airpressureAccZCorrection; |
2074 | - | 188 | |
2032 | - | 189 | uint8_t heightP; |
190 | uint8_t heightI; |
||
191 | uint8_t heightD; |
||
2074 | - | 192 | |
2032 | - | 193 | uint8_t heightSetting; |
2073 | - | 194 | uint8_t heightControlMaxIntegralIn; |
195 | uint8_t heightControlMaxIntegralOut; |
||
2032 | - | 196 | uint8_t heightControlMaxThrottleChange; |
197 | |||
2074 | - | 198 | uint8_t heightControlTestOscPeriod; |
199 | uint8_t heightControlTestOscAmplitude; |
||
200 | |||
1960 | - | 201 | // Servos |
1980 | - | 202 | uint8_t servoCount; |
203 | uint8_t servoManualMaxSpeed; |
||
2117 | - | 204 | Servo_t servoConfigurations[2]; // [PITCH, ROLL] |
1612 | dongfang | 205 | |
1960 | - | 206 | // Outputs |
207 | output_flash_t outputFlash[2]; |
||
208 | uint8_t outputDebugMask; |
||
1986 | - | 209 | uint8_t outputFlags; |
1612 | dongfang | 210 | |
2039 | - | 211 | // Shared for both modes of navigation |
2045 | - | 212 | uint8_t naviMode; |
2039 | - | 213 | uint8_t naviStickThreshold; |
2047 | - | 214 | uint8_t naviStickLimit; |
2039 | - | 215 | uint8_t GPSMininumSatellites; |
216 | uint8_t naviP; |
||
217 | uint8_t naviI; |
||
218 | uint8_t naviD; |
||
219 | |||
2086 | - | 220 | uint8_t naviTestOscPeriod; |
221 | uint8_t naviTestOscAmplitude; |
||
222 | |||
1960 | - | 223 | // User params |
2018 | - | 224 | uint8_t userParams[8]; |
1612 | dongfang | 225 | |
1960 | - | 226 | // Name |
2017 | - | 227 | char name[12]; |
2039 | - | 228 | } ParamSet_t; |
1960 | - | 229 | |
2039 | - | 230 | extern ParamSet_t staticParams; |
231 | |||
1612 | dongfang | 232 | // MKFlags |
233 | #define MKFLAG_MOTOR_RUN (1<<0) |
||
2055 | - | 234 | //#define MKFLAG_FLY (1<<1) |
1612 | dongfang | 235 | #define MKFLAG_CALIBRATE (1<<2) |
236 | #define MKFLAG_START (1<<3) |
||
1960 | - | 237 | #define MKFLAG_EMERGENCY_FLIGHT (1<<4) |
2035 | - | 238 | #define MKFLAG_LOWBAT (1<<5) |
1612 | dongfang | 239 | #define MKFLAG_RESERVE2 (1<<6) |
240 | #define MKFLAG_RESERVE3 (1<<7) |
||
241 | |||
1960 | - | 242 | // bit mask for staticParams.bitConfig |
1980 | - | 243 | #define CFG_SIMPLE_HEIGHT_CONTROL (1<<0) |
1961 | - | 244 | #define CFG_SIMPLE_HC_HOLD_SWITCH (1<<1) |
1980 | - | 245 | #define CFG_HEADING_HOLD (1<<2) |
2052 | - | 246 | #define CFG_COMPASS_ENABLED (1<<3) |
247 | #define CFG_UNUSED (1<<4) |
||
2088 | - | 248 | #define CFG_NAVI_ENABLED (1<<5) |
2058 | - | 249 | #define CFG_AXIS_COUPLING_ENABLED (1<<6) |
1960 | - | 250 | #define CFG_GYRO_SATURATION_PREVENTION (1<<7) |
1612 | dongfang | 251 | |
2020 | - | 252 | #define IMU_REVERSE_GYRO_PR (1<<0) |
253 | #define IMU_REVERSE_GYRO_YAW (1<<1) |
||
254 | #define IMU_REVERSE_ACC_XY (1<<2) |
||
255 | #define IMU_REVERSE_ACC_Z (1<<3) |
||
256 | |||
1612 | dongfang | 257 | #define ATMEGA644 0 |
258 | #define ATMEGA644P 1 |
||
259 | #define SYSCLK F_CPU |
||
260 | |||
2033 | - | 261 | // Not really a part of configuration, but LEDs and HW s test are the same. |
1960 | - | 262 | #define RED_OFF {if((boardRelease == 10) || (boardRelease == 20)) PORTB &=~(1<<PORTB0); else PORTB |= (1<<PORTB0);} |
263 | #define RED_ON {if((boardRelease == 10) || (boardRelease == 20)) PORTB |= (1<<PORTB0); else PORTB &=~(1<<PORTB0);} |
||
1612 | dongfang | 264 | #define RED_FLASH PORTB ^= (1<<PORTB0) |
1960 | - | 265 | #define GRN_OFF {if(boardRelease < 12) PORTB &=~(1<<PORTB1); else PORTB |= (1<<PORTB1);} |
266 | #define GRN_ON {if(boardRelease < 12) PORTB |= (1<<PORTB1); else PORTB &=~(1<<PORTB1);} |
||
1612 | dongfang | 267 | #define GRN_FLASH PORTB ^= (1<<PORTB1) |
268 | |||
269 | // Mixer table |
||
2158 | - | 270 | #define MIX_PITCH 0 |
271 | #define MIX_ROLL 1 |
||
272 | #define MIX_THROTTLE 2 |
||
273 | #define MIX_YAW 3 |
||
274 | #define MIX_OPPOSITE_MOTOR 4 |
||
1612 | dongfang | 275 | |
2158 | - | 276 | #define VARIABLE_COUNT 8 |
1961 | - | 277 | |
1612 | dongfang | 278 | extern volatile uint8_t MKFlags; |
1960 | - | 279 | extern uint8_t requiredMotors; |
1961 | - | 280 | extern int16_t variables[VARIABLE_COUNT]; // The "Poti"s. |
1960 | - | 281 | extern uint8_t boardRelease; |
1612 | dongfang | 282 | extern uint8_t CPUType; |
283 | |||
1963 | - | 284 | extern volatile uint8_t MKFlags; |
285 | extern uint16_t isFlying; |
||
286 | |||
2092 | - | 287 | void IMUConfig_default(void); |
1960 | - | 288 | void channelMap_default(void); |
289 | void paramSet_default(uint8_t setnumber); |
||
2158 | - | 290 | void motorMixer_default(void); |
1960 | - | 291 | |
2059 | - | 292 | void configuration_setNormalFlightParameters(void); |
293 | void configuration_setFailsafeFlightParameters(void); |
||
1612 | dongfang | 294 | void configuration_applyVariablesToParams(void); |
2059 | - | 295 | |
2088 | - | 296 | void setCPUType(void); |
297 | void setBoardRelease(void); |
||
1612 | dongfang | 298 | |
2059 | - | 299 | // Called after a change in configuration parameters, as a hook for modules to take over changes. |
300 | void configuration_paramSetDidChange(void); |
||
1612 | dongfang | 301 | #endif // _CONFIGURATION_H |