Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1612 dongfang 1
#include <util/delay.h>
1775 - 2
#include <stddef.h>
1960 - 3
#include <string.h>
1612 dongfang 4
#include "configuration.h"
1960 - 5
#include "sensors.h"
6
#include "rc.h"
2048 - 7
#include "output.h"
2059 - 8
#include "flight.h"
1977 - 9
 
1961 - 10
int16_t variables[VARIABLE_COUNT];
2039 - 11
ParamSet_t staticParams;
1960 - 12
channelMap_t channelMap;
13
mixerMatrix_t mixerMatrix;
2059 - 14
volatile DynamicParams_t dynamicParams;
1969 - 15
 
2088 - 16
uint8_t CPUType;
17
uint8_t boardRelease;
1960 - 18
uint8_t requiredMotors;
1963 - 19
 
2018 - 20
VersionInfo_t versionInfo;
21
 
1963 - 22
// MK flags. TODO: Replace by enum. State machine.
23
uint16_t isFlying = 0;
24
volatile uint8_t MKFlags = 0;
25
 
2059 - 26
const MMXLATION XLATIONS[] = {
27
{offsetof(ParamSet_t, levelCorrection[0]), offsetof(DynamicParams_t, levelCorrection[0]),0,255},
28
{offsetof(ParamSet_t, levelCorrection[1]), offsetof(DynamicParams_t, levelCorrection[1]),0,255},
29
{offsetof(ParamSet_t, gyroP), offsetof(DynamicParams_t, gyroP),0,255},
30
{offsetof(ParamSet_t, gyroI), offsetof(DynamicParams_t, gyroI),0,255},
31
{offsetof(ParamSet_t, gyroD), offsetof(DynamicParams_t, gyroD),0,255},
32
{offsetof(ParamSet_t, attitudeControl), offsetof(DynamicParams_t, attitudeControl),0,255},
33
{offsetof(ParamSet_t, externalControl), offsetof(DynamicParams_t, externalControl),0,255},
34
{offsetof(ParamSet_t, dynamicStability), offsetof(DynamicParams_t, dynamicStability),0,255},
35
{offsetof(ParamSet_t, heightP), offsetof(DynamicParams_t, heightP),0,255},
36
{offsetof(ParamSet_t, heightI), offsetof(DynamicParams_t, heightI),0,255},
37
{offsetof(ParamSet_t, heightD), offsetof(DynamicParams_t, heightD),0,255},
38
{offsetof(ParamSet_t, heightSetting), offsetof(DynamicParams_t, heightSetting),0,255},
39
{offsetof(ParamSet_t, servoConfigurations[0].manualControl), offsetof(DynamicParams_t, servoManualControl[0]),0,255},
40
{offsetof(ParamSet_t, servoConfigurations[1].manualControl), offsetof(DynamicParams_t, servoManualControl[1]),0,255},
41
{offsetof(ParamSet_t, outputFlash[0].timing), offsetof(DynamicParams_t, output0Timing),0,255},
42
{offsetof(ParamSet_t, outputFlash[1].timing), offsetof(DynamicParams_t, output1Timing),0,255},
43
{offsetof(ParamSet_t, naviMode), offsetof(DynamicParams_t, naviMode),0,255}};
1775 - 44
 
45
uint8_t configuration_applyVariableToParam(uint8_t src, uint8_t min, uint8_t max) {
46
  uint8_t result;
2059 - 47
  if (src>=(256-VARIABLE_COUNT)) result = variables[src-(256-VARIABLE_COUNT)];
1775 - 48
  else result = src;
49
  if (result < min) result = min;
50
  else if (result > max) result = max;
51
  return result;
52
}
53
 
2059 - 54
void configuration_applyVariablesToParams(void) {
1775 - 55
  uint8_t i, src;
56
  uint8_t* pointerToTgt;
2059 - 57
 
58
  for(i=0; i<sizeof(XLATIONS)/sizeof(MMXLATION); i++) {
59
    src = *((uint8_t*)(&staticParams) + XLATIONS[i].sourceIdx);
60
    pointerToTgt = (uint8_t*)(&dynamicParams) + XLATIONS[i].targetIdx;
61
    *pointerToTgt = configuration_applyVariableToParam(src, XLATIONS[i].min, XLATIONS[i].max);
1775 - 62
  }
63
 
2059 - 64
  // User parameters are always variable.
1960 - 65
  for (i=0; i<sizeof(staticParams.userParams); i++) {
2059 - 66
    src = *((uint8_t*)(&staticParams) + offsetof(ParamSet_t, userParams) + i);
67
    pointerToTgt = (uint8_t*)(&dynamicParams) + offsetof(DynamicParams_t, userParams) + i;
68
    *pointerToTgt = configuration_applyVariableToParam(src, 0, 255);
1775 - 69
  }
70
}
71
 
2088 - 72
void setCPUType(void) {   // works only after reset or power on when the registers have default values
2017 - 73
  if((UCSR1A == 0x20) && (UCSR1C == 0x06)) CPUType = ATMEGA644P;  // initial Values for 644P after reset
2088 - 74
  else CPUType = ATMEGA644;
1612 dongfang 75
}
76
 
77
/*
78
 * Automatic detection of hardware components is not supported in this development-oriented
79
 * FC firmware. It would go against the point of it: To enable alternative hardware
80
 * configurations with otherwise unsupported components. Instead, one should write
81
 * custom code + adjust constants for the new hardware, and include the relevant code
82
 * from the makefile.
83
 * However - we still do detect the board release. Reason: Otherwise it would be too
84
 * tedious to have to modify the code for how to turn on and off LEDs when deploying
85
 * on different HW version....
86
 */
2088 - 87
void setBoardRelease(void) {
1612 dongfang 88
  // the board release is coded via the pull up or down the 2 status LED
89
 
90
  PORTB &= ~((1 << PORTB1)|(1 << PORTB0)); // set tristate
91
  DDRB  &= ~((1 << DDB0)|(1 << DDB0)); // set port direction as input
92
 
93
  _delay_loop_2(1000); // make some delay
94
 
95
  switch( PINB & ((1<<PINB1)|(1<<PINB0))) {
96
    case 0x00:
1960 - 97
      boardRelease = 10; // 1.0
1612 dongfang 98
      break;
99
    case 0x01:
1960 - 100
      boardRelease = 11; // 1.1 or 1.2
1612 dongfang 101
      break;
102
    case 0x02:
1960 - 103
      boardRelease = 20; // 2.0
1612 dongfang 104
      break;
105
    case 0x03:
1960 - 106
      boardRelease = 13; // 1.3
1612 dongfang 107
      break;
108
    default:
109
      break;
110
    }
111
  // set LED ports as output
112
  DDRB |= (1<<DDB1)|(1<<DDB0);
1964 - 113
  RED_OFF;
1612 dongfang 114
  GRN_OFF;
115
}
1960 - 116
 
2059 - 117
void configuration_setNormalFlightParameters(void) {
118
  flight_setParameters(staticParams.IFactor, dynamicParams.gyroP,
119
      staticParams.bitConfig & CFG_HEADING_HOLD ? 0 : dynamicParams.gyroI,
120
      dynamicParams.gyroP, staticParams.yawIFactor);
121
}
122
 
123
void configuration_setFailsafeFlightParameters(void) {
124
  flight_setParameters(0, 90, 120, 90, 120);
125
}
126
 
127
// Called after a change in configuration parameters, as a hook for modules to take over changes.
128
void configuration_paramSetDidChange(void) {
129
  // This should be OK to do here as long as we don't change parameters during emergency flight. We don't.
130
  configuration_setNormalFlightParameters();
131
  // Immediately load changes to output, and also signal the paramset change.
132
  output_init();
133
}
134
 
1960 - 135
void setOtherDefaults(void) {
136
  // Height Control
2035 - 137
  staticParams.airpressureFilterConstant = 8;
2036 - 138
  //staticParams.airpressureWindowLength = 0;
2026 - 139
  staticParams.airpressureAccZCorrection = 128+56;
1960 - 140
  staticParams.heightP = 10;
141
  staticParams.heightD = 30;
142
  staticParams.heightSetting = 251;
1961 - 143
  staticParams.heightControlMaxThrottleChange = 10;
1960 - 144
 
145
  // Control
146
  staticParams.stickP = 8;
147
  staticParams.stickD = 12;
148
  staticParams.stickYawP = 12;
149
  staticParams.stickThrottleD = 12;
150
  staticParams.minThrottle = 8;
151
  staticParams.maxThrottle = 230;
152
  staticParams.externalControl = 0;
1988 - 153
  staticParams.motorSmoothing = 0;
1960 - 154
 
155
  // IMU
156
  staticParams.gyroPIDFilterConstant = 1;
157
  staticParams.gyroDFilterConstant = 1;
1977 - 158
  staticParams.accFilterConstant = 10;
1960 - 159
 
160
  staticParams.gyroP = 60;
161
  staticParams.gyroI = 80;
162
  staticParams.gyroD = 4;
163
 
1961 - 164
  // set by gyro-specific code: gyro_setDefaults().
1960 - 165
  // staticParams.zerothOrderCorrection = 
166
  // staticParams.driftCompDivider = 
167
  // staticParams.driftCompLimit = 
168
 
169
  staticParams.dynamicStability = 50;
2089 - 170
  staticParams.rateTolerance = 10;
171
  staticParams.yawRateFactor = 4;
2055 - 172
  staticParams.IFactor = 52;
1977 - 173
  staticParams.yawIFactor = 100;  
2051 - 174
  staticParams.compassYawCorrection = 64;
2052 - 175
  staticParams.compassP = 50;
1988 - 176
  staticParams.levelCorrection[0] = staticParams.levelCorrection[1] = 128;
1960 - 177
 
178
  // Servos
1980 - 179
  staticParams.servoCount = 7;
180
  staticParams.servoManualMaxSpeed = 10;
1960 - 181
  for (uint8_t i=0; i<2; i++) {
182
    staticParams.servoConfigurations[i].manualControl = 128;
1980 - 183
    staticParams.servoConfigurations[i].stabilizationFactor = 0;
1977 - 184
    staticParams.servoConfigurations[i].minValue = 32;
185
    staticParams.servoConfigurations[i].maxValue = 224;
1960 - 186
    staticParams.servoConfigurations[i].flags = 0;
187
  }
1980 - 188
 
1960 - 189
  // Battery warning and emergency flight
190
  staticParams.batteryVoltageWarning = 101;  // 3.7 each for 3S
191
  staticParams.emergencyThrottle = 35;
192
  staticParams.emergencyFlightDuration = 30;
193
 
194
  // Outputs
1961 - 195
  staticParams.outputFlash[0].bitmask = 1; //0b01011111;
1960 - 196
  staticParams.outputFlash[0].timing = 15;
1961 - 197
  staticParams.outputFlash[1].bitmask = 3; //0b11110011;
1960 - 198
  staticParams.outputFlash[1].timing = 15;
199
 
1986 - 200
  staticParams.outputDebugMask = 8;
2048 - 201
  staticParams.outputFlags   = OUTPUTFLAGS_FLASH_0_AT_BEEP | OUTPUTFLAGS_FLASH_1_AT_BEEP | OUTPUTFLAGS_USE_ONBOARD_LEDS;
202
 
2058 - 203
  staticParams.naviMode = 0; // free.
1960 - 204
}
205
 
206
/***************************************************/
207
/*    Default Values for parameter set 1           */
208
/***************************************************/
209
void paramSet_default(uint8_t setnumber) {
210
  setOtherDefaults();
1971 - 211
  gyro_setDefaultParameters();
1960 - 212
 
213
  for (uint8_t i=0; i<8; i++) {
214
    staticParams.userParams[i] = 0;
215
  }
216
 
217
  staticParams.bitConfig =
2052 - 218
    CFG_GYRO_SATURATION_PREVENTION | CFG_COMPASS_ENABLED;
1960 - 219
 
220
  memcpy(staticParams.name, "Default\0", 6);
221
}
222
 
223
/***************************************************/
224
/*    Default Values for Mixer Table               */
225
/***************************************************/
226
void mixerMatrix_default(void) { // Quadro 
227
  uint8_t i;
228
  // mixerMatric.revision = EEMIXER_REVISION;
229
  // clear mixer table (but preset throttle)
230
  for (i = 0; i < 16; i++) {
231
    mixerMatrix.motor[i][MIX_THROTTLE] = i < 4 ? 64 : 0;
232
    mixerMatrix.motor[i][MIX_PITCH] = 0;
233
    mixerMatrix.motor[i][MIX_ROLL] = 0;
234
    mixerMatrix.motor[i][MIX_YAW] = 0;
235
  }
236
  // default = Quadro
237
  mixerMatrix.motor[0][MIX_PITCH] = +64;
238
  mixerMatrix.motor[0][MIX_YAW] = +64;
239
  mixerMatrix.motor[1][MIX_PITCH] = -64;
240
  mixerMatrix.motor[1][MIX_YAW] = +64;
241
  mixerMatrix.motor[2][MIX_ROLL] = -64;
242
  mixerMatrix.motor[2][MIX_YAW] = -64;
243
  mixerMatrix.motor[3][MIX_ROLL] = +64;
244
  mixerMatrix.motor[3][MIX_YAW] = -64;
245
  memcpy(mixerMatrix.name, "Quadro\0", 7);
2020 - 246
 
2026 - 247
  /*
2020 - 248
  // default = X
249
  mixerMatrix.motor[0][MIX_PITCH] = +45;
250
  mixerMatrix.motor[0][MIX_ROLL]  = +45;
251
  mixerMatrix.motor[0][MIX_YAW]   = +64;
252
 
253
  mixerMatrix.motor[1][MIX_PITCH] = -45;
254
  mixerMatrix.motor[1][MIX_ROLL]  = -45;
255
  mixerMatrix.motor[1][MIX_YAW]   = +64;
256
 
257
  mixerMatrix.motor[2][MIX_PITCH] = +45;
258
  mixerMatrix.motor[2][MIX_ROLL]  = -45;
259
  mixerMatrix.motor[2][MIX_YAW]   = -64;
260
 
261
  mixerMatrix.motor[3][MIX_PITCH] = -45;
262
  mixerMatrix.motor[3][MIX_ROLL]  = +45;
263
  mixerMatrix.motor[3][MIX_YAW]   = -64;
2026 - 264
  */
2020 - 265
 
266
  memcpy(mixerMatrix.name, "X\0", 7);
1960 - 267
}
268
 
1968 - 269
/***************************************************/
270
/*    Default Values for R/C Channels              */
271
/***************************************************/
1960 - 272
void channelMap_default(void) {
1968 - 273
  channelMap.channels[CH_PITCH]    = 1;
274
  channelMap.channels[CH_ROLL]     = 0;
275
  channelMap.channels[CH_THROTTLE] = 2;
276
  channelMap.channels[CH_YAW]      = 3;
277
  channelMap.channels[CH_POTS + 0] = 4;
278
  channelMap.channels[CH_POTS + 1] = 5;
279
  channelMap.channels[CH_POTS + 2] = 6;
280
  channelMap.channels[CH_POTS + 3] = 7;
1960 - 281
}