Subversion Repositories FlightCtrl

Rev

Rev 1634 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1612 dongfang 1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
// + Copyright (c) 04.2007 Holger Buss
3
// + Nur für den privaten Gebrauch
4
// + www.MikroKopter.com
5
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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.
8
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
9
// + bzgl. der Nutzungsbedingungen aufzunehmen.
10
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
11
// + Verkauf von Luftbildaufnahmen, usw.
12
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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
15
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
17
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
18
// + eindeutig als Ursprung verlinkt werden
19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
21
// + Benutzung auf eigene Gefahr
22
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
25
// + mit unserer Zustimmung zulässig
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)
35
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
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
47
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
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 "controlMixer.h"
54
#include "rc.h"
55
#include "externalControl.h"
56
#include "configuration.h"
57
#include "attitude.h"
58
#include "eeprom.h"
59
#include "flight.h"
60
 
61
/*
62
 * Number of cycles a command must be repeated before commit. Maybe this really belongs in RC.
63
 */
64
#define COMMAND_TIMER 200
65
 
66
uint16_t maxControlPitch = 0, maxControlRoll = 0;
67
int16_t controlPitch = 0, controlRoll = 0, controlYaw = 0, controlThrottle = 0;
68
uint8_t looping = 0;
69
 
70
// Internal variables for reading commands made with an R/C stick.
71
uint8_t lastCommand  = COMMAND_NONE;
72
uint8_t commandTimer = 0;
73
 
74
/*
75
 * This could be expanded to take arguments from ohter sources than the RC
76
 * (read: Custom MK RC project)
77
 */
78
uint8_t controlMixer_getArgument(void) {
79
  return RC_getArgument();
80
}
81
 
82
/*
83
 * This could be expanded to take calibrate / start / stop commands from ohter sources
84
 * than the R/C (read: Custom MK R/C project)
85
 */
86
uint8_t controlMixer_getCommand(void) {
87
  // If the same command was made COMMAND_TIMER times, it's stable.
88
  if (commandTimer >= COMMAND_TIMER) {
89
    return lastCommand;
90
  }
91
  return COMMAND_NONE;
92
}
93
 
94
uint8_t controlMixer_isCommandRepeated(void) {
95
  return commandTimer > COMMAND_TIMER ? 1 : 0;
96
}
97
 
98
void controlMixer_setNeutral(uint8_t calibrate) {
99
  if (calibrate)
100
    RC_calibrate();
101
  EC_setNeutral();
102
}
103
 
104
/*
105
 * Set the potientiometer values to the momentary values of the respective R/C channels.
106
 * No slew rate limitation.
107
 */
108
void controlMixer_initVariables(void) {
109
  uint8_t i;
110
  for (i=0; i<8; i++) {
111
    variables[i] = RC_getVariable(i);
112
  }
113
}
114
 
115
/*
116
 * Update potentiometer values with limited slew rate. Could be made faster if desired.
117
 */
118
void controlMixer_updateVariables(void) {
119
  uint8_t i;
120
  int16_t targetvalue;
121
  for (i=0; i<8; i++) {
122
    targetvalue = RC_getVariable(i);
123
    if (targetvalue < 0) targetvalue = 0;
124
    if (variables[i] < targetvalue && variables[i] < 255) variables[i]++; else if(variables[i] > 0 && variables[i] > targetvalue) variables[i]--;
125
  }
126
}
127
 
128
uint8_t controlMixer_getSignalQuality(void) {
129
  uint8_t rcQ = RC_getSignalQuality();
130
  uint8_t ecQ = EC_getSignalQuality();
131
  DebugOut.Analog[16] = rcQ;
132
  DebugOut.Analog[17] = ecQ;
133
  // This needs not be the only correct solution...
134
  return rcQ > ecQ ? rcQ : ecQ;
135
}
136
 
137
/*
138
 * Update the variables indicating stick position from the sum of R/C, GPS and external control.
139
 */
140
void controlMixer_update(void) {
141
  // calculate Stick inputs by rc channels (P) and changing of rc channels (D)
142
  // TODO: If no signal --> zero.
143
  RC_update();
144
  EC_update();
145
 
146
  int16_t* RC_PRTY = RC_getPRTY();
147
  int16_t* EC_PRTY = EC_getPRTY();
148
 
149
  controlPitch     = RC_PRTY[CONTROL_PITCH] + EC_PRTY[CONTROL_PITCH];
150
  controlRoll      = RC_PRTY[CONTROL_ROLL] + EC_PRTY[CONTROL_ROLL];
151
  DebugOut.Analog[14] = controlThrottle  = RC_PRTY[CONTROL_THROTTLE] + EC_PRTY[CONTROL_THROTTLE];
152
  DebugOut.Analog[15] = controlYaw       = RC_PRTY[CONTROL_YAW] + EC_PRTY[CONTROL_YAW];
153
 
154
  if (RC_getSignalQuality() >= SIGNAL_GOOD) {
155
    controlMixer_updateVariables();
156
    configuration_applyVariablesToParams();
157
    looping = RC_getLooping(looping);
158
  } else { // Signal is not OK
159
    // Could handle switch to emergency flight here.
160
    // throttle is handled elsewhere.
161
    looping = 0;
162
  }
163
 
164
  DebugOut.Analog[18] = (int16_t)looping;
165
 
166
  // (range of -2 .. 2 is set to zero, to avoid unwanted yaw trimming on compass correction)
167
  // TODO: Correct, for changed range (stick gain + expo is now applied already)
168
  if(staticParams.GlobalConfig & (CFG_COMPASS_ACTIVE | CFG_GPS_ACTIVE)) {
169
    if (controlYaw > 2) controlYaw-= 2;
170
    else if (controlYaw< -2) controlYaw += 2;
171
    else controlYaw = 0;
172
  }
173
 
174
  /*
175
   * Record maxima
176
   */
177
  if(abs(controlPitch / STICK_GAIN) > maxControlPitch) {
178
    maxControlPitch = abs(controlPitch) / STICK_GAIN;
179
    if(maxControlPitch > 100) maxControlPitch = 100;
180
  } else if (maxControlPitch) maxControlPitch--;
181
  if(abs(controlRoll / STICK_GAIN) > maxControlRoll) {
182
    maxControlRoll = abs(controlRoll) / STICK_GAIN;
183
    if(maxControlRoll > 100) maxControlRoll = 100;
184
  }
185
  else if (maxControlRoll) maxControlRoll--;
186
 
187
  // Here we could blend in other sources.
188
  uint8_t commandNow = RC_getCommand();
189
 
190
  if (commandNow != lastCommand) {
191
    lastCommand = commandNow;
192
    commandTimer = 0;
193
  } else if (commandTimer < COMMAND_TIMER + 1)
194
    commandTimer++;
195
}
196
 
197
/*
198
void setCompassCalState(void) {
199
  static uint8_t stick = 1;
200
  // if pitch is centered or top set stick to zero
201
  if(RCChannel(CH_PITCH) > -20) stick = 0;
202
  // if pitch is down trigger to next cal state
203
  if((RCChannel(CH_PITCH) < -70) && !stick) {
204
    stick = 1;
205
    compassCalState++;
206
    if(compassCalState < 5) beepNumber(compassCalState);
207
    else beep(1000);
208
  }
209
}
210
*/