Subversion Repositories FlightCtrl

Rev

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