Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1868 - 1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1612 dongfang 2
// + Copyright (c) 04.2007 Holger Buss
1870 - 3
// + Nur für den privaten Gebrauch
1612 dongfang 4
// + www.MikroKopter.com
5
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1870 - 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 (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.
1870 - 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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1870 - 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
1870 - 17
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
18
// + eindeutig als Ursprung verlinkt werden
1612 dongfang 19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1870 - 20
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
1612 dongfang 21
// + Benutzung auf eigene Gefahr
1870 - 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
1870 - 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
1870 - 47
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1612 dongfang 48
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49
// +  POSSIBILITY OF SUCH DAMAGE.
50
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
51
 
52
#include <stdlib.h>
53
#include <avr/io.h>
54
#include "eeprom.h"
55
#include "flight.h"
1845 - 56
#include "output.h"
1612 dongfang 57
 
58
// Necessary for external control and motor test
59
#include "uart0.h"
60
#include "twimaster.h"
61
#include "attitude.h"
62
#include "controlMixer.h"
1775 - 63
#include "commands.h"
1612 dongfang 64
 
65
#define CHECK_MIN_MAX(value, min, max) {if(value < min) value = min; else if(value > max) value = max;}
66
 
67
/*
68
 * These are no longer maintained, just left at 0. The original implementation just summed the acc.
69
 * value to them every 2 ms. No filtering or anything. Just a case for an eventual overflow?? Hey???
70
 */
1645 - 71
// int16_t naviAccPitch = 0, naviAccRoll = 0, naviCntAcc = 0;
1612 dongfang 72
 
1872 - 73
uint8_t gyroPFactor, gyroIFactor; // the PD factors for the attitude control
1612 dongfang 74
uint8_t yawPFactor, yawIFactor; // the PD factors for the yaw control
75
 
76
// Some integral weight constant...
77
uint16_t Ki = 10300 / 33;
78
 
79
/************************************************************************/
80
/*  Filter for motor value smoothing (necessary???)                     */
81
/************************************************************************/
82
int16_t motorFilter(int16_t newvalue, int16_t oldvalue) {
1988 - 83
  switch (staticParams.motorSmoothing) {
1841 - 84
  case 0:
85
    return newvalue;
86
  case 1:
1872 - 87
    return (oldvalue + newvalue) / 2;
1841 - 88
  case 2:
1872 - 89
    if (newvalue > oldvalue)
90
      return (1 * (int16_t) oldvalue + newvalue) / 2; //mean of old and new
91
    else
1841 - 92
      return newvalue - (oldvalue - newvalue) * 1; // 2 * new - old
93
  case 3:
1872 - 94
    if (newvalue < oldvalue)
95
      return (1 * (int16_t) oldvalue + newvalue) / 2; //mean of old and new
96
    else
1841 - 97
      return newvalue - (oldvalue - newvalue) * 1; // 2 * new - old
1872 - 98
  default:
99
    return newvalue;
1841 - 100
  }
1612 dongfang 101
}
102
 
103
/************************************************************************/
104
/*  Neutral Readings                                                    */
105
/************************************************************************/
106
void flight_setNeutral() {
1841 - 107
  MKFlags |= MKFLAG_CALIBRATE;
108
  // not really used here any more.
1960 - 109
  /*
1841 - 110
  dynamicParams.KalmanK = -1;
111
  dynamicParams.KalmanMaxDrift = 0;
112
  dynamicParams.KalmanMaxFusion = 32;
1960 - 113
  */
1841 - 114
  controlMixer_initVariables();
1612 dongfang 115
}
116
 
1872 - 117
void setFlightParameters(uint8_t _Ki, uint8_t _gyroPFactor,
118
    uint8_t _gyroIFactor, uint8_t _yawPFactor, uint8_t _yawIFactor) {
1841 - 119
  Ki = 10300 / _Ki;
120
  gyroPFactor = _gyroPFactor;
121
  gyroIFactor = _gyroIFactor;
122
  yawPFactor = _yawPFactor;
123
  yawIFactor = _yawIFactor;
1612 dongfang 124
}
125
 
126
void setNormalFlightParameters(void) {
1956 - 127
  setFlightParameters(
2032 - 128
                      staticParams.IFactor,
1960 - 129
                      dynamicParams.gyroP,
130
                      staticParams.bitConfig & CFG_HEADING_HOLD ? 0 : dynamicParams.gyroI,
131
                      dynamicParams.gyroP,
2032 - 132
                      staticParams.yawIFactor
1956 - 133
                      );
1612 dongfang 134
}
135
 
136
void setStableFlightParameters(void) {
1841 - 137
  setFlightParameters(33, 90, 120, 90, 120);
1612 dongfang 138
}
139
 
140
/************************************************************************/
141
/*  Main Flight Control                                                 */
142
/************************************************************************/
143
void flight_control(void) {
1841 - 144
  int16_t tmp_int;
1872 - 145
  // Mixer Fractions that are combined for Motor Control
1841 - 146
  int16_t yawTerm, throttleTerm, term[2];
1612 dongfang 147
 
1841 - 148
  // PID controller variables
2015 - 149
  int16_t PDPart[2],/* DPart[2],*/ PDPartYaw /*, DPartYaw */;
1872 - 150
  static int32_t IPart[2] = { 0, 0 };
1841 - 151
  static uint16_t emergencyFlightTime;
152
  static int8_t debugDataTimer = 1;
1612 dongfang 153
 
1841 - 154
  // High resolution motor values for smoothing of PID motor outputs
155
  static int16_t motorFilters[MAX_MOTORS];
1612 dongfang 156
 
1841 - 157
  uint8_t i, axis;
1612 dongfang 158
 
1908 - 159
  throttleTerm = controls[CONTROL_THROTTLE];
1870 - 160
 
1841 - 161
  // This check removed. Is done on a per-motor basis, after output matrix multiplication.
1960 - 162
  if (throttleTerm < staticParams.minThrottle + 10)
163
    throttleTerm = staticParams.minThrottle + 10;
164
  else if (throttleTerm > staticParams.maxThrottle - 20)
165
    throttleTerm = (staticParams.maxThrottle - 20);
1612 dongfang 166
 
1841 - 167
  /************************************************************************/
168
  /* RC-signal is bad                                                     */
169
  /* This part could be abstracted, as having yet another control input   */
170
  /* to the control mixer: An emergency autopilot control.                */
171
  /************************************************************************/
1775 - 172
 
1872 - 173
  if (controlMixer_getSignalQuality() <= SIGNAL_BAD) { // the rc-frame signal is not reveived or noisy
2026 - 174
    if (controlMixer_didReceiveSignal) beepRCAlarm();
1872 - 175
    if (emergencyFlightTime) {
1841 - 176
      // continue emergency flight
1872 - 177
      emergencyFlightTime--;
178
      if (isFlying > 256) {
179
        // We're probably still flying. Descend slowly.
1960 - 180
        throttleTerm = staticParams.emergencyThrottle; // Set emergency throttle
181
        MKFlags |= (MKFLAG_EMERGENCY_FLIGHT); // Set flag for emergency landing
1872 - 182
        setStableFlightParameters();
1841 - 183
      } else {
1872 - 184
        MKFlags &= ~(MKFLAG_MOTOR_RUN); // Probably not flying, and bad R/C signal. Kill motors.
1841 - 185
      }
186
    } else {
187
      // end emergency flight (just cut the motors???)
1960 - 188
      MKFlags &= ~(MKFLAG_MOTOR_RUN | MKFLAG_EMERGENCY_FLIGHT);
1841 - 189
    }
1872 - 190
  } else {
1841 - 191
    // signal is acceptable
1872 - 192
    if (controlMixer_getSignalQuality() > SIGNAL_BAD) {
1841 - 193
      // Reset emergency landing control variables.
1960 - 194
      MKFlags &= ~(MKFLAG_EMERGENCY_FLIGHT); // clear flag for emergency landing
1841 - 195
      // The time is in whole seconds.
1960 - 196
      emergencyFlightTime = (uint16_t) staticParams.emergencyFlightDuration * 488;
1841 - 197
    }
1612 dongfang 198
 
1841 - 199
    // If some throttle is given, and the motor-run flag is on, increase the probability that we are flying.
1872 - 200
    if (throttleTerm > 40 && (MKFlags & MKFLAG_MOTOR_RUN)) {
1841 - 201
      // increment flight-time counter until overflow.
1872 - 202
      if (isFlying != 0xFFFF)
203
        isFlying++;
204
    } else
205
    /*
206
     * When standing on the ground, do not apply I controls and zero the yaw stick.
207
     * Probably to avoid integration effects that will cause the copter to spin
208
     * or flip when taking off.
209
     */
1960 - 210
      if (isFlying < 256) {
211
        IPart[PITCH] = IPart[ROLL] = 0;
2026 - 212
        PDPartYaw = 0;
1960 - 213
        if (isFlying == 250) {
214
          // HC_setGround();
215
          updateCompassCourse = 1;
216
          yawAngleDiff = 0;
217
        }
218
      } else {
219
        // Set fly flag. TODO: Hmmm what can we trust - the isFlying counter or the flag?
220
        // Answer: The counter. The flag is not read from anywhere anyway... except the NC maybe.
221
        MKFlags |= (MKFLAG_FLY);
1841 - 222
      }
1960 - 223
 
1872 - 224
    commands_handleCommands();
1841 - 225
    setNormalFlightParameters();
226
  } // end else (not bad signal case)
1960 - 227
 
1841 - 228
  /************************************************************************/
229
  /*  Yawing                                                              */
230
  /************************************************************************/
1960 - 231
  if (abs(controls[CONTROL_YAW]) > 4 * staticParams.stickYawP) { // yaw stick is activated
1841 - 232
    ignoreCompassTimer = 1000;
1960 - 233
    if (!(staticParams.bitConfig & CFG_COMPASS_FIX)) {
1841 - 234
      updateCompassCourse = 1;
235
    }
236
  }
1872 - 237
 
1960 - 238
  // yawControlRate = controlYaw;
1841 - 239
  // Trim drift of yawAngleDiff with controlYaw.
240
  // TODO: We want NO feedback of control related stuff to the attitude related stuff.
241
  // This seems to be used as: Difference desired <--> real heading.
1908 - 242
  yawAngleDiff -= controls[CONTROL_YAW];
1872 - 243
 
1841 - 244
  // limit the effect
245
  CHECK_MIN_MAX(yawAngleDiff, -50000, 50000);
1872 - 246
 
1841 - 247
  /************************************************************************/
248
  /* Compass is currently not supported.                                  */
249
  /************************************************************************/
1960 - 250
  if (staticParams.bitConfig & (CFG_COMPASS_ACTIVE | CFG_GPS_ACTIVE)) {
1841 - 251
    updateCompass();
252
  }
1872 - 253
 
1805 - 254
#if defined (USE_NAVICTRL)
1841 - 255
  /************************************************************************/
256
  /* GPS is currently not supported.                                      */
257
  /************************************************************************/
258
  if(staticParams.GlobalConfig & CFG_GPS_ACTIVE) {
259
    GPS_Main();
260
    MKFlags &= ~(MKFLAG_CALIBRATE | MKFLAG_START);
261
  } else {
262
  }
1612 dongfang 263
#endif
1841 - 264
  // end part 1: 750-800 usec.
265
  // start part 3: 350 - 400 usec.
1645 - 266
#define SENSOR_LIMIT  (4096 * 4)
1872 - 267
  /************************************************************************/
1775 - 268
 
1872 - 269
  /* Calculate control feedback from angle (gyro integral)                */
270
  /* and angular velocity (gyro signal)                                   */
271
  /************************************************************************/
272
  // The P-part is the P of the PID controller. That's the angle integrals (not rates).
273
  for (axis = PITCH; axis <= ROLL; axis++) {
2015 - 274
    PDPart[axis] = angle[axis] * gyroIFactor / (44000 / CONTROL_SCALING); // P-Part - Proportional to Integral
2026 - 275
    PDPart[axis] += ((int32_t) rate_PID[axis] * gyroPFactor / (256L / CONTROL_SCALING));
276
    PDPart[axis] += (differential[axis] * (int16_t) dynamicParams.gyroD) / 16;
1841 - 277
    CHECK_MIN_MAX(PDPart[axis], -SENSOR_LIMIT, SENSOR_LIMIT);
278
  }
1775 - 279
 
2015 - 280
  PDPartYaw = (int32_t) (yawAngleDiff * yawIFactor) / (2 * (44000 / CONTROL_SCALING));
281
  PDPartYaw += (int32_t) (yawRate * 2 * (int32_t) yawPFactor) / (256L / CONTROL_SCALING);
1872 - 282
 
1841 - 283
  // limit control feedback
1992 - 284
  // CHECK_MIN_MAX(PDPartYaw, -SENSOR_LIMIT, SENSOR_LIMIT);
1872 - 285
 
1841 - 286
  /*
287
   * Compose throttle term.
288
   * If a Bl-Ctrl is missing, prevent takeoff.
289
   */
1872 - 290
  if (missingMotor) {
1841 - 291
    // if we are in the lift off condition. Hmmmmmm when is throttleTerm == 0 anyway???
1872 - 292
    if (isFlying > 1 && isFlying < 50 && throttleTerm > 0)
1841 - 293
      isFlying = 1; // keep within lift off condition
1960 - 294
    throttleTerm = staticParams.minThrottle; // reduce gas to min to avoid lift of
1841 - 295
  }
1612 dongfang 296
 
1841 - 297
  // Scale up to higher resolution. Hmm why is it not (from controlMixer and down) scaled already?
298
  throttleTerm *= CONTROL_SCALING;
1612 dongfang 299
 
1841 - 300
  /*
301
   * Compose yaw term.
302
   * The yaw term is limited: Absolute value is max. = the throttle term / 2.
303
   * However, at low throttle the yaw term is limited to a fixed value,
304
   * and at high throttle it is limited by the throttle reserve (the difference
305
   * between current throttle and maximum throttle).
306
   */
1645 - 307
#define MIN_YAWGAS (40 * CONTROL_SCALING)  // yaw also below this gas value
1908 - 308
  yawTerm = PDPartYaw - controls[CONTROL_YAW] * CONTROL_SCALING;
1841 - 309
  // Limit yawTerm
1955 - 310
  debugOut.digital[0] &= ~DEBUG_CLIP;
1872 - 311
  if (throttleTerm > MIN_YAWGAS) {
312
    if (yawTerm < -throttleTerm / 2) {
1955 - 313
      debugOut.digital[0] |= DEBUG_CLIP;
1872 - 314
      yawTerm = -throttleTerm / 2;
315
    } else if (yawTerm > throttleTerm / 2) {
1955 - 316
      debugOut.digital[0] |= DEBUG_CLIP;
1872 - 317
      yawTerm = throttleTerm / 2;
1841 - 318
    }
319
  } else {
1872 - 320
    if (yawTerm < -MIN_YAWGAS / 2) {
1955 - 321
      debugOut.digital[0] |= DEBUG_CLIP;
1872 - 322
      yawTerm = -MIN_YAWGAS / 2;
323
    } else if (yawTerm > MIN_YAWGAS / 2) {
1955 - 324
      debugOut.digital[0] |= DEBUG_CLIP;
1872 - 325
      yawTerm = MIN_YAWGAS / 2;
1841 - 326
    }
327
  }
1775 - 328
 
1960 - 329
  tmp_int = staticParams.maxThrottle * CONTROL_SCALING;
1845 - 330
  if (yawTerm < -(tmp_int - throttleTerm)) {
331
    yawTerm = -(tmp_int - throttleTerm);
1955 - 332
    debugOut.digital[0] |= DEBUG_CLIP;
1845 - 333
  } else if (yawTerm > (tmp_int - throttleTerm)) {
334
    yawTerm = (tmp_int - throttleTerm);
1955 - 335
    debugOut.digital[0] |= DEBUG_CLIP;
1841 - 336
  }
1867 - 337
 
1841 - 338
  // CHECK_MIN_MAX(yawTerm, -(tmp_int - throttleTerm), (tmp_int - throttleTerm));
1955 - 339
  debugOut.digital[1] &= ~DEBUG_CLIP;
1872 - 340
  for (axis = PITCH; axis <= ROLL; axis++) {
1841 - 341
    /*
342
     * Compose pitch and roll terms. This is finally where the sticks come into play.
343
     */
1872 - 344
    if (gyroIFactor) {
1841 - 345
      // Integration mode: Integrate (angle - stick) = the difference between angle and stick pos.
346
      // That means: Holding the stick a little forward will, at constant flight attitude, cause this to grow (decline??) over time.
347
      // TODO: Find out why this seems to be proportional to stick position - not integrating it at all.
2015 - 348
      IPart[axis] += PDPart[axis] - controls[axis]; // Integrate difference between P part (the angle) and the stick pos.
1841 - 349
    } else {
350
      // "HH" mode: Integrate (rate - stick) = the difference between rotation rate and stick pos.
351
      // To keep up with a full stick PDPart should be about 156...
1908 - 352
      IPart[axis] += PDPart[axis] - controls[axis]; // With gyroIFactor == 0, PDPart is really just a D-part. Integrate D-part (the rot. rate) and the stick pos.
1841 - 353
    }
1612 dongfang 354
 
1960 - 355
    tmp_int = (int32_t) ((int32_t) dynamicParams.dynamicStability
1872 - 356
        * (int32_t) (throttleTerm + abs(yawTerm) / 2)) / 64;
1612 dongfang 357
 
1841 - 358
    // TODO: From which planet comes the 16000?
359
    CHECK_MIN_MAX(IPart[axis], -(CONTROL_SCALING * 16000L), (CONTROL_SCALING * 16000L));
360
    // Add (P, D) parts minus stick pos. to the scaled-down I part.
1908 - 361
    term[axis] = PDPart[axis] - controls[axis] + IPart[axis] / Ki; // PID-controller for pitch
1991 - 362
        term[axis] += (dynamicParams.levelCorrection[axis] - 128);
1841 - 363
    /*
364
     * Apply "dynamic stability" - that is: Limit pitch and roll terms to a growing function of throttle and yaw(!).
365
     * The higher the dynamic stability parameter, the wider the bounds. 64 seems to be a kind of unity
366
     * (max. pitch or roll term is the throttle value).
367
     * TODO: Why a growing function of yaw?
368
     */
369
    if (term[axis] < -tmp_int) {
1955 - 370
      debugOut.digital[1] |= DEBUG_CLIP;
1841 - 371
    } else if (term[axis] > tmp_int) {
1955 - 372
      debugOut.digital[1] |= DEBUG_CLIP;
1841 - 373
    }
374
  }
1775 - 375
 
1841 - 376
  // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
377
  // Universal Mixer
378
  // Each (pitch, roll, throttle, yaw) term is in the range [0..255 * CONTROL_SCALING].
379
  // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1612 dongfang 380
 
1976 - 381
  debugOut.analog[3]  = rate_ATT[PITCH];
382
  debugOut.analog[4]  = rate_ATT[ROLL];
383
  debugOut.analog[5]  = yawRate;
384
 
385
  debugOut.analog[6]  = filteredAcc[PITCH];
386
  debugOut.analog[7]  = filteredAcc[ROLL];
387
  debugOut.analog[8]  = filteredAcc[Z];
388
 
1955 - 389
  debugOut.analog[12] = term[PITCH];
390
  debugOut.analog[13] = term[ROLL];
391
  debugOut.analog[14] = yawTerm;
392
  debugOut.analog[15] = throttleTerm;
1775 - 393
 
1872 - 394
  for (i = 0; i < MAX_MOTORS; i++) {
1874 - 395
    int32_t tmp;
1908 - 396
    uint8_t throttle;
397
 
1960 - 398
    tmp = (int32_t)throttleTerm * mixerMatrix.motor[i][MIX_THROTTLE];
399
    tmp += (int32_t)term[PITCH] * mixerMatrix.motor[i][MIX_PITCH];
400
    tmp += (int32_t)term[ROLL] * mixerMatrix.motor[i][MIX_ROLL];
401
    tmp += (int32_t)yawTerm * mixerMatrix.motor[i][MIX_YAW];
1908 - 402
    tmp = tmp >> 6;
403
    motorFilters[i] = motorFilter(tmp, motorFilters[i]);
404
    // Now we scale back down to a 0..255 range.
405
    tmp = motorFilters[i] / MOTOR_SCALING;
406
 
407
    // So this was the THIRD time a throttle was limited. But should the limitation
408
    // apply to the common throttle signal (the one used for setting the "power" of
409
    // all motors together) or should it limit the throttle set for each motor,
410
    // including mix components of pitch, roll and yaw? I think only the common
411
    // throttle should be limited.
412
    // --> WRONG. This caused motors to stall completely in tight maneuvers.
413
    // Apply to individual signals instead.
414
    CHECK_MIN_MAX(tmp, 1, 255);
415
    throttle = tmp;
416
 
2017 - 417
    // if (i < 4) debugOut.analog[22 + i] = throttle;
1908 - 418
 
1960 - 419
    if ((MKFlags & MKFLAG_MOTOR_RUN) && mixerMatrix.motor[i][MIX_THROTTLE] > 0) {
2035 - 420
      motor[i].throttle = throttle;
1872 - 421
    } else if (motorTestActive) {
2035 - 422
      motor[i].throttle = motorTest[i];
1841 - 423
    } else {
2035 - 424
      motor[i].throttle = 0;
1841 - 425
    }
426
  }
1872 - 427
 
1841 - 428
  I2C_Start(TWI_STATE_MOTOR_TX);
1872 - 429
 
1841 - 430
  // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
431
  // Debugging
432
  // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1872 - 433
  if (!(--debugDataTimer)) {
1841 - 434
    debugDataTimer = 24; // update debug outputs at 488 / 24 = 20.3 Hz.
1955 - 435
    debugOut.analog[0] = (10 * angle[PITCH]) / GYRO_DEG_FACTOR_PITCHROLL; // in 0.1 deg
436
    debugOut.analog[1] = (10 * angle[ROLL]) / GYRO_DEG_FACTOR_PITCHROLL; // in 0.1 deg
437
    debugOut.analog[2] = yawGyroHeading / GYRO_DEG_FACTOR_YAW;
1841 - 438
  }
1612 dongfang 439
}