Subversion Repositories FlightCtrl

Rev

Rev 2142 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2108 - 1
#include <util/delay.h>
2
#include <stddef.h>
3
#include <string.h>
4
#include "configuration.h"
2139 - 5
#include "controlMixer.h"
2108 - 6
#include "rc.h"
7
#include "output.h"
8
#include "flight.h"
9
 
10
int16_t variables[VARIABLE_COUNT];
11
ParamSet_t staticParams;
2116 - 12
ChannelMap_t channelMap;
2129 - 13
RCTrim_t rcTrim;
2108 - 14
IMUConfig_t IMUConfig;
15
volatile DynamicParams_t dynamicParams;
16
 
17
VersionInfo_t versionInfo;
18
 
19
FlightMode_t currentFlightMode = FLIGHT_MODE_MANUAL;
20
// updated by considering airspeed..
21
volatile uint16_t isFlying = 0;
22
 
23
const MMXLATION XLATIONS[] = {
24
{offsetof(ParamSet_t, externalControl), offsetof(DynamicParams_t, externalControl),0,255},
25
 
26
{offsetof(ParamSet_t, gyroPID[0].P), offsetof(DynamicParams_t, gyroPID[0].P),0,255},
27
{offsetof(ParamSet_t, gyroPID[0].I), offsetof(DynamicParams_t, gyroPID[0].I),0,255},
28
{offsetof(ParamSet_t, gyroPID[0].D), offsetof(DynamicParams_t, gyroPID[0].D),0,255},
29
 
30
{offsetof(ParamSet_t, gyroPID[1].P), offsetof(DynamicParams_t, gyroPID[1].P),0,255},
31
{offsetof(ParamSet_t, gyroPID[1].I), offsetof(DynamicParams_t, gyroPID[1].I),0,255},
32
{offsetof(ParamSet_t, gyroPID[1].D), offsetof(DynamicParams_t, gyroPID[1].D),0,255},
33
 
34
{offsetof(ParamSet_t, gyroPID[2].P), offsetof(DynamicParams_t, gyroPID[2].P),0,255},
35
{offsetof(ParamSet_t, gyroPID[2].I), offsetof(DynamicParams_t, gyroPID[2].I),0,255},
36
{offsetof(ParamSet_t, gyroPID[2].D), offsetof(DynamicParams_t, gyroPID[2].D),0,255},
37
 
38
{offsetof(ParamSet_t, outputFlash[0].timing), offsetof(DynamicParams_t, output0Timing),0,255},
39
{offsetof(ParamSet_t, outputFlash[1].timing), offsetof(DynamicParams_t, output1Timing),0,255},
40
};
41
 
42
uint8_t configuration_applyVariableToParam(uint8_t src, uint8_t min, uint8_t max) {
43
  uint8_t result;
44
  if (src>=(256-VARIABLE_COUNT)) result = variables[src-(256-VARIABLE_COUNT)];
45
  else result = src;
46
  if (result < min) result = min;
47
  else if (result > max) result = max;
48
  return result;
49
}
50
 
51
void configuration_applyVariablesToParams(void) {
52
  uint8_t i, src;
53
  uint8_t* pointerToTgt;
54
 
55
  for(i=0; i<sizeof(XLATIONS)/sizeof(MMXLATION); i++) {
56
    src = *((uint8_t*)(&staticParams) + XLATIONS[i].sourceIdx);
57
    pointerToTgt = (uint8_t*)(&dynamicParams) + XLATIONS[i].targetIdx;
58
    *pointerToTgt = configuration_applyVariableToParam(src, XLATIONS[i].min, XLATIONS[i].max);
59
  }
60
 
61
  // User parameters are always variable.
62
  for (i=0; i<sizeof(staticParams.userParams); i++) {
63
    src = *((uint8_t*)(&staticParams) + offsetof(ParamSet_t, userParams) + i);
64
    pointerToTgt = (uint8_t*)(&dynamicParams) + offsetof(DynamicParams_t, userParams) + i;
65
    *pointerToTgt = configuration_applyVariableToParam(src, 0, 255);
66
  }
67
}
68
 
69
void configuration_setFlightParameters(uint8_t newFlightMode) {
70
        currentFlightMode = newFlightMode;
71
        flight_updateFlightParametersToFlightMode();
72
}
73
 
74
// Called after a change in configuration parameters, as a hook for modules to take over changes.
75
void configuration_paramSetDidChange(void) {
76
  // This should be OK to do here as long as we don't change parameters during emergency flight. We don't.
77
  configuration_setFlightParameters(currentFlightMode);
78
  // Immediately load changes to output, and also signal the paramset change.
79
  output_init();
80
}
81
 
82
void setOtherDefaults(void) {
83
  // Control
84
  staticParams.externalControl = 0;
85
  staticParams.IFactor = 52;
86
 
2137 - 87
  staticParams.airspeedCorrection = 1;
2143 - 88
  staticParams.isFlyingThreshold = 4;
2109 - 89
 
2143 - 90
  staticParams.minFlashAirspeed = 5;
91
  staticParams.maxFlashAirspeed = 9;
92
 
2108 - 93
  // Servos
2142 - 94
  staticParams.servoCount = 6;
2139 - 95
  staticParams.servos[CONTROL_ELEVATOR].reverse = 0;
2142 - 96
  staticParams.servos[CONTROL_AILERONS].reverse = 0; // 1 for extra.
2139 - 97
  staticParams.servos[CONTROL_RUDDER].reverse = 0;
2129 - 98
 
2142 - 99
  for (uint8_t i=0; i<4; i++) {
100
      staticParams.servos[i].minValue = 80;
101
      staticParams.servos[i].maxValue = 80;
102
  }
103
 
2108 - 104
  // Battery warning and emergency flight
2119 - 105
  staticParams.batteryWarningVoltage = 101;  // 3.7 each for 3S
2108 - 106
 
107
  for (uint8_t i=0; i<3; i++) {
2136 - 108
          staticParams.gyroPID[i].P = 40;
2142 - 109
          staticParams.gyroPID[i].I = 20;
110
          staticParams.gyroPID[i].D = 20;
111
          staticParams.gyroPID[i].iMax = 30; // 60 for extra.
2108 - 112
  }
113
 
2132 - 114
  staticParams.stickIElevator = 40;
115
  staticParams.stickIAilerons = 60;
116
  staticParams.stickIRudder = 20;
2108 - 117
 
118
  // Outputs
119
  staticParams.outputFlash[0].bitmask = 1; //0b01011111;
120
  staticParams.outputFlash[0].timing = 15;
121
  staticParams.outputFlash[1].bitmask = 3; //0b11110011;
122
  staticParams.outputFlash[1].timing = 15;
123
 
2142 - 124
  staticParams.outputDebugMask = 0;
2108 - 125
  staticParams.outputFlags   = OUTPUTFLAGS_FLASH_0_AT_BEEP | OUTPUTFLAGS_FLASH_1_AT_BEEP | OUTPUTFLAGS_USE_ONBOARD_LEDS;
126
}
127
 
128
/***************************************************/
129
/*    Default Values for parameter set 1           */
130
/***************************************************/
131
void paramSet_default(uint8_t setnumber) {
132
  setOtherDefaults();
133
 
134
  for (uint8_t i=0; i<8; i++) {
135
    staticParams.userParams[i] = i;
136
  }
137
 
138
  staticParams.bitConfig =
139
    CFG_GYRO_SATURATION_PREVENTION;
140
 
141
  memcpy(staticParams.name, "Default\0", 6);
142
}
143
 
144
void IMUConfig_default(void) {
2138 - 145
  IMUConfig.gyroPIDFilterConstant = 10;
2108 - 146
  IMUConfig.gyroDFilterConstant = 1;
147
  IMUConfig.rateTolerance = 120;
2141 - 148
  IMUConfig.gyroDWindowLength = 8;
2135 - 149
  IMUConfig.gyroQuadrant = 4;
2142 - 150
  IMUConfig.imuReversedFlags = 0;
2108 - 151
}
152
 
153
/***************************************************/
154
/*    Default Values for R/C Channels              */
155
/***************************************************/
156
void channelMap_default(void) {
2129 - 157
  channelMap.RCPolarity = 1;
2141 - 158
  channelMap.HWTrim = 175;
2135 - 159
  channelMap.variableOffset = 131;
2108 - 160
  channelMap.channels[CH_ELEVATOR] = 1;
161
  channelMap.channels[CH_AILERONS] = 0;
162
  channelMap.channels[CH_THROTTLE] = 2;
163
  channelMap.channels[CH_RUDDER]   = 3;
164
  channelMap.channels[CH_POTS + 0] = 4;
165
  channelMap.channels[CH_POTS + 1] = 5;
166
  channelMap.channels[CH_POTS + 2] = 6;
167
  channelMap.channels[CH_POTS + 3] = 7;
168
}