Subversion Repositories FlightCtrl

Rev

Rev 2141 | Go to most recent revision | 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;
2142 - 88
  staticParams.isFlyingThreshold = 10;
2109 - 89
 
2108 - 90
  // Servos
2142 - 91
  staticParams.servoCount = 6;
2139 - 92
  staticParams.servos[CONTROL_ELEVATOR].reverse = 0;
2142 - 93
  staticParams.servos[CONTROL_AILERONS].reverse = 0; // 1 for extra.
2139 - 94
  staticParams.servos[CONTROL_RUDDER].reverse = 0;
2129 - 95
 
2142 - 96
  for (uint8_t i=0; i<4; i++) {
97
      staticParams.servos[i].minValue = 80;
98
      staticParams.servos[i].maxValue = 80;
99
  }
100
 
2108 - 101
  // Battery warning and emergency flight
2119 - 102
  staticParams.batteryWarningVoltage = 101;  // 3.7 each for 3S
2108 - 103
 
104
  for (uint8_t i=0; i<3; i++) {
2136 - 105
          staticParams.gyroPID[i].P = 40;
2142 - 106
          staticParams.gyroPID[i].I = 20;
107
          staticParams.gyroPID[i].D = 20;
108
          staticParams.gyroPID[i].iMax = 30; // 60 for extra.
2108 - 109
  }
110
 
2132 - 111
  staticParams.stickIElevator = 40;
112
  staticParams.stickIAilerons = 60;
113
  staticParams.stickIRudder = 20;
2108 - 114
 
115
  // Outputs
116
  staticParams.outputFlash[0].bitmask = 1; //0b01011111;
117
  staticParams.outputFlash[0].timing = 15;
118
  staticParams.outputFlash[1].bitmask = 3; //0b11110011;
119
  staticParams.outputFlash[1].timing = 15;
120
 
2142 - 121
  staticParams.outputDebugMask = 0;
2108 - 122
  staticParams.outputFlags   = OUTPUTFLAGS_FLASH_0_AT_BEEP | OUTPUTFLAGS_FLASH_1_AT_BEEP | OUTPUTFLAGS_USE_ONBOARD_LEDS;
123
}
124
 
125
/***************************************************/
126
/*    Default Values for parameter set 1           */
127
/***************************************************/
128
void paramSet_default(uint8_t setnumber) {
129
  setOtherDefaults();
130
 
131
  for (uint8_t i=0; i<8; i++) {
132
    staticParams.userParams[i] = i;
133
  }
134
 
135
  staticParams.bitConfig =
136
    CFG_GYRO_SATURATION_PREVENTION;
137
 
138
  memcpy(staticParams.name, "Default\0", 6);
139
}
140
 
141
void IMUConfig_default(void) {
2138 - 142
  IMUConfig.gyroPIDFilterConstant = 10;
2108 - 143
  IMUConfig.gyroDFilterConstant = 1;
144
  IMUConfig.rateTolerance = 120;
2141 - 145
  IMUConfig.gyroDWindowLength = 8;
2135 - 146
  IMUConfig.gyroQuadrant = 4;
2142 - 147
  IMUConfig.imuReversedFlags = 0;
2108 - 148
}
149
 
150
/***************************************************/
151
/*    Default Values for R/C Channels              */
152
/***************************************************/
153
void channelMap_default(void) {
2129 - 154
  channelMap.RCPolarity = 1;
2141 - 155
  channelMap.HWTrim = 175;
2135 - 156
  channelMap.variableOffset = 131;
2108 - 157
  channelMap.channels[CH_ELEVATOR] = 1;
158
  channelMap.channels[CH_AILERONS] = 0;
159
  channelMap.channels[CH_THROTTLE] = 2;
160
  channelMap.channels[CH_RUDDER]   = 3;
161
  channelMap.channels[CH_POTS + 0] = 4;
162
  channelMap.channels[CH_POTS + 1] = 5;
163
  channelMap.channels[CH_POTS + 2] = 6;
164
  channelMap.channels[CH_POTS + 3] = 7;
165
}