Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1612 dongfang 1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
// + Copyright (c) 04.2007 Holger Buss
2035 - 3
// + Nur f�r den privaten Gebrauch
1612 dongfang 4
// + www.MikroKopter.com
5
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2035 - 6
// + Es gilt f�r das gesamte Projekt (Hardware, Software, Bin�rfiles, Sourcecode und Dokumentation),
7
// + dass eine Nutzung (auch auszugsweise) nur f�r den privaten und nicht-kommerziellen Gebrauch zul�ssig ist.
1612 dongfang 8
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
9
// + bzgl. der Nutzungsbedingungen aufzunehmen.
2035 - 10
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Best�ckung und Verkauf von Platinen oder Baus�tzen,
1612 dongfang 11
// + Verkauf von Luftbildaufnahmen, usw.
12
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2035 - 13
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder ver�ffentlicht,
14
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright m�ssen dann beiliegen
1612 dongfang 15
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
2035 - 17
// + auf anderen Webseiten oder Medien ver�ffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
1963 - 18
// + eindeutig als Ursprung verlinkt und genannt werden
1612 dongfang 19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2035 - 20
// + Keine Gew�hr auf Fehlerfreiheit, Vollst�ndigkeit oder Funktion
1612 dongfang 21
// + Benutzung auf eigene Gefahr
2035 - 22
// + Wir �bernehmen keinerlei Haftung f�r direkte oder indirekte Personen- oder Sachsch�den
1612 dongfang 23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
2035 - 25
// + mit unserer Zustimmung zul�ssig
1612 dongfang 26
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
27
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
28
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
29
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
30
// + this list of conditions and the following disclaimer.
31
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
32
// +     from this software without specific prior written permission.
33
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permittet
34
// +     for non-commercial use (directly or indirectly)
1868 - 35
// +     Commercial use (for example: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
1612 dongfang 36
// +     with our written permission
37
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
38
// +     clearly linked as origin
39
// +   * porting to systems other than hardware from www.mikrokopter.de is not allowed
40
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
41
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
44
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
45
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
46
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1963 - 47
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
48
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1612 dongfang 49
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
50
// +  POSSIBILITY OF SUCH DAMAGE.
51
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
52
#include <util/delay.h>
1775 - 53
#include <stddef.h>
1960 - 54
#include <string.h>
1612 dongfang 55
#include "configuration.h"
1960 - 56
#include "sensors.h"
57
#include "rc.h"
2048 - 58
//#include "uart0.h"
59
#include "output.h"
1977 - 60
 
1961 - 61
int16_t variables[VARIABLE_COUNT];
2039 - 62
ParamSet_t staticParams;
1960 - 63
channelMap_t channelMap;
64
mixerMatrix_t mixerMatrix;
1969 - 65
volatile dynamicParam_t dynamicParams;
66
 
1612 dongfang 67
uint8_t CPUType = ATMEGA644;
1960 - 68
uint8_t boardRelease = 13;
69
uint8_t requiredMotors;
1963 - 70
 
2018 - 71
VersionInfo_t versionInfo;
72
 
1963 - 73
// MK flags. TODO: Replace by enum. State machine.
74
uint16_t isFlying = 0;
75
volatile uint8_t MKFlags = 0;
76
 
1612 dongfang 77
/************************************************************************
78
 * Map the parameter to pot values                                    
1775 - 79
 * Replacing this code by the code below saved almost 1 kbyte.
1612 dongfang 80
 ************************************************************************/
1775 - 81
 
1612 dongfang 82
void configuration_applyVariablesToParams(void) {
83
  uint8_t i;
1986 - 84
 
85
#define SET_POT_MM(b,a,min,max) {if (a>=255-VARIABLE_COUNT) b=variables[a+VARIABLE_COUNT-255]; else b=a; if(b<=min) b=min; else if(b>=max) b=max;}
86
#define SET_POT(b,a) {if (a>=255-VARIABLE_COUNT) b=variables[a+VARIABLE_COUNT-255]; else b=a;}
1960 - 87
  SET_POT_MM(dynamicParams.gyroP, staticParams.gyroP, 5, 200);
88
  SET_POT(dynamicParams.gyroI, staticParams.gyroI);
89
  SET_POT(dynamicParams.gyroD, staticParams.gyroD);
90
  SET_POT(dynamicParams.compassYawEffect,staticParams.compassYawEffect);
91
 
92
  SET_POT(dynamicParams.externalControl, staticParams.externalControl);
93
  SET_POT(dynamicParams.dynamicStability,staticParams.dynamicStability);
1980 - 94
  SET_POT(dynamicParams.maxAccVector,staticParams.maxAccVector);
1960 - 95
 
2032 - 96
  SET_POT(dynamicParams.heightP, staticParams.heightP);
97
  SET_POT(dynamicParams.heightI, staticParams.heightI);
98
  SET_POT(dynamicParams.heightD, staticParams.heightD);
1960 - 99
  SET_POT(dynamicParams.heightSetting,staticParams.heightSetting);
2032 - 100
 
1960 - 101
  SET_POT(dynamicParams.attitudeControl,staticParams.attitudeControl);
102
 
103
  SET_POT(dynamicParams.servoManualControl[0], staticParams.servoConfigurations[0].manualControl);
104
  SET_POT(dynamicParams.servoManualControl[1], staticParams.servoConfigurations[1].manualControl);
105
 
106
  SET_POT_MM(dynamicParams.output0Timing, staticParams.outputFlash[0].timing,1,255);
107
  SET_POT_MM(dynamicParams.output1Timing, staticParams.outputFlash[1].timing,1,255);
1988 - 108
 
109
  SET_POT(dynamicParams.levelCorrection[0], staticParams.levelCorrection[0]);
110
  SET_POT(dynamicParams.levelCorrection[1], staticParams.levelCorrection[1]);
2032 - 111
 
2045 - 112
  SET_POT(dynamicParams.naviMode, staticParams.naviMode);
113
 
2032 - 114
  for (i=0; i<sizeof(staticParams.userParams); i++) {
115
    SET_POT(dynamicParams.userParams[i],staticParams.userParams[i]);
116
  }
1612 dongfang 117
}
118
 
1775 - 119
const XLATION XLATIONS[] = {
2039 - 120
  {offsetof(ParamSet_t, heightSetting), offsetof(dynamicParam_t, heightSetting)},
1775 - 121
};
122
 
123
const MMXLATION MMXLATIONS[] = {
2039 - 124
  {offsetof(ParamSet_t, heightD), offsetof(dynamicParam_t, heightD),0,100},
1775 - 125
};
126
 
127
uint8_t configuration_applyVariableToParam(uint8_t src, uint8_t min, uint8_t max) {
128
  uint8_t result;
129
  if (src>=251) result = variables[src-251];
130
  else result = src;
131
  if (result < min) result = min;
132
  else if (result > max) result = max;
133
  return result;
134
}
135
 
136
void configuration_applyVariablesToParams_dead(void) {
137
  uint8_t i, src;
138
  uint8_t* pointerToTgt;
139
  for(i=0; i<sizeof(XLATIONS)/sizeof(XLATION); i++) {
140
    src = *((uint8_t*)(&staticParams + XLATIONS[i].sourceIdx));
141
    pointerToTgt = (uint8_t*)(&dynamicParams + XLATIONS[i].targetIdx);
142
    if (src < 255) {
143
      *pointerToTgt = configuration_applyVariableToParam(src, 0, 255);
144
    }
145
  }
146
 
147
  for(i=0; i<sizeof(MMXLATIONS)/sizeof(MMXLATION); i++) {
148
    src = *((uint8_t*)(&staticParams + MMXLATIONS[i].sourceIdx));
149
    pointerToTgt = (uint8_t*)(&dynamicParams + XLATIONS[i].targetIdx);
150
    if (src < 255) {
151
      *pointerToTgt = configuration_applyVariableToParam(src, MMXLATIONS[i].min, MMXLATIONS[i].max);
152
    }
153
  }
154
 
1960 - 155
  for (i=0; i<sizeof(staticParams.userParams); i++) {
2039 - 156
    src = *((uint8_t*)(&staticParams + offsetof(ParamSet_t, userParams) + i));
1960 - 157
    pointerToTgt = (uint8_t*)(&dynamicParams + offsetof(dynamicParam_t, userParams) + i);
1775 - 158
    if (src < 255) {
159
      *pointerToTgt = configuration_applyVariableToParam(src, 0, 255);
160
    }    
161
  }
162
}
163
 
1612 dongfang 164
uint8_t getCPUType(void) {   // works only after reset or power on when the registers have default values
165
  uint8_t CPUType = ATMEGA644;
2017 - 166
  if((UCSR1A == 0x20) && (UCSR1C == 0x06)) CPUType = ATMEGA644P;  // initial Values for 644P after reset
1612 dongfang 167
  return CPUType;
168
}
169
 
170
/*
171
 * Automatic detection of hardware components is not supported in this development-oriented
172
 * FC firmware. It would go against the point of it: To enable alternative hardware
173
 * configurations with otherwise unsupported components. Instead, one should write
174
 * custom code + adjust constants for the new hardware, and include the relevant code
175
 * from the makefile.
176
 * However - we still do detect the board release. Reason: Otherwise it would be too
177
 * tedious to have to modify the code for how to turn on and off LEDs when deploying
178
 * on different HW version....
179
 */
180
 
181
uint8_t getBoardRelease(void) {
1960 - 182
  uint8_t boardRelease = 13;
1612 dongfang 183
  // the board release is coded via the pull up or down the 2 status LED
184
 
185
  PORTB &= ~((1 << PORTB1)|(1 << PORTB0)); // set tristate
186
  DDRB  &= ~((1 << DDB0)|(1 << DDB0)); // set port direction as input
187
 
188
  _delay_loop_2(1000); // make some delay
189
 
190
  switch( PINB & ((1<<PINB1)|(1<<PINB0))) {
191
    case 0x00:
1960 - 192
      boardRelease = 10; // 1.0
1612 dongfang 193
      break;
194
    case 0x01:
1960 - 195
      boardRelease = 11; // 1.1 or 1.2
1612 dongfang 196
      break;
197
    case 0x02:
1960 - 198
      boardRelease = 20; // 2.0
1612 dongfang 199
      break;
200
    case 0x03:
1960 - 201
      boardRelease = 13; // 1.3
1612 dongfang 202
      break;
203
    default:
204
      break;
205
    }
206
  // set LED ports as output
207
  DDRB |= (1<<DDB1)|(1<<DDB0);
1964 - 208
  RED_OFF;
1612 dongfang 209
  GRN_OFF;
1960 - 210
  return boardRelease;
1612 dongfang 211
}
1960 - 212
 
213
void setOtherDefaults(void) {
214
  // Height Control
2035 - 215
  staticParams.airpressureFilterConstant = 8;
2036 - 216
  //staticParams.airpressureWindowLength = 0;
2026 - 217
  staticParams.airpressureAccZCorrection = 128+56;
1960 - 218
  staticParams.heightP = 10;
219
  staticParams.heightD = 30;
220
  staticParams.heightSetting = 251;
1961 - 221
  staticParams.heightControlMaxThrottleChange = 10;
1960 - 222
  staticParams.heightSlewRate = 4;
223
 
224
  // Control
225
  staticParams.stickP = 8;
226
  staticParams.stickD = 12;
227
  staticParams.stickYawP = 12;
228
  staticParams.stickThrottleD = 12;
229
  staticParams.minThrottle = 8;
230
  staticParams.maxThrottle = 230;
231
  staticParams.externalControl = 0;
1988 - 232
  staticParams.motorSmoothing = 0;
1960 - 233
 
234
  // IMU
235
  staticParams.gyroPIDFilterConstant = 1;
2036 - 236
  staticParams.gyroATTFilterConstant = 1;
1960 - 237
  staticParams.gyroDFilterConstant = 1;
1977 - 238
  staticParams.accFilterConstant = 10;
1960 - 239
 
240
  staticParams.gyroP = 60;
241
  staticParams.gyroI = 80;
242
  staticParams.gyroD = 4;
243
 
1961 - 244
  // set by gyro-specific code: gyro_setDefaults().
1960 - 245
  // staticParams.zerothOrderCorrection = 
246
  // staticParams.driftCompDivider = 
247
  // staticParams.driftCompLimit = 
248
 
249
  staticParams.axisCoupling1 = 90;
250
  staticParams.axisCoupling2 = 67;
251
  staticParams.axisCouplingYawCorrection = 0;
252
  staticParams.dynamicStability = 50;
1986 - 253
  staticParams.maxAccVector = 10;
1977 - 254
  staticParams.IFactor = 32;
255
  staticParams.yawIFactor = 100;  
1960 - 256
  staticParams.compassYawEffect = 128;
1988 - 257
  staticParams.levelCorrection[0] = staticParams.levelCorrection[1] = 128;
1960 - 258
 
259
  // Servos
1980 - 260
  staticParams.servoCount = 7;
261
  staticParams.servoManualMaxSpeed = 10;
1960 - 262
  for (uint8_t i=0; i<2; i++) {
263
    staticParams.servoConfigurations[i].manualControl = 128;
1980 - 264
    staticParams.servoConfigurations[i].stabilizationFactor = 0;
1977 - 265
    staticParams.servoConfigurations[i].minValue = 32;
266
    staticParams.servoConfigurations[i].maxValue = 224;
1960 - 267
    staticParams.servoConfigurations[i].flags = 0;
268
  }
1980 - 269
 
1960 - 270
  // Battery warning and emergency flight
271
  staticParams.batteryVoltageWarning = 101;  // 3.7 each for 3S
272
  staticParams.emergencyThrottle = 35;
273
  staticParams.emergencyFlightDuration = 30;
274
 
275
  // Outputs
1961 - 276
  staticParams.outputFlash[0].bitmask = 1; //0b01011111;
1960 - 277
  staticParams.outputFlash[0].timing = 15;
1961 - 278
  staticParams.outputFlash[1].bitmask = 3; //0b11110011;
1960 - 279
  staticParams.outputFlash[1].timing = 15;
280
 
1986 - 281
  staticParams.outputDebugMask = 8;
2048 - 282
  staticParams.outputFlags   = OUTPUTFLAGS_FLASH_0_AT_BEEP | OUTPUTFLAGS_FLASH_1_AT_BEEP | OUTPUTFLAGS_USE_ONBOARD_LEDS;
283
 
284
  staticParams.naviMode = 200; // free.
1960 - 285
}
286
 
287
/***************************************************/
288
/*    Default Values for parameter set 1           */
289
/***************************************************/
290
void paramSet_default(uint8_t setnumber) {
291
  setOtherDefaults();
1971 - 292
  gyro_setDefaultParameters();
1960 - 293
 
294
  for (uint8_t i=0; i<8; i++) {
295
    staticParams.userParams[i] = 0;
296
  }
297
 
298
  staticParams.bitConfig =
2044 - 299
    CFG_GYRO_SATURATION_PREVENTION | CFG_HEADING_HOLD | CFG_COMPASS_ACTIVE;
1960 - 300
 
301
  memcpy(staticParams.name, "Default\0", 6);
302
}
303
 
304
/***************************************************/
305
/*    Default Values for Mixer Table               */
306
/***************************************************/
307
void mixerMatrix_default(void) { // Quadro 
308
  uint8_t i;
309
  // mixerMatric.revision = EEMIXER_REVISION;
310
  // clear mixer table (but preset throttle)
311
  for (i = 0; i < 16; i++) {
312
    mixerMatrix.motor[i][MIX_THROTTLE] = i < 4 ? 64 : 0;
313
    mixerMatrix.motor[i][MIX_PITCH] = 0;
314
    mixerMatrix.motor[i][MIX_ROLL] = 0;
315
    mixerMatrix.motor[i][MIX_YAW] = 0;
316
  }
317
  // default = Quadro
318
  mixerMatrix.motor[0][MIX_PITCH] = +64;
319
  mixerMatrix.motor[0][MIX_YAW] = +64;
320
  mixerMatrix.motor[1][MIX_PITCH] = -64;
321
  mixerMatrix.motor[1][MIX_YAW] = +64;
322
  mixerMatrix.motor[2][MIX_ROLL] = -64;
323
  mixerMatrix.motor[2][MIX_YAW] = -64;
324
  mixerMatrix.motor[3][MIX_ROLL] = +64;
325
  mixerMatrix.motor[3][MIX_YAW] = -64;
326
  memcpy(mixerMatrix.name, "Quadro\0", 7);
2020 - 327
 
2026 - 328
  /*
2020 - 329
  // default = X
330
  mixerMatrix.motor[0][MIX_PITCH] = +45;
331
  mixerMatrix.motor[0][MIX_ROLL]  = +45;
332
  mixerMatrix.motor[0][MIX_YAW]   = +64;
333
 
334
  mixerMatrix.motor[1][MIX_PITCH] = -45;
335
  mixerMatrix.motor[1][MIX_ROLL]  = -45;
336
  mixerMatrix.motor[1][MIX_YAW]   = +64;
337
 
338
  mixerMatrix.motor[2][MIX_PITCH] = +45;
339
  mixerMatrix.motor[2][MIX_ROLL]  = -45;
340
  mixerMatrix.motor[2][MIX_YAW]   = -64;
341
 
342
  mixerMatrix.motor[3][MIX_PITCH] = -45;
343
  mixerMatrix.motor[3][MIX_ROLL]  = +45;
344
  mixerMatrix.motor[3][MIX_YAW]   = -64;
2026 - 345
  */
2020 - 346
 
347
  memcpy(mixerMatrix.name, "X\0", 7);
1960 - 348
}
349
 
1968 - 350
/***************************************************/
351
/*    Default Values for R/C Channels              */
352
/***************************************************/
1960 - 353
void channelMap_default(void) {
1968 - 354
  channelMap.channels[CH_PITCH]    = 1;
355
  channelMap.channels[CH_ROLL]     = 0;
356
  channelMap.channels[CH_THROTTLE] = 2;
357
  channelMap.channels[CH_YAW]      = 3;
358
  channelMap.channels[CH_POTS + 0] = 4;
359
  channelMap.channels[CH_POTS + 1] = 5;
360
  channelMap.channels[CH_POTS + 2] = 6;
361
  channelMap.channels[CH_POTS + 3] = 7;
1960 - 362
}