Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1910 - 1
#ifndef _CONFIGURATION_H
2
#define _CONFIGURATION_H
3
 
4
#include <inttypes.h>
5
#include <avr/io.h>
6
 
2099 - 7
#define MAX_CHANNELS 10
8
#define MAX_MOTORS 12
9
 
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
 
2104 - 29
typedef struct {
30
  uint8_t gyroQuadrant;
31
  uint8_t accQuadrant;
32
  uint8_t imuReversedFlags;
33
 
34
  uint8_t gyroPIDFilterConstant;
35
  uint8_t gyroDWindowLength;
36
  uint8_t gyroDFilterConstant;
37
  uint8_t accFilterConstant;
38
 
39
  uint8_t zerothOrderCorrection;
40
  uint8_t rateTolerance;
41
 
42
  uint8_t gyroActivityDamping;
43
  uint8_t driftCompDivider; // 1/k  (Koppel_ACC_Wirkung)
44
  uint8_t driftCompLimit;   // limit for gyrodrift compensation
45
} IMUConfig_t;
46
 
47
extern IMUConfig_t IMUConfig;
48
 
49
typedef struct {
50
        uint8_t P;
51
        uint8_t I;
52
        uint8_t D;
53
} PID_t;
54
 
55
typedef struct {
56
        uint8_t P;
57
        uint8_t I;
58
        uint8_t D;
59
        uint8_t iMax;
60
} PIDIM_t;
61
 
2102 - 62
typedef enum {
63
  FLIGHT_MODE_NONE,
64
  FLIGHT_MODE_MANUAL,
65
  FLIGHT_MODE_RATE,
66
  FLIGHT_MODE_ANGLES
67
} FlightMode_t;
68
 
69
#define CONTROL_SERVO_REVERSE_ELEVATOR 1
70
#define CONTROL_SERVO_REVERSE_AILERONS 2
71
#define CONTROL_SERVO_REVERSE_RUDDER 4
72
 
1910 - 73
typedef struct {
2099 - 74
    uint8_t SWMajor;
75
    uint8_t SWMinor;
76
    uint8_t protoMajor;
77
    uint8_t protoMinor;
78
    uint8_t SWPatch;
79
    uint8_t hardwareErrors[5];
80
}__attribute__((packed)) VersionInfo_t;
1910 - 81
 
2099 - 82
extern VersionInfo_t versionInfo;
1910 - 83
 
2099 - 84
typedef struct {
2104 - 85
  // IMU stuff:
86
  PID_t gyroPID[3];
1910 - 87
 
2099 - 88
  // Control
89
  /* P */uint8_t externalControl;
1910 - 90
 
2099 - 91
  // Output and servo
92
  /*PMM*/uint8_t output0Timing;
93
  /*PMM*/uint8_t output1Timing;
94
 
95
  uint8_t servoManualControl[2];
96
 
97
  /* P */uint8_t userParams[8];
98
} DynamicParams_t;
99
 
100
extern volatile DynamicParams_t dynamicParams;
101
 
1910 - 102
typedef struct {
103
  uint8_t sourceIdx, targetIdx;
104
  uint8_t min, max;
105
} MMXLATION;
106
 
2099 - 107
/*
1910 - 108
typedef struct {
109
  uint8_t sourceIdx, targetIdx;
110
} XLATION;
2099 - 111
*/
1910 - 112
 
113
typedef struct {
2099 - 114
  uint8_t channels[MAX_CHANNELS];
115
} channelMap_t;
116
extern channelMap_t channelMap;
1910 - 117
 
2099 - 118
typedef struct {
119
  char name[12];
120
  int8_t motor[MAX_MOTORS][4];
121
}__attribute__((packed)) mixerMatrix_t;
122
extern mixerMatrix_t mixerMatrix;
1910 - 123
 
2099 - 124
typedef struct {
125
  int16_t offsets[3];
126
} sensorOffset_t;
127
 
128
typedef struct {
129
  uint8_t manualControl;
130
  uint8_t stabilizationFactor;
131
  uint8_t minValue;
132
  uint8_t maxValue;
133
  uint8_t flags;
134
} servo_t;
135
 
136
#define SERVO_STABILIZATION_REVERSE 1
137
 
138
typedef struct {
139
  uint8_t bitmask;
140
  uint8_t timing;
141
} output_flash_t;
142
 
143
// values above 250 representing poti1 to poti4
144
typedef struct {
145
  // Global bitflags
146
  uint8_t bitConfig;  // see upper defines for bitcoding
1910 - 147
 
2099 - 148
  // Control
2104 - 149
  PIDIM_t gyroPID[3];
1910 - 150
 
2099 - 151
  uint8_t stickIElevator;
152
  uint8_t stickIAilerons;
153
  uint8_t stickIRudder;
1910 - 154
 
2099 - 155
  uint8_t externalControl; // for serial Control
1910 - 156
 
2099 - 157
  uint8_t IFactor;
1910 - 158
 
2099 - 159
  uint8_t batteryVoltageWarning;
160
  uint8_t emergencyThrottle;
161
  uint8_t emergencyFlightDuration;
1910 - 162
 
2099 - 163
  // Servos
2102 - 164
  uint8_t controlServosReverse;
165
 
2099 - 166
  uint8_t servoCount;
167
  uint8_t servoManualMaxSpeed;
168
  servo_t servoConfigurations[2]; // [PITCH, ROLL]
1910 - 169
 
2099 - 170
  // Outputs
171
  output_flash_t outputFlash[2];
172
  uint8_t outputDebugMask;
173
  uint8_t outputFlags;
174
 
175
  // User params
176
  uint8_t userParams[8];
177
 
178
  // Name
179
  char name[12];
180
} ParamSet_t;
181
 
182
extern ParamSet_t staticParams;
183
 
184
// bit mask for staticParams.bitConfig
2104 - 185
#define CFG_GYRO_SATURATION_PREVENTION  (1<<0)
186
#define CFG_USE_AIRSPEED_PID            (1<<1)
1910 - 187
 
2099 - 188
#define IMU_REVERSE_GYRO_PR             (1<<0)
189
#define IMU_REVERSE_GYRO_YAW            (1<<1)
190
#define IMU_REVERSE_ACC_XY              (1<<2)
191
#define IMU_REVERSE_ACC_Z               (1<<3)
1910 - 192
 
2099 - 193
#define ATMEGA644   0
194
#define ATMEGA644P  1
1910 - 195
#define SYSCLK F_CPU
196
 
2099 - 197
// Not really a part of configuration, but LEDs and HW s test are the same.
198
#define RED_OFF   {if((boardRelease == 10) || (boardRelease == 20)) PORTB &=~(1<<PORTB0); else  PORTB |= (1<<PORTB0);}
199
#define RED_ON    {if((boardRelease == 10) || (boardRelease == 20)) PORTB |= (1<<PORTB0); else  PORTB &=~(1<<PORTB0);}
1910 - 200
#define RED_FLASH PORTB ^= (1<<PORTB0)
2099 - 201
#define GRN_OFF   {if(boardRelease  < 12) PORTB &=~(1<<PORTB1); else PORTB |= (1<<PORTB1);}
202
#define GRN_ON    {if(boardRelease  < 12) PORTB |= (1<<PORTB1); else PORTB &=~(1<<PORTB1);}
1910 - 203
#define GRN_FLASH PORTB ^= (1<<PORTB1)
204
 
205
// Mixer table
2099 - 206
#define MIX_THROTTLE    0
207
#define MIX_PITCH   1
208
#define MIX_ROLL    2
209
#define MIX_YAW     3
1910 - 210
 
2099 - 211
#define VARIABLE_COUNT 8
212
 
213
extern int16_t variables[VARIABLE_COUNT]; // The "Poti"s.
214
extern uint8_t boardRelease;
1910 - 215
extern uint8_t CPUType;
216
 
2102 - 217
extern volatile uint8_t isMotorRunning;
218
extern FlightMode_t currentFlightMode;
1910 - 219
 
2099 - 220
void IMUConfig_default(void);
221
void channelMap_default(void);
222
void paramSet_default(uint8_t setnumber);
223
 
2102 - 224
void configuration_setFlightParameters(uint8_t newFlightMode);
2099 - 225
void configuration_applyVariablesToParams(void);
226
 
227
void setCPUType(void);
228
void setBoardRelease(void);
229
 
230
// Called after a change in configuration parameters, as a hook for modules to take over changes.
231
void configuration_paramSetDidChange(void);
1910 - 232
#endif // _CONFIGURATION_H