Subversion Repositories FlightCtrl

Rev

Rev 2109 | Rev 2119 | 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"
5
#include "rc.h"
6
#include "output.h"
7
#include "flight.h"
8
 
9
int16_t variables[VARIABLE_COUNT];
10
ParamSet_t staticParams;
2116 - 11
ChannelMap_t channelMap;
2108 - 12
IMUConfig_t IMUConfig;
13
volatile DynamicParams_t dynamicParams;
14
 
15
VersionInfo_t versionInfo;
16
 
17
FlightMode_t currentFlightMode = FLIGHT_MODE_MANUAL;
18
// updated by considering airspeed..
19
volatile uint16_t isFlying = 0;
20
 
21
const MMXLATION XLATIONS[] = {
22
{offsetof(ParamSet_t, externalControl), offsetof(DynamicParams_t, externalControl),0,255},
23
 
24
{offsetof(ParamSet_t, gyroPID[0].P), offsetof(DynamicParams_t, gyroPID[0].P),0,255},
25
{offsetof(ParamSet_t, gyroPID[0].I), offsetof(DynamicParams_t, gyroPID[0].I),0,255},
26
{offsetof(ParamSet_t, gyroPID[0].D), offsetof(DynamicParams_t, gyroPID[0].D),0,255},
27
 
28
{offsetof(ParamSet_t, gyroPID[1].P), offsetof(DynamicParams_t, gyroPID[1].P),0,255},
29
{offsetof(ParamSet_t, gyroPID[1].I), offsetof(DynamicParams_t, gyroPID[1].I),0,255},
30
{offsetof(ParamSet_t, gyroPID[1].D), offsetof(DynamicParams_t, gyroPID[1].D),0,255},
31
 
32
{offsetof(ParamSet_t, gyroPID[2].P), offsetof(DynamicParams_t, gyroPID[2].P),0,255},
33
{offsetof(ParamSet_t, gyroPID[2].I), offsetof(DynamicParams_t, gyroPID[2].I),0,255},
34
{offsetof(ParamSet_t, gyroPID[2].D), offsetof(DynamicParams_t, gyroPID[2].D),0,255},
35
 
36
{offsetof(ParamSet_t, servoConfigurations[0].manualControl), offsetof(DynamicParams_t, servoManualControl[0]),0,255},
37
{offsetof(ParamSet_t, servoConfigurations[1].manualControl), offsetof(DynamicParams_t, servoManualControl[1]),0,255},
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
 
2109 - 87
  staticParams.airspeedCorrection = 100;
88
  staticParams.isFlyingThreshold = 100;
89
 
2108 - 90
  // Servos
91
  staticParams.servoCount = 7;
92
  staticParams.servoManualMaxSpeed = 10;
93
  for (uint8_t i=0; i<2; i++) {
94
    staticParams.servoConfigurations[i].manualControl = 128;
95
    staticParams.servoConfigurations[i].stabilizationFactor = 0;
96
    staticParams.servoConfigurations[i].minValue = 32;
97
    staticParams.servoConfigurations[i].maxValue = 224;
98
    staticParams.servoConfigurations[i].flags = 0;
99
  }
100
 
101
  // Battery warning and emergency flight
102
  staticParams.batteryVoltageWarning = 101;  // 3.7 each for 3S
103
  staticParams.emergencyThrottle = 35;
104
  staticParams.emergencyFlightDuration = 30;
105
 
106
  for (uint8_t i=0; i<3; i++) {
107
          staticParams.gyroPID[i].P = 80;
108
          staticParams.gyroPID[i].I = 80;
109
          staticParams.gyroPID[i].D = 40;
2109 - 110
          staticParams.gyroPID[i].iMax = 45;
2108 - 111
  }
112
 
113
  staticParams.stickIElevator = 80;
114
  staticParams.stickIAilerons = 120;
115
  staticParams.stickIRudder = 40;
116
 
117
  // Outputs
118
  staticParams.outputFlash[0].bitmask = 1; //0b01011111;
119
  staticParams.outputFlash[0].timing = 15;
120
  staticParams.outputFlash[1].bitmask = 3; //0b11110011;
121
  staticParams.outputFlash[1].timing = 15;
122
 
123
  staticParams.outputDebugMask = 8;
124
  staticParams.outputFlags   = OUTPUTFLAGS_FLASH_0_AT_BEEP | OUTPUTFLAGS_FLASH_1_AT_BEEP | OUTPUTFLAGS_USE_ONBOARD_LEDS;
125
}
126
 
127
/***************************************************/
128
/*    Default Values for parameter set 1           */
129
/***************************************************/
130
void paramSet_default(uint8_t setnumber) {
131
  setOtherDefaults();
132
 
133
  for (uint8_t i=0; i<8; i++) {
134
    staticParams.userParams[i] = i;
135
  }
136
 
137
  staticParams.bitConfig =
138
    CFG_GYRO_SATURATION_PREVENTION;
139
 
140
  memcpy(staticParams.name, "Default\0", 6);
141
}
142
 
143
void IMUConfig_default(void) {
144
  IMUConfig.gyroPIDFilterConstant = 1;
145
  IMUConfig.gyroDFilterConstant = 1;
146
  IMUConfig.rateTolerance = 120;
147
  IMUConfig.gyroDWindowLength = 3;
148
  IMUConfig.gyroQuadrant = 0;
149
  IMUConfig.imuReversedFlags = 0;
150
}
151
 
152
/***************************************************/
153
/*    Default Values for R/C Channels              */
154
/***************************************************/
155
void channelMap_default(void) {
2116 - 156
        channelMap.trim = 0;
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
}