Rev 903 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | ingob | 1 | /*####################################################################################### |
2 | Flight Control |
||
3 | #######################################################################################*/ |
||
4 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
5 | // + Copyright (c) 04.2007 Holger Buss |
||
6 | // + Nur für den privaten Gebrauch |
||
7 | // + www.MikroKopter.com |
||
8 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
886 | killagreg | 9 | // + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation), |
10 | // + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist. |
||
11 | // + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt |
||
12 | // + bzgl. der Nutzungsbedingungen aufzunehmen. |
||
1 | ingob | 13 | // + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen, |
14 | // + Verkauf von Luftbildaufnahmen, usw. |
||
15 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
886 | killagreg | 16 | // + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht, |
1 | ingob | 17 | // + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen |
18 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
19 | // + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts |
||
20 | // + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de" |
||
21 | // + eindeutig als Ursprung verlinkt werden |
||
22 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
23 | // + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion |
||
24 | // + Benutzung auf eigene Gefahr |
||
25 | // + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden |
||
26 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
886 | killagreg | 27 | // + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur |
1 | ingob | 28 | // + mit unserer Zustimmung zulässig |
29 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
30 | // + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen |
||
31 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
886 | killagreg | 32 | // + Redistributions of source code (with or without modifications) must retain the above copyright notice, |
1 | ingob | 33 | // + this list of conditions and the following disclaimer. |
34 | // + * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived |
||
35 | // + from this software without specific prior written permission. |
||
886 | killagreg | 36 | // + * The use of this project (hardware, software, binary files, sources and documentation) is only permittet |
1 | ingob | 37 | // + for non-commercial use (directly or indirectly) |
886 | killagreg | 38 | // + Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted |
1 | ingob | 39 | // + with our written permission |
886 | killagreg | 40 | // + * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be |
41 | // + clearly linked as origin |
||
831 | hbuss | 42 | // + * porting to systems other than hardware from www.mikrokopter.de is not allowed |
1 | ingob | 43 | // + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
44 | // + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
||
45 | // + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||
46 | // + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
||
47 | // + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
||
48 | // + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
||
49 | // + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
||
492 | hbuss | 50 | // + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
1 | ingob | 51 | // + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
886 | killagreg | 52 | // + POSSIBILITY OF SUCH DAMAGE. |
1 | ingob | 53 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
886 | killagreg | 54 | #include <stdlib.h> |
55 | #include <avr/io.h> |
||
1 | ingob | 56 | |
57 | #include "main.h" |
||
886 | killagreg | 58 | #include "eeprom.h" |
59 | #include "timer0.h" |
||
60 | #include "_Settings.h" |
||
61 | #include "analog.h" |
||
62 | #include "fc.h" |
||
63 | #include "uart.h" |
||
64 | #include "rc.h" |
||
65 | #include "twimaster.h" |
||
66 | #include "timer2.h" |
||
67 | #ifdef USE_KILLAGREG |
||
68 | #include "mm3.h" |
||
69 | #include "gps.h" |
||
70 | #endif |
||
909 | pangu | 71 | #ifdef USE_MK3MAG |
886 | killagreg | 72 | #include "mk3mag.h" |
909 | pangu | 73 | #include "gps.h" |
886 | killagreg | 74 | #endif |
75 | #include "led.h" |
||
1 | ingob | 76 | |
886 | killagreg | 77 | volatile uint16_t I2CTimeout = 100; |
78 | // gyro readings |
||
79 | volatile int16_t Reading_GyroPitch, Reading_GyroRoll, Reading_GyroYaw; |
||
80 | // gyro neutral readings |
||
81 | volatile int16_t AdNeutralPitch = 0, AdNeutralRoll = 0, AdNeutralYaw = 0; |
||
82 | volatile int16_t StartNeutralRoll = 0, StartNeutralPitch = 0; |
||
83 | // mean accelerations |
||
84 | volatile int16_t Mean_AccPitch, Mean_AccRoll, Mean_AccTop; |
||
85 | |||
86 | // neutral acceleration readings |
||
87 | volatile int16_t NeutralAccX=0, NeutralAccY=0; |
||
1 | ingob | 88 | volatile float NeutralAccZ = 0; |
89 | |||
886 | killagreg | 90 | // attitude gyro integrals |
91 | volatile int32_t IntegralPitch = 0,IntegralPitch2 = 0; |
||
92 | volatile int32_t IntegralRoll = 0,IntegralRoll2 = 0; |
||
93 | volatile int32_t IntegralYaw = 0; |
||
94 | volatile int32_t Reading_IntegralGyroPitch = 0, Reading_IntegralGyroPitch2 = 0; |
||
95 | volatile int32_t Reading_IntegralGyroRoll = 0, Reading_IntegralGyroRoll2 = 0; |
||
96 | volatile int32_t Reading_IntegralGyroYaw = 0; |
||
97 | volatile int32_t MeanIntegralPitch; |
||
98 | volatile int32_t MeanIntegralRoll; |
||
1 | ingob | 99 | |
886 | killagreg | 100 | // attitude acceleration integrals |
101 | volatile int32_t IntegralAccPitch = 0, IntegralAccRoll = 0; |
||
102 | volatile int32_t Reading_Integral_Top = 0; |
||
103 | |||
104 | // compass course |
||
105 | volatile int16_t CompassHeading = -1; // negative angle indicates invalid data. |
||
106 | volatile int16_t CompassCourse = -1; |
||
107 | volatile int16_t CompassOffCourse = 0; |
||
108 | volatile uint8_t CompassCalState = 0; |
||
109 | uint8_t FunnelCourse = 0; |
||
110 | uint16_t BadCompassHeading = 500; |
||
111 | int32_t YawGyroHeading; |
||
112 | int16_t YawGyroDrift; |
||
113 | |||
114 | |||
115 | int16_t NaviAccPitch = 0, NaviAccRoll = 0, NaviCntAcc = 0; |
||
116 | |||
117 | |||
118 | // flags |
||
119 | uint8_t MotorsOn = 0; |
||
120 | uint8_t EmergencyLanding = 0; |
||
121 | uint16_t Model_Is_Flying = 0; |
||
122 | |||
123 | int32_t TurnOver180Pitch = 250000L, TurnOver180Roll = 250000L; |
||
124 | |||
125 | float Gyro_P_Factor; |
||
126 | float Gyro_I_Factor; |
||
127 | |||
128 | volatile int16_t DiffPitch, DiffRoll; |
||
129 | |||
130 | int16_t Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0, Poti5 = 0, Poti6 = 0, Poti7 = 0, Poti8 = 0; |
||
131 | |||
132 | // setpoints for motors |
||
903 | pangu | 133 | #ifdef HEXAKOPTER |
134 | volatile uint8_t Motor_FrontLeft, Motor_FrontRight, Motor_RearLeft, Motor_RearRight, Motor_Right, Motor_Left; |
||
135 | #else |
||
136 | volatile uint8_t Motor_Front, Motor_Rear, Motor_Right, Motor_Left; //used by twimaster isr |
||
137 | #endif |
||
886 | killagreg | 138 | |
139 | // stick values derived by rc channels readings |
||
140 | int16_t StickPitch = 0, StickRoll = 0, StickYaw = 0, StickThrust = 0; |
||
141 | int16_t GPS_Pitch = 0, GPS_Roll = 0; |
||
142 | |||
143 | int16_t MaxStickPitch = 0, MaxStickRoll = 0; |
||
144 | // stick values derived by uart inputs |
||
145 | int16_t ExternStickPitch = 0, ExternStickRoll = 0, ExternStickYaw = 0, ExternHeightValue = -20; |
||
146 | |||
147 | |||
148 | |||
149 | |||
150 | int16_t ReadingHeight = 0; |
||
151 | int16_t SetPointHeight = 0; |
||
152 | |||
153 | int16_t AttitudeCorrectionRoll = 0, AttitudeCorrectionPitch = 0; |
||
154 | |||
155 | float Ki = FACTOR_I; |
||
156 | |||
157 | uint8_t Looping_Pitch = 0, Looping_Roll = 0; |
||
158 | uint8_t Looping_Left = 0, Looping_Right = 0, Looping_Down = 0, Looping_Top = 0; |
||
159 | |||
160 | |||
161 | fc_param_t FCParam = {48,251,16,58,64,150,150,2,10,0,0,0,0,0,0,0,0,100,70,0,0,100}; |
||
162 | |||
163 | |||
164 | /************************************************************************/ |
||
165 | /* Creates numbeeps beeps at the speaker */ |
||
166 | /************************************************************************/ |
||
167 | void Beep(uint8_t numbeeps) |
||
1 | ingob | 168 | { |
886 | killagreg | 169 | while(numbeeps--) |
170 | { |
||
171 | if(MotorsOn) return; //auf keinen Fall im Flug! |
||
172 | BeepTime = 100; // 0.1 second |
||
173 | Delay_ms(250); // blocks 250 ms as pause to next beep, |
||
174 | // this will block the flight control loop, |
||
175 | // therefore do not use this funktion if motors are running |
||
176 | } |
||
1 | ingob | 177 | } |
178 | |||
886 | killagreg | 179 | /************************************************************************/ |
180 | /* Neutral Readings */ |
||
181 | /************************************************************************/ |
||
1 | ingob | 182 | void SetNeutral(void) |
183 | { |
||
886 | killagreg | 184 | NeutralAccX = 0; |
1 | ingob | 185 | NeutralAccY = 0; |
186 | NeutralAccZ = 0; |
||
886 | killagreg | 187 | AdNeutralPitch = 0; |
188 | AdNeutralRoll = 0; |
||
189 | AdNeutralYaw = 0; |
||
190 | FCParam.Yaw_PosFeedback = 0; |
||
191 | FCParam.Yaw_NegFeedback = 0; |
||
192 | CalibMean(); |
||
395 | hbuss | 193 | Delay_ms_Mess(100); |
886 | killagreg | 194 | CalibMean(); |
195 | if((ParamSet.GlobalConfig & CFG_HEIGHT_CONTROL)) // Height Control activated? |
||
513 | hbuss | 196 | { |
886 | killagreg | 197 | if((ReadingAirPressure > 950) || (ReadingAirPressure < 750)) SearchAirPressureOffset(); |
513 | hbuss | 198 | } |
886 | killagreg | 199 | AdNeutralPitch = AdValueGyrPitch; |
200 | AdNeutralRoll = AdValueGyrRoll; |
||
201 | AdNeutralYaw = AdValueGyrYaw; |
||
202 | StartNeutralRoll = AdNeutralRoll; |
||
203 | StartNeutralPitch = AdNeutralPitch; |
||
204 | if(GetParamWord(PID_ACC_PITCH) > 1023) |
||
513 | hbuss | 205 | { |
886 | killagreg | 206 | NeutralAccY = abs(Mean_AccRoll) / ACC_AMPLIFY; |
207 | NeutralAccX = abs(Mean_AccPitch) / ACC_AMPLIFY; |
||
208 | NeutralAccZ = Current_AccZ; |
||
513 | hbuss | 209 | } |
886 | killagreg | 210 | else |
211 | { |
||
212 | NeutralAccX = (int16_t)GetParamWord(PID_ACC_PITCH); |
||
213 | NeutralAccY = (int16_t)GetParamWord(PID_ACC_ROLL); |
||
214 | NeutralAccZ = (int16_t)GetParamWord(PID_ACC_Z); |
||
215 | } |
||
216 | Reading_IntegralGyroPitch = 0; |
||
217 | Reading_IntegralGyroPitch2 = 0; |
||
218 | Reading_IntegralGyroRoll = 0; |
||
219 | Reading_IntegralGyroRoll2 = 0; |
||
220 | Reading_IntegralGyroYaw = 0; |
||
221 | Reading_GyroPitch = 0; |
||
222 | Reading_GyroRoll = 0; |
||
223 | Reading_GyroYaw = 0; |
||
224 | StartAirPressure = AirPressure; |
||
225 | HeightD = 0; |
||
226 | Reading_Integral_Top = 0; |
||
227 | CompassCourse = CompassHeading; |
||
228 | BeepTime = 50; |
||
229 | TurnOver180Pitch = ((int32_t) ParamSet.AngleTurnOverPitch * 2500L) +15000L; |
||
230 | TurnOver180Roll = ((int32_t) ParamSet.AngleTurnOverRoll * 2500L) +15000L; |
||
231 | ExternHeightValue = 0; |
||
232 | GPS_Pitch = 0; |
||
233 | GPS_Roll = 0; |
||
234 | YawGyroHeading = CompassHeading * YAW_GYRO_DEG_FACTOR; |
||
235 | YawGyroDrift = 0; |
||
1 | ingob | 236 | } |
237 | |||
886 | killagreg | 238 | /************************************************************************/ |
239 | /* Averaging Measurement Readings */ |
||
240 | /************************************************************************/ |
||
241 | void Mean(void) |
||
242 | { |
||
243 | static int32_t tmpl,tmpl2; |
||
401 | hbuss | 244 | |
886 | killagreg | 245 | // Get offset corrected gyro readings (~ to angular velocity) |
246 | Reading_GyroYaw = AdNeutralYaw - AdValueGyrYaw; |
||
247 | Reading_GyroRoll = AdValueGyrRoll - AdNeutralRoll; |
||
248 | Reading_GyroPitch = AdValueGyrPitch - AdNeutralPitch; |
||
604 | hbuss | 249 | |
886 | killagreg | 250 | // Acceleration Sensor |
251 | // sliding average sensor readings |
||
252 | Mean_AccPitch = ((int32_t)Mean_AccPitch * 1 + ((ACC_AMPLIFY * (int32_t)AdValueAccPitch))) / 2L; |
||
253 | Mean_AccRoll = ((int32_t)Mean_AccRoll * 1 + ((ACC_AMPLIFY * (int32_t)AdValueAccRoll))) / 2L; |
||
254 | Mean_AccTop = ((int32_t)Mean_AccTop * 1 + ((int32_t)AdValueAccTop)) / 2L; |
||
255 | |||
256 | // sum sensor readings for later averaging |
||
257 | IntegralAccPitch += ACC_AMPLIFY * AdValueAccPitch; |
||
258 | IntegralAccRoll += ACC_AMPLIFY * AdValueAccRoll; |
||
259 | |||
260 | NaviAccPitch += AdValueAccPitch; |
||
261 | NaviAccRoll += AdValueAccRoll; |
||
805 | hbuss | 262 | NaviCntAcc++; |
882 | hbuss | 263 | |
886 | killagreg | 264 | // Yaw |
265 | // calculate yaw gyro integral (~ to rotation angle) |
||
266 | Reading_IntegralGyroYaw += Reading_GyroYaw; |
||
267 | YawGyroHeading += Reading_GyroYaw; |
||
268 | if(YawGyroHeading >= (360L * YAW_GYRO_DEG_FACTOR)) YawGyroHeading -= 360L * YAW_GYRO_DEG_FACTOR; // 360° Wrap |
||
269 | if(YawGyroHeading < 0) YawGyroHeading += 360L * YAW_GYRO_DEG_FACTOR; |
||
395 | hbuss | 270 | |
1 | ingob | 271 | |
886 | killagreg | 272 | // Coupling fraction |
273 | if(!Looping_Pitch && !Looping_Roll && (ParamSet.GlobalConfig & CFG_AXIS_COUPLING_ACTIVE)) |
||
274 | { |
||
275 | tmpl = (Reading_GyroYaw * Reading_IntegralGyroPitch) / 2048L; |
||
276 | tmpl *= FCParam.Yaw_PosFeedback; |
||
277 | tmpl /= 4096L; |
||
278 | tmpl2 = ( Reading_GyroYaw * Reading_IntegralGyroRoll) / 2048L; |
||
279 | tmpl2 *= FCParam.Yaw_PosFeedback; |
||
280 | tmpl2 /= 4096L; |
||
281 | if(labs(tmpl) > 128 || labs(tmpl2) > 128) FunnelCourse = 1; |
||
282 | } |
||
283 | else tmpl = tmpl2 = 0; |
||
284 | |||
285 | // Roll |
||
286 | Reading_GyroRoll += tmpl; |
||
287 | Reading_GyroRoll += (tmpl2 * FCParam.Yaw_NegFeedback) / 512L; |
||
288 | Reading_IntegralGyroRoll2 += Reading_GyroRoll; |
||
289 | Reading_IntegralGyroRoll += Reading_GyroRoll - AttitudeCorrectionRoll; |
||
290 | if(Reading_IntegralGyroRoll > TurnOver180Roll) |
||
291 | { |
||
292 | Reading_IntegralGyroRoll = -(TurnOver180Roll - 10000L); |
||
293 | Reading_IntegralGyroRoll2 = Reading_IntegralGyroRoll; |
||
294 | } |
||
295 | if(Reading_IntegralGyroRoll < -TurnOver180Roll) |
||
296 | { |
||
297 | Reading_IntegralGyroRoll = (TurnOver180Roll - 10000L); |
||
298 | Reading_IntegralGyroRoll2 = Reading_IntegralGyroRoll; |
||
299 | } |
||
300 | if(AdValueGyrRoll < 15) Reading_GyroRoll = -1000; |
||
301 | if(AdValueGyrRoll < 7) Reading_GyroRoll = -2000; |
||
302 | if(BoardRelease == 10) |
||
303 | { |
||
304 | if(AdValueGyrRoll > 1010) Reading_GyroRoll = +1000; |
||
305 | if(AdValueGyrRoll > 1017) Reading_GyroRoll = +2000; |
||
306 | } |
||
307 | else |
||
308 | { |
||
309 | if(AdValueGyrRoll > 2020) Reading_GyroRoll = +1000; |
||
310 | if(AdValueGyrRoll > 2034) Reading_GyroRoll = +2000; |
||
311 | } |
||
312 | // Pitch |
||
313 | Reading_GyroPitch -= tmpl2; |
||
314 | Reading_GyroPitch -= (tmpl*FCParam.Yaw_NegFeedback) / 512L; |
||
315 | Reading_IntegralGyroPitch2 += Reading_GyroPitch; |
||
316 | Reading_IntegralGyroPitch += Reading_GyroPitch - AttitudeCorrectionPitch; |
||
317 | if(Reading_IntegralGyroPitch > TurnOver180Pitch) |
||
318 | { |
||
319 | Reading_IntegralGyroPitch = -(TurnOver180Pitch - 25000L); |
||
320 | Reading_IntegralGyroPitch2 = Reading_IntegralGyroPitch; |
||
321 | } |
||
322 | if(Reading_IntegralGyroPitch < -TurnOver180Pitch) |
||
323 | { |
||
324 | Reading_IntegralGyroPitch = (TurnOver180Pitch - 25000L); |
||
325 | Reading_IntegralGyroPitch2 = Reading_IntegralGyroPitch; |
||
326 | } |
||
327 | if(AdValueGyrPitch < 15) Reading_GyroPitch = -1000; |
||
328 | if(AdValueGyrPitch < 7) Reading_GyroPitch = -2000; |
||
329 | if(BoardRelease == 10) |
||
330 | { |
||
331 | if(AdValueGyrPitch > 1010) Reading_GyroPitch = +1000; |
||
332 | if(AdValueGyrPitch > 1017) Reading_GyroPitch = +2000; |
||
333 | } |
||
334 | else |
||
335 | { |
||
336 | if(AdValueGyrPitch > 2020) Reading_GyroPitch = +1000; |
||
337 | if(AdValueGyrPitch > 2034) Reading_GyroPitch = +2000; |
||
338 | } |
||
339 | |||
340 | // start ADC again to capture measurement values for the next loop |
||
341 | ADC_Enable(); |
||
342 | |||
343 | IntegralYaw = Reading_IntegralGyroYaw; |
||
344 | IntegralPitch = Reading_IntegralGyroPitch; |
||
345 | IntegralRoll = Reading_IntegralGyroRoll; |
||
346 | IntegralPitch2 = Reading_IntegralGyroPitch2; |
||
347 | IntegralRoll2 = Reading_IntegralGyroRoll2; |
||
348 | |||
349 | if((ParamSet.GlobalConfig & CFG_ROTARY_RATE_LIMITER) && !Looping_Pitch && !Looping_Roll) |
||
350 | { |
||
351 | if(Reading_GyroPitch > 200) Reading_GyroPitch += 4 * (Reading_GyroPitch - 200); |
||
352 | else if(Reading_GyroPitch < -200) Reading_GyroPitch += 4 * (Reading_GyroPitch + 200); |
||
353 | if(Reading_GyroRoll > 200) Reading_GyroRoll += 4 * (Reading_GyroRoll - 200); |
||
354 | else if(Reading_GyroRoll < -200) Reading_GyroRoll += 4 * (Reading_GyroRoll + 200); |
||
355 | } |
||
1 | ingob | 356 | } |
357 | |||
886 | killagreg | 358 | /************************************************************************/ |
359 | /* Averaging Measurement Readings for Calibration */ |
||
360 | /************************************************************************/ |
||
361 | void CalibMean(void) |
||
362 | { |
||
363 | // stop ADC to avoid changing values during calculation |
||
364 | ADC_Disable(); |
||
395 | hbuss | 365 | |
886 | killagreg | 366 | Reading_GyroPitch = AdValueGyrPitch; |
367 | Reading_GyroRoll = AdValueGyrRoll; |
||
368 | Reading_GyroYaw = AdValueGyrYaw; |
||
369 | |||
370 | Mean_AccPitch = ACC_AMPLIFY * (int32_t)AdValueAccPitch; |
||
371 | Mean_AccRoll = ACC_AMPLIFY * (int32_t)AdValueAccRoll; |
||
372 | Mean_AccTop = (int32_t)AdValueAccTop; |
||
373 | // start ADC (enables internal trigger so that the ISR in analog.c |
||
374 | // updates the readings once) |
||
375 | ADC_Enable(); |
||
376 | |||
377 | TurnOver180Pitch = (int32_t) ParamSet.AngleTurnOverPitch * 2500L; |
||
378 | TurnOver180Roll = (int32_t) ParamSet.AngleTurnOverRoll * 2500L; |
||
1 | ingob | 379 | } |
380 | |||
886 | killagreg | 381 | /************************************************************************/ |
382 | /* Transmit Motor Data via I2C */ |
||
383 | /************************************************************************/ |
||
1 | ingob | 384 | void SendMotorData(void) |
886 | killagreg | 385 | { |
386 | if(MOTOR_OFF || !MotorsOn) |
||
387 | { |
||
903 | pangu | 388 | #ifdef HEXAKOPTER |
389 | Motor_RearLeft = 0; |
||
390 | Motor_FrontLeft = 0; |
||
391 | Motor_RearRight = 0; |
||
392 | Motor_FrontRight = 0; |
||
393 | Motor_Right = 0; |
||
394 | Motor_Left = 0; |
||
395 | if(MotorTest[0]) Motor_FrontLeft = Motor_FrontRight = MotorTest[0]; |
||
396 | if(MotorTest[1]) Motor_RearLeft = Motor_RearRight = MotorTest[1]; |
||
397 | if(MotorTest[2]) Motor_Left = MotorTest[2]; |
||
398 | if(MotorTest[3]) Motor_Right = MotorTest[3]; |
||
399 | } |
||
400 | |||
401 | #else |
||
886 | killagreg | 402 | Motor_Rear = 0; |
403 | Motor_Front = 0; |
||
404 | Motor_Right = 0; |
||
405 | Motor_Left = 0; |
||
406 | if(MotorTest[0]) Motor_Front = MotorTest[0]; |
||
407 | if(MotorTest[1]) Motor_Rear = MotorTest[1]; |
||
408 | if(MotorTest[2]) Motor_Left = MotorTest[2]; |
||
409 | if(MotorTest[3]) Motor_Right = MotorTest[3]; |
||
410 | } |
||
1 | ingob | 411 | |
412 | |||
903 | pangu | 413 | #endif |
1 | ingob | 414 | //Start I2C Interrupt Mode |
415 | twi_state = 0; |
||
416 | motor = 0; |
||
886 | killagreg | 417 | I2C_Start(); |
1 | ingob | 418 | } |
419 | |||
420 | |||
421 | |||
886 | killagreg | 422 | /************************************************************************/ |
423 | /* Maps the parameter to poti values */ |
||
424 | /************************************************************************/ |
||
425 | void ParameterMapping(void) |
||
1 | ingob | 426 | { |
886 | killagreg | 427 | if(RC_Quality > 160) // do the mapping of RC-Potis only if the rc-signal is ok |
428 | // else the last updated values are used |
||
429 | { |
||
430 | //update poti values by rc-signals |
||
431 | #define CHK_POTI(b,a,min,max) { if(a > 250) { if(a == 251) b = Poti1; else if(a == 252) b = Poti2; else if(a == 253) b = Poti3; else if(a == 254) b = Poti4;} else b = a; if(b <= min) b = min; else if(b >= max) b = max;} |
||
432 | CHK_POTI(FCParam.MaxHeight,ParamSet.MaxHeight,0,255); |
||
433 | CHK_POTI(FCParam.Height_D,ParamSet.Height_D,0,100); |
||
434 | CHK_POTI(FCParam.Height_P,ParamSet.Height_P,0,100); |
||
435 | CHK_POTI(FCParam.Height_ACC_Effect,ParamSet.Height_ACC_Effect,0,255); |
||
436 | CHK_POTI(FCParam.CompassYawEffect,ParamSet.CompassYawEffect,0,255); |
||
437 | CHK_POTI(FCParam.Gyro_P,ParamSet.Gyro_P,10,255); |
||
438 | CHK_POTI(FCParam.Gyro_I,ParamSet.Gyro_I,0,255); |
||
439 | CHK_POTI(FCParam.I_Factor,ParamSet.I_Factor,0,255); |
||
440 | CHK_POTI(FCParam.UserParam1,ParamSet.UserParam1,0,255); |
||
441 | CHK_POTI(FCParam.UserParam2,ParamSet.UserParam2,0,255); |
||
442 | CHK_POTI(FCParam.UserParam3,ParamSet.UserParam3,0,255); |
||
443 | CHK_POTI(FCParam.UserParam4,ParamSet.UserParam4,0,255); |
||
444 | CHK_POTI(FCParam.UserParam5,ParamSet.UserParam5,0,255); |
||
445 | CHK_POTI(FCParam.UserParam6,ParamSet.UserParam6,0,255); |
||
446 | CHK_POTI(FCParam.UserParam7,ParamSet.UserParam7,0,255); |
||
447 | CHK_POTI(FCParam.UserParam8,ParamSet.UserParam8,0,255); |
||
448 | CHK_POTI(FCParam.ServoPitchControl,ParamSet.ServoPitchControl,0,255); |
||
449 | CHK_POTI(FCParam.LoopThrustLimit,ParamSet.LoopThrustLimit,0,255); |
||
450 | CHK_POTI(FCParam.Yaw_PosFeedback,ParamSet.Yaw_PosFeedback,0,255); |
||
451 | CHK_POTI(FCParam.Yaw_NegFeedback,ParamSet.Yaw_NegFeedback,0,255); |
||
452 | CHK_POTI(FCParam.DynamicStability,ParamSet.DynamicStability,0,255); |
||
453 | Ki = (float) FCParam.I_Factor * FACTOR_I; |
||
454 | } |
||
455 | } |
||
1 | ingob | 456 | |
457 | |||
886 | killagreg | 458 | void SetCompassCalState(void) |
459 | { |
||
460 | static uint8_t stick = 1; |
||
461 | |||
462 | // if pitch is centered or top set stick to zero |
||
463 | if(PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > -20) stick = 0; |
||
464 | // if pitch is down trigger to next cal state |
||
465 | if((PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < -70) && !stick) |
||
466 | { |
||
467 | stick = 1; |
||
468 | CompassCalState++; |
||
469 | if(CompassCalState < 5) Beep(CompassCalState); |
||
470 | else BeepTime = 1000; |
||
471 | } |
||
1 | ingob | 472 | } |
473 | |||
474 | |||
819 | hbuss | 475 | |
886 | killagreg | 476 | /************************************************************************/ |
477 | /* MotorControl */ |
||
478 | /************************************************************************/ |
||
479 | void MotorControl(void) |
||
1 | ingob | 480 | { |
886 | killagreg | 481 | int16_t MotorValue, pd_result, h, tmp_int; |
903 | pangu | 482 | int16_t YawMixFraction, ThrustMixFraction, PitchMixFraction, RollMixFraction; |
886 | killagreg | 483 | static int32_t SumPitch = 0, SumRoll = 0; |
484 | static int32_t SetPointYaw = 0; |
||
485 | static int32_t IntegralErrorPitch = 0; |
||
486 | static int32_t IntegralErrorRoll = 0; |
||
487 | static uint16_t RcLostTimer; |
||
488 | static uint8_t delay_neutral = 0, delay_startmotors = 0, delay_stopmotors = 0; |
||
489 | static uint8_t HeightControlActive = 0; |
||
490 | static int16_t HeightControlThrust = 0; |
||
491 | static int8_t TimerDebugOut = 0; |
||
492 | static uint16_t UpdateCompassCourse = 0; |
||
493 | static int32_t CorrectionPitch, CorrectionRoll; |
||
1 | ingob | 494 | |
886 | killagreg | 495 | Mean(); |
496 | GRN_ON; |
||
1 | ingob | 497 | |
886 | killagreg | 498 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
499 | // determine thrust value |
||
500 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
501 | ThrustMixFraction = StickThrust; |
||
502 | if(ThrustMixFraction < ParamSet.Trust_Min + 10) ThrustMixFraction = ParamSet.Trust_Min + 10; |
||
503 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
504 | // RC-signal is bad |
||
505 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
506 | if(RC_Quality < 120) // the rc-frame signal is not reveived or noisy |
||
507 | { |
||
508 | if(!PcAccess) // if also no PC-Access via UART |
||
509 | { |
||
510 | if(BeepModulation == 0xFFFF) |
||
511 | { |
||
512 | BeepTime = 15000; // 1.5 seconds |
||
513 | BeepModulation = 0x0C00; |
||
514 | } |
||
515 | } |
||
516 | if(RcLostTimer) RcLostTimer--; // decremtent timer after rc sigal lost |
||
517 | else // rc lost countdown finished |
||
518 | { |
||
519 | MotorsOn = 0; // stop all motors |
||
520 | EmergencyLanding = 0; // emergency landing is over |
||
521 | } |
||
522 | ROT_ON; // set red led |
||
523 | if(Model_Is_Flying > 1000) // wahrscheinlich in der Luft --> langsam absenken |
||
524 | { |
||
525 | ThrustMixFraction = ParamSet.EmergencyThrust; // set emergency thrust |
||
526 | EmergencyLanding = 1; // enable emergency landing |
||
527 | // set neutral rc inputs |
||
528 | PPM_diff[ParamSet.ChannelAssignment[CH_PITCH]] = 0; |
||
529 | PPM_diff[ParamSet.ChannelAssignment[CH_ROLL]] = 0; |
||
530 | PPM_diff[ParamSet.ChannelAssignment[CH_YAW]] = 0; |
||
531 | PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] = 0; |
||
532 | PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] = 0; |
||
533 | PPM_in[ParamSet.ChannelAssignment[CH_YAW]] = 0; |
||
534 | } |
||
535 | else MotorsOn = 0; // switch of all motors |
||
536 | } // eof RC_Quality < 120 |
||
537 | else |
||
538 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
539 | // RC-signal is good |
||
540 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
541 | if(RC_Quality > 140) |
||
542 | { |
||
543 | EmergencyLanding = 0; // switch off emergency landing if RC-signal is okay |
||
544 | // reset emergency timer |
||
545 | RcLostTimer = ParamSet.EmergencyThrustDuration * 50; |
||
546 | if(ThrustMixFraction > 40) |
||
547 | { |
||
548 | if(Model_Is_Flying < 0xFFFF) Model_Is_Flying++; |
||
549 | } |
||
550 | if(Model_Is_Flying < 256) |
||
551 | { |
||
552 | SumPitch = 0; |
||
553 | SumRoll = 0; |
||
554 | StickYaw = 0; |
||
555 | if(Model_Is_Flying == 250) UpdateCompassCourse = 1; |
||
556 | } |
||
604 | hbuss | 557 | |
886 | killagreg | 558 | if(Poti1 < PPM_in[ParamSet.ChannelAssignment[CH_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[ParamSet.ChannelAssignment[CH_POTI1]] + 110 && Poti1) Poti1--; |
559 | if(Poti2 < PPM_in[ParamSet.ChannelAssignment[CH_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[ParamSet.ChannelAssignment[CH_POTI2]] + 110 && Poti2) Poti2--; |
||
560 | if(Poti3 < PPM_in[ParamSet.ChannelAssignment[CH_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[ParamSet.ChannelAssignment[CH_POTI3]] + 110 && Poti3) Poti3--; |
||
561 | if(Poti4 < PPM_in[ParamSet.ChannelAssignment[CH_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[ParamSet.ChannelAssignment[CH_POTI4]] + 110 && Poti4) Poti4--; |
||
562 | //PPM24-Extension |
||
563 | if(Poti5 < PPM_in[9] + 110) Poti5++; else if(Poti5 > PPM_in[9] + 110 && Poti5) Poti5--; |
||
564 | if(Poti6 < PPM_in[10] + 110) Poti6++; else if(Poti6 > PPM_in[10] + 110 && Poti6) Poti6--; |
||
565 | if(Poti7 < PPM_in[11] + 110) Poti7++; else if(Poti7 > PPM_in[11] + 110 && Poti7) Poti7--; |
||
566 | if(Poti8 < PPM_in[12] + 110) Poti8++; else if(Poti8 > PPM_in[12] + 110 && Poti8) Poti8--; |
||
567 | //limit poti values |
||
568 | if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255; |
||
569 | if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255; |
||
570 | if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255; |
||
571 | if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255; |
||
572 | //PPM24-Extension |
||
573 | if(Poti5 < 0) Poti5 = 0; else if(Poti5 > 255) Poti5 = 255; |
||
574 | if(Poti6 < 0) Poti6 = 0; else if(Poti6 > 255) Poti6 = 255; |
||
575 | if(Poti7 < 0) Poti7 = 0; else if(Poti7 > 255) Poti7 = 255; |
||
576 | if(Poti8 < 0) Poti8 = 0; else if(Poti8 > 255) Poti8 = 255; |
||
723 | hbuss | 577 | |
886 | killagreg | 578 | // if motors are off and the thrust stick is in the upper position |
903 | pangu | 579 | if(MotorsOn == 0 && (PPM_in[ParamSet.ChannelAssignment[CH_THRUST]] > 80)) |
886 | killagreg | 580 | { |
581 | // and if the yaw stick is in the leftmost position |
||
582 | if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] > 75) |
||
583 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
584 | // calibrate the neutral readings of all attitude sensors |
||
585 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
586 | { |
||
587 | // thrust/yaw joystick is top left |
||
588 | // _________ |
||
589 | // |x | |
||
590 | // | | |
||
591 | // | | |
||
592 | // | | |
||
593 | // | | |
||
594 | // ¯¯¯¯¯¯¯¯¯ |
||
595 | if(++delay_neutral > 200) // not immediately (wait 200 loops = 200 * 2ms = 0.4 s) |
||
596 | { |
||
597 | delay_neutral = 0; |
||
598 | GRN_OFF; |
||
599 | Model_Is_Flying = 0; |
||
600 | // check roll/pitch stick position |
||
601 | // if pitch stick is top or roll stick is left or right --> change parameter setting |
||
602 | // according to roll/pitch stick position |
||
603 | if(PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70 || abs(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]]) > 70) |
||
604 | { |
||
605 | uint8_t setting = 1; // default |
||
606 | // pitch/roll joystick |
||
607 | // _________ |
||
608 | // |2 3 4| |
||
609 | // | | |
||
610 | // |1 5| |
||
611 | // | | |
||
612 | // | | |
||
613 | // ¯¯¯¯¯¯¯¯¯ |
||
614 | // roll stick leftmost and pitch stick centered --> setting 1 |
||
615 | if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > 70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < 70) setting = 1; |
||
616 | // roll stick leftmost and pitch stick topmost --> setting 2 |
||
617 | if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > 70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70) setting = 2; |
||
618 | // roll stick centered an pitch stick topmost --> setting 3 |
||
619 | if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] < 70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70) setting = 3; |
||
620 | // roll stick rightmost and pitch stick topmost --> setting 4 |
||
621 | if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] <-70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70) setting = 4; |
||
622 | // roll stick rightmost and pitch stick centered --> setting 5 |
||
623 | if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] <-70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < 70) setting = 5; |
||
624 | // update active parameter set in eeprom |
||
625 | SetActiveParamSet(setting); |
||
626 | ParamSet_ReadFromEEProm(GetActiveParamSet()); |
||
627 | SetNeutral(); |
||
628 | Beep(GetActiveParamSet()); |
||
629 | } |
||
630 | else |
||
631 | { |
||
632 | if((ParamSet.GlobalConfig & CFG_COMPASS_ACTIVE)) |
||
633 | { |
||
634 | // if roll stick is centered and pitch stick is down |
||
635 | if (abs(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]]) < 20 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < -70) |
||
636 | { |
||
637 | // pitch/roll joystick |
||
638 | // _________ |
||
639 | // | | |
||
640 | // | | |
||
641 | // | | |
||
642 | // | | |
||
643 | // | x | |
||
644 | // ¯¯¯¯¯¯¯¯¯ |
||
645 | // enable calibration state of compass |
||
646 | CompassCalState = 1; |
||
647 | BeepTime = 1000; |
||
648 | } |
||
649 | else // pitch and roll are centered |
||
650 | { |
||
651 | ParamSet_ReadFromEEProm(GetActiveParamSet()); |
||
652 | SetNeutral(); |
||
653 | Beep(GetActiveParamSet()); |
||
654 | } |
||
655 | } |
||
656 | else // pitch and roll are centered |
||
657 | { |
||
658 | ParamSet_ReadFromEEProm(GetActiveParamSet()); |
||
659 | SetNeutral(); |
||
660 | Beep(GetActiveParamSet()); |
||
661 | } |
||
662 | } |
||
663 | } |
||
664 | } |
||
665 | // and if the yaw stick is in the rightmost position |
||
666 | // save the ACC neutral setting to eeprom |
||
667 | else if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] < -75) |
||
668 | { |
||
669 | if(++delay_neutral > 200) // not immediately (wait 200 loops = 200 * 2ms = 0.4 s) |
||
670 | { |
||
671 | delay_neutral = 0; |
||
672 | GRN_OFF; |
||
673 | SetParamWord(PID_ACC_PITCH, 0xFFFF); // make value invalid |
||
674 | Model_Is_Flying = 0; |
||
675 | SetNeutral(); |
||
676 | // Save ACC neutral settings to eeprom |
||
677 | SetParamWord(PID_ACC_PITCH, (uint16_t)NeutralAccX); |
||
678 | SetParamWord(PID_ACC_ROLL, (uint16_t)NeutralAccY); |
||
679 | SetParamWord(PID_ACC_Z, (uint16_t)NeutralAccZ); |
||
680 | Beep(GetActiveParamSet()); |
||
681 | } |
||
682 | } |
||
683 | else delay_neutral = 0; |
||
684 | } |
||
685 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
686 | // thrust stick is down |
||
687 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
688 | if(PPM_in[ParamSet.ChannelAssignment[CH_THRUST]] < -85) |
||
689 | { |
||
690 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
691 | // and yaw stick is rightmost --> start motors |
||
692 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
693 | if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] < -75) |
||
694 | { |
||
695 | if(++delay_startmotors > 200) // not immediately (wait 200 loops = 200 * 2ms = 0.4 s) |
||
696 | { |
||
903 | pangu | 697 | delay_startmotors = 0; // do not repeat if once executed |
886 | killagreg | 698 | Model_Is_Flying = 1; |
699 | MotorsOn = 1; |
||
700 | SetPointYaw = 0; |
||
701 | Reading_IntegralGyroYaw = 0; |
||
702 | Reading_IntegralGyroPitch = 0; |
||
703 | Reading_IntegralGyroRoll = 0; |
||
704 | Reading_IntegralGyroPitch2 = IntegralPitch; |
||
705 | Reading_IntegralGyroRoll2 = IntegralRoll; |
||
706 | SumPitch = 0; |
||
707 | SumRoll = 0; |
||
909 | pangu | 708 | #if defined (USE_KILLAGREG) || defined (USE_MK3MAG) |
886 | killagreg | 709 | if(ParamSet.GlobalConfig & CFG_GPS_ACTIVE) |
710 | { |
||
711 | GPS_SetHomePosition(); |
||
712 | } |
||
713 | #endif |
||
714 | } |
||
715 | } |
||
716 | else delay_startmotors = 0; // reset delay timer if sticks are not in this position |
||
717 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
718 | // and yaw stick is leftmost --> stop motors |
||
719 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
720 | if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] > 75) |
||
721 | { |
||
722 | if(++delay_stopmotors > 200) // not immediately (wait 200 loops = 200 * 2ms = 0.4 s) |
||
723 | { |
||
903 | pangu | 724 | delay_stopmotors = 0; // do not repeat if once executed |
886 | killagreg | 725 | Model_Is_Flying = 0; |
726 | MotorsOn = 0; |
||
909 | pangu | 727 | #if defined (USE_KILLAGREG) || defined (USE_MK3MAG) |
886 | killagreg | 728 | if(ParamSet.GlobalConfig & CFG_GPS_ACTIVE) |
729 | { |
||
730 | GPS_ClearHomePosition(); |
||
731 | } |
||
732 | #endif |
||
733 | } |
||
734 | } |
||
735 | else delay_stopmotors = 0; // reset delay timer if sticks are not in this position |
||
736 | } |
||
737 | // remapping of paameters only if the signal rc-sigbnal conditions are good |
||
738 | } // eof RC_Quality > 150 |
||
739 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
740 | // new values from RC |
||
741 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
742 | if(!NewPpmData-- || EmergencyLanding) // NewData = 0 means new data from RC |
||
743 | { |
||
744 | int tmp_int; |
||
745 | ParameterMapping(); // remapping params (online poti replacement) |
||
746 | // calculate Stick inputs by rc channels (P) and changing of rc channels (D) |
||
747 | StickPitch = (StickPitch * 3 + PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] * ParamSet.Stick_P) / 4; |
||
748 | StickPitch += PPM_diff[ParamSet.ChannelAssignment[CH_PITCH]] * ParamSet.Stick_D; |
||
749 | StickPitch -= (GPS_Pitch); |
||
723 | hbuss | 750 | |
886 | killagreg | 751 | StickRoll = (StickRoll * 3 + PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] * ParamSet.Stick_P) / 4; |
752 | StickRoll += PPM_diff[ParamSet.ChannelAssignment[CH_ROLL]] * ParamSet.Stick_D; |
||
753 | StickRoll -= (GPS_Roll); |
||
595 | hbuss | 754 | |
886 | killagreg | 755 | // direct mapping of yaw and thrust |
756 | StickYaw = -PPM_in[ParamSet.ChannelAssignment[CH_YAW]]; |
||
757 | StickThrust = PPM_in[ParamSet.ChannelAssignment[CH_THRUST]] + 120;// shift to positive numbers |
||
1 | ingob | 758 | |
886 | killagreg | 759 | // update gyro control loop factors |
760 | Gyro_P_Factor = ((float) FCParam.Gyro_P + 10.0) / (256.0 / STICK_GAIN); |
||
761 | Gyro_I_Factor = ((float) FCParam.Gyro_I) / (44000 / STICK_GAIN); |
||
762 | |||
595 | hbuss | 763 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
886 | killagreg | 764 | // Digital Control via DubWise |
595 | hbuss | 765 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
492 | hbuss | 766 | |
886 | killagreg | 767 | #define KEY_VALUE (FCParam.UserParam8 * 4) // step width |
768 | if(DubWiseKeys[1]) BeepTime = 10; |
||
769 | if(DubWiseKeys[1] & DUB_KEY_UP) tmp_int = KEY_VALUE; |
||
770 | else if(DubWiseKeys[1] & DUB_KEY_DOWN) tmp_int = -KEY_VALUE; |
||
771 | else tmp_int = 0; |
||
772 | ExternStickPitch = (ExternStickPitch * 7 + tmp_int) / 8; |
||
773 | if(DubWiseKeys[1] & DUB_KEY_LEFT) tmp_int = KEY_VALUE; |
||
774 | else if(DubWiseKeys[1] & DUB_KEY_RIGHT) tmp_int = -KEY_VALUE; |
||
775 | else tmp_int = 0; |
||
776 | ExternStickRoll = (ExternStickRoll * 7 + tmp_int) / 8; |
||
492 | hbuss | 777 | |
886 | killagreg | 778 | if(DubWiseKeys[0] & 8) ExternStickYaw = 50;else |
779 | if(DubWiseKeys[0] & 4) ExternStickYaw =-50;else ExternStickYaw = 0; |
||
780 | if(DubWiseKeys[0] & 2) ExternHeightValue++; |
||
781 | if(DubWiseKeys[0] & 16) ExternHeightValue--; |
||
782 | |||
783 | StickPitch += (STICK_GAIN * ExternStickPitch) / 8; |
||
784 | StickRoll += (STICK_GAIN * ExternStickRoll) / 8; |
||
785 | StickYaw += (STICK_GAIN * ExternStickYaw); |
||
786 | |||
595 | hbuss | 787 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
886 | killagreg | 788 | //+ Analog control via serial communication |
595 | hbuss | 789 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
492 | hbuss | 790 | |
886 | killagreg | 791 | if(ExternControl.Config & 0x01 && FCParam.UserParam8 > 128) |
792 | { |
||
793 | StickPitch += (int16_t) ExternControl.Pitch * (int16_t) ParamSet.Stick_P; |
||
794 | StickRoll += (int16_t) ExternControl.Roll * (int16_t) ParamSet.Stick_P; |
||
795 | StickYaw += ExternControl.Yaw; |
||
796 | ExternHeightValue = (int16_t) ExternControl.Height * (int16_t)ParamSet.Height_Gain; |
||
797 | if(ExternControl.Thrust < StickThrust) StickThrust = ExternControl.Thrust; |
||
798 | } |
||
799 | if(StickThrust < 0) StickThrust = 0; |
||
723 | hbuss | 800 | |
886 | killagreg | 801 | // disable I part of gyro control feedback |
802 | if(ParamSet.GlobalConfig & CFG_HEADING_HOLD) Gyro_I_Factor = 0; |
||
803 | // avoid negative scaling factors |
||
804 | if(Gyro_P_Factor < 0) Gyro_P_Factor = 0; |
||
805 | if(Gyro_I_Factor < 0) Gyro_I_Factor = 0; |
||
723 | hbuss | 806 | |
886 | killagreg | 807 | |
808 | // update max stick positions for pitch and roll |
||
809 | |||
810 | if(abs(StickPitch / STICK_GAIN) > MaxStickPitch) MaxStickPitch = abs(StickPitch)/STICK_GAIN; |
||
811 | else MaxStickPitch--; |
||
812 | if(abs(StickRoll / STICK_GAIN) > MaxStickRoll) MaxStickRoll = abs(StickRoll)/STICK_GAIN; |
||
813 | else MaxStickRoll--; |
||
814 | |||
815 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
173 | holgerb | 816 | // Looping? |
886 | killagreg | 817 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
173 | holgerb | 818 | |
886 | killagreg | 819 | if((PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_LEFT) Looping_Left = 1; |
820 | else |
||
821 | { |
||
822 | if(Looping_Left) // Hysteresis |
||
823 | { |
||
824 | if((PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] < (ParamSet.LoopThreshold - ParamSet.LoopHysteresis))) Looping_Left = 0; |
||
825 | } |
||
826 | } |
||
827 | if((PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] < -ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_RIGHT) Looping_Right = 1; |
||
828 | else |
||
829 | { |
||
830 | if(Looping_Right) // Hysteresis |
||
831 | { |
||
832 | if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > -(ParamSet.LoopThreshold - ParamSet.LoopHysteresis)) Looping_Right = 0; |
||
833 | } |
||
834 | } |
||
395 | hbuss | 835 | |
886 | killagreg | 836 | if((PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_UP) Looping_Top = 1; |
837 | else |
||
838 | { |
||
839 | if(Looping_Top) // Hysteresis |
||
840 | { |
||
841 | if((PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < (ParamSet.LoopThreshold - ParamSet.LoopHysteresis))) Looping_Top = 0; |
||
842 | } |
||
843 | } |
||
844 | if((PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < -ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_DOWN) Looping_Down = 1; |
||
845 | else |
||
846 | { |
||
847 | if(Looping_Down) // Hysteresis |
||
848 | { |
||
849 | if(PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > -(ParamSet.LoopThreshold - ParamSet.LoopHysteresis)) Looping_Down = 0; |
||
850 | } |
||
851 | } |
||
395 | hbuss | 852 | |
886 | killagreg | 853 | if(Looping_Left || Looping_Right) Looping_Roll = 1; else Looping_Roll = 0; |
854 | if(Looping_Top || Looping_Down) {Looping_Pitch = 1; Looping_Roll = 0; Looping_Left = 0; Looping_Right = 0;} else Looping_Pitch = 0; |
||
855 | } // End of new RC-Values or Emergency Landing |
||
173 | holgerb | 856 | |
395 | hbuss | 857 | |
886 | killagreg | 858 | if(Looping_Roll) BeepTime = 100; |
859 | if(Looping_Roll || Looping_Pitch) |
||
860 | { |
||
861 | if(ThrustMixFraction > ParamSet.LoopThrustLimit) ThrustMixFraction = ParamSet.LoopThrustLimit; |
||
862 | } |
||
395 | hbuss | 863 | |
864 | |||
886 | killagreg | 865 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
866 | //+ LED Control on J16/J17 |
||
867 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
868 | LED1_Time = FCParam.UserParam7; |
||
869 | LED2_Time = FCParam.UserParam8; |
||
870 | LED_Update(); |
||
395 | hbuss | 871 | |
886 | killagreg | 872 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
873 | // in case of emergency landing |
||
874 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
875 | // set all inputs to save values |
||
876 | if(EmergencyLanding) |
||
877 | { |
||
878 | StickYaw = 0; |
||
879 | StickPitch = 0; |
||
880 | StickRoll = 0; |
||
881 | Gyro_P_Factor = (float) 100 / (256.0 / STICK_GAIN); |
||
882 | Gyro_I_Factor = (float) 120 / (44000 / STICK_GAIN); |
||
883 | Looping_Roll = 0; |
||
884 | Looping_Pitch = 0; |
||
885 | MaxStickPitch = 0; |
||
886 | MaxStickRoll = 0; |
||
887 | } |
||
395 | hbuss | 888 | |
886 | killagreg | 889 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
890 | // Trim Gyro-Integrals to ACC-Signals |
||
891 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
614 | hbuss | 892 | |
886 | killagreg | 893 | #define BALANCE_NUMBER 256L |
894 | // sum for averaging |
||
895 | MeanIntegralPitch += IntegralPitch; |
||
896 | MeanIntegralRoll += IntegralRoll; |
||
614 | hbuss | 897 | |
886 | killagreg | 898 | if(Looping_Pitch || Looping_Roll) // if looping in any direction |
899 | { |
||
900 | // reset averaging for acc and gyro integral as well as gyro integral acc correction |
||
901 | MeasurementCounter = 0; |
||
469 | hbuss | 902 | |
886 | killagreg | 903 | IntegralAccPitch = 0; |
904 | IntegralAccRoll = 0; |
||
614 | hbuss | 905 | |
886 | killagreg | 906 | MeanIntegralPitch = 0; |
907 | MeanIntegralRoll = 0; |
||
395 | hbuss | 908 | |
886 | killagreg | 909 | Reading_IntegralGyroPitch2 = Reading_IntegralGyroPitch; |
910 | Reading_IntegralGyroRoll2 = Reading_IntegralGyroRoll; |
||
498 | hbuss | 911 | |
886 | killagreg | 912 | AttitudeCorrectionPitch = 0; |
913 | AttitudeCorrectionRoll = 0; |
||
914 | } |
||
395 | hbuss | 915 | |
886 | killagreg | 916 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
917 | if(!Looping_Pitch && !Looping_Roll) // if not lopping in any direction |
||
918 | { |
||
919 | int32_t tmp_long, tmp_long2; |
||
920 | // determine the deviation of gyro integral from averaged acceleration sensor |
||
921 | tmp_long = (int32_t)(IntegralPitch / ParamSet.GyroAccFactor - (int32_t)Mean_AccPitch); |
||
922 | tmp_long /= 16; |
||
923 | tmp_long2 = (int32_t)(IntegralRoll / ParamSet.GyroAccFactor - (int32_t)Mean_AccRoll); |
||
924 | tmp_long2 /= 16; |
||
395 | hbuss | 925 | |
886 | killagreg | 926 | if((MaxStickPitch > 32) || (MaxStickRoll > 32)) // reduce effect during stick commands |
927 | { |
||
928 | tmp_long /= 3; |
||
929 | tmp_long2 /= 3; |
||
930 | } |
||
931 | if(abs(PPM_in[ParamSet.ChannelAssignment[CH_YAW]]) > 25) // reduce further if yaw stick is active |
||
932 | { |
||
933 | tmp_long /= 3; |
||
934 | tmp_long2 /= 3; |
||
935 | } |
||
395 | hbuss | 936 | |
886 | killagreg | 937 | #define BALANCE 32 |
938 | // limit correction effect |
||
939 | if(tmp_long > BALANCE) tmp_long = BALANCE; |
||
940 | if(tmp_long < -BALANCE) tmp_long =-BALANCE; |
||
941 | if(tmp_long2 > BALANCE) tmp_long2 = BALANCE; |
||
942 | if(tmp_long2 <-BALANCE) tmp_long2 =-BALANCE; |
||
943 | // correct current readings |
||
944 | Reading_IntegralGyroPitch -= tmp_long; |
||
945 | Reading_IntegralGyroRoll -= tmp_long2; |
||
946 | } |
||
947 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
948 | // MeasurementCounter is incremented in the isr of analog.c |
||
949 | if(MeasurementCounter >= BALANCE_NUMBER) // averaging number has reached |
||
950 | { |
||
951 | static int16_t cnt = 0; |
||
952 | static int8_t last_n_p, last_n_n, last_r_p, last_r_n; |
||
953 | static int32_t MeanIntegralPitch_old, MeanIntegralRoll_old; |
||
720 | ingob | 954 | |
886 | killagreg | 955 | // if not lopping in any direction (this should be alwais the case, |
956 | // because the Measurement counter is reset to 0 if looping in any direction is active.) |
||
957 | if(!Looping_Pitch && !Looping_Roll && !FunnelCourse) |
||
958 | { |
||
959 | // Calculate mean value of the gyro integrals |
||
960 | MeanIntegralPitch /= BALANCE_NUMBER; |
||
961 | MeanIntegralRoll /= BALANCE_NUMBER; |
||
720 | ingob | 962 | |
886 | killagreg | 963 | // Calculate mean of the acceleration values |
964 | IntegralAccPitch = (ParamSet.GyroAccFactor * IntegralAccPitch) / BALANCE_NUMBER; |
||
965 | IntegralAccRoll = (ParamSet.GyroAccFactor * IntegralAccRoll ) / BALANCE_NUMBER; |
||
720 | ingob | 966 | |
886 | killagreg | 967 | // Pitch ++++++++++++++++++++++++++++++++++++++++++++++++ |
968 | // Calculate deviation of the averaged gyro integral and the averaged acceleration integral |
||
969 | IntegralErrorPitch = (int32_t)(MeanIntegralPitch - (int32_t)IntegralAccPitch); |
||
970 | CorrectionPitch = IntegralErrorPitch / ParamSet.GyroAccTrim; |
||
971 | AttitudeCorrectionPitch = CorrectionPitch / BALANCE_NUMBER; |
||
972 | // Roll ++++++++++++++++++++++++++++++++++++++++++++++++ |
||
973 | // Calculate deviation of the averaged gyro integral and the averaged acceleration integral |
||
974 | IntegralErrorRoll = (int32_t)(MeanIntegralRoll - (int32_t)IntegralAccRoll); |
||
975 | CorrectionRoll = IntegralErrorRoll / ParamSet.GyroAccTrim; |
||
976 | AttitudeCorrectionRoll = CorrectionRoll / BALANCE_NUMBER; |
||
977 | |||
978 | if((MaxStickPitch > 32) || (MaxStickRoll > 32) || (abs(PPM_in[ParamSet.ChannelAssignment[CH_YAW]]) > 25)) |
||
979 | { |
||
980 | AttitudeCorrectionPitch /= 2; |
||
981 | AttitudeCorrectionRoll /= 2; |
||
982 | } |
||
983 | |||
984 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
985 | // Gyro-Drift ermitteln |
||
986 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
987 | // deviation of gyro pitch integral (IntegralPitch is corrected by averaged acc sensor) |
||
988 | IntegralErrorPitch = IntegralPitch2 - IntegralPitch; |
||
989 | Reading_IntegralGyroPitch2 -= IntegralErrorPitch; |
||
990 | // deviation of gyro pitch integral (IntegralPitch is corrected by averaged acc sensor) |
||
991 | IntegralErrorRoll = IntegralRoll2 - IntegralRoll; |
||
992 | Reading_IntegralGyroRoll2 -= IntegralErrorRoll; |
||
993 | |||
994 | if(YawGyroDrift > BALANCE_NUMBER/2) AdNeutralYaw++; |
||
995 | if(YawGyroDrift < -BALANCE_NUMBER/2) AdNeutralYaw--; |
||
996 | YawGyroDrift = 0; |
||
997 | /* |
||
998 | DebugOut.Analog[17] = IntegralAccPitch / 26; |
||
999 | DebugOut.Analog[18] = IntegralAccRoll / 26; |
||
1000 | DebugOut.Analog[19] = IntegralErrorPitch;// / 26; |
||
1001 | DebugOut.Analog[20] = IntegralErrorRoll;// / 26; |
||
1002 | DebugOut.Analog[21] = MeanIntegralPitch / 26; |
||
1003 | DebugOut.Analog[22] = MeanIntegralRoll / 26; |
||
1004 | //DebugOut.Analog[28] = CorrectionPitch; |
||
1005 | DebugOut.Analog[29] = CorrectionRoll; |
||
1006 | DebugOut.Analog[30] = AttitudeCorrectionRoll * 10; |
||
720 | ingob | 1007 | */ |
886 | killagreg | 1008 | |
1009 | #define ERROR_LIMIT (BALANCE_NUMBER * 4) |
||
1010 | #define ERROR_LIMIT2 (BALANCE_NUMBER * 16) |
||
1011 | #define MOVEMENT_LIMIT 20000 |
||
1012 | // Pitch +++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1013 | cnt = 1;// + labs(IntegralErrorPitch) / 4096; |
||
1014 | CorrectionPitch = 0; |
||
1015 | if(labs(MeanIntegralPitch_old - MeanIntegralPitch) < MOVEMENT_LIMIT) |
||
1016 | { |
||
1017 | if(IntegralErrorPitch > ERROR_LIMIT2) |
||
1018 | { |
||
1019 | if(last_n_p) |
||
1020 | { |
||
1021 | cnt += labs(IntegralErrorPitch) / ERROR_LIMIT2; |
||
1022 | CorrectionPitch = IntegralErrorPitch / 8; |
||
1023 | if(CorrectionPitch > 5000) CorrectionPitch = 5000; |
||
1024 | AttitudeCorrectionPitch += CorrectionPitch / BALANCE_NUMBER; |
||
1025 | } |
||
1026 | else last_n_p = 1; |
||
1027 | } |
||
1028 | else last_n_p = 0; |
||
1029 | if(IntegralErrorPitch < -ERROR_LIMIT2) |
||
1030 | { |
||
1031 | if(last_n_n) |
||
1032 | { |
||
1033 | cnt += labs(IntegralErrorPitch) / ERROR_LIMIT2; |
||
1034 | CorrectionPitch = IntegralErrorPitch / 8; |
||
1035 | if(CorrectionPitch < -5000) CorrectionPitch = -5000; |
||
1036 | AttitudeCorrectionPitch += CorrectionPitch / BALANCE_NUMBER; |
||
1037 | } |
||
1038 | else last_n_n = 1; |
||
1039 | } |
||
1040 | else last_n_n = 0; |
||
1041 | } |
||
1042 | else |
||
1043 | { |
||
1044 | cnt = 0; |
||
1045 | BadCompassHeading = 500; |
||
1046 | } |
||
1047 | if(cnt > ParamSet.DriftComp) cnt = ParamSet.DriftComp; |
||
1048 | // correct Gyro Offsets |
||
1049 | if(IntegralErrorPitch > ERROR_LIMIT) AdNeutralPitch += cnt; |
||
1050 | if(IntegralErrorPitch < -ERROR_LIMIT) AdNeutralPitch -= cnt; |
||
1051 | |||
1052 | // Roll +++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1053 | cnt = 1;// + labs(IntegralErrorPitch) / 4096; |
||
1054 | CorrectionRoll = 0; |
||
1055 | if(labs(MeanIntegralRoll_old - MeanIntegralRoll) < MOVEMENT_LIMIT) |
||
1056 | { |
||
1057 | if(IntegralErrorRoll > ERROR_LIMIT2) |
||
1058 | { |
||
1059 | if(last_r_p) |
||
1060 | { |
||
1061 | cnt += labs(IntegralErrorRoll) / ERROR_LIMIT2; |
||
1062 | CorrectionRoll = IntegralErrorRoll / 8; |
||
1063 | if(CorrectionRoll > 5000) CorrectionRoll = 5000; |
||
1064 | AttitudeCorrectionRoll += CorrectionRoll / BALANCE_NUMBER; |
||
1065 | } |
||
1066 | else last_r_p = 1; |
||
1067 | } |
||
1068 | else last_r_p = 0; |
||
1069 | if(IntegralErrorRoll < -ERROR_LIMIT2) |
||
1070 | { |
||
1071 | if(last_r_n) |
||
1072 | { |
||
1073 | cnt += labs(IntegralErrorRoll) / ERROR_LIMIT2; |
||
1074 | CorrectionRoll = IntegralErrorRoll / 8; |
||
1075 | if(CorrectionRoll < -5000) CorrectionRoll = -5000; |
||
1076 | AttitudeCorrectionRoll += CorrectionRoll / BALANCE_NUMBER; |
||
1077 | } |
||
1078 | else last_r_n = 1; |
||
1079 | } |
||
1080 | else last_r_n = 0; |
||
1081 | } |
||
1082 | else |
||
1083 | { |
||
1084 | cnt = 0; |
||
1085 | BadCompassHeading = 500; |
||
1086 | } |
||
1087 | // correct Gyro Offsets |
||
1088 | if(cnt > ParamSet.DriftComp) cnt = ParamSet.DriftComp; |
||
1089 | if(IntegralErrorRoll > ERROR_LIMIT) AdNeutralRoll += cnt; |
||
1090 | if(IntegralErrorRoll < -ERROR_LIMIT) AdNeutralRoll -= cnt; |
||
720 | ingob | 1091 | /* |
886 | killagreg | 1092 | DebugOut.Analog[27] = CorrectionRoll; |
1093 | DebugOut.Analog[23] = AdNeutralPitch;//10*(AdNeutralPitch - StartNeutralPitch); |
||
1094 | DebugOut.Analog[24] = 10*(AdNeutralRoll - StartNeutralRoll); |
||
720 | ingob | 1095 | */ |
886 | killagreg | 1096 | } |
1097 | else // looping is active |
||
1098 | { |
||
1099 | AttitudeCorrectionRoll = 0; |
||
1100 | AttitudeCorrectionPitch = 0; |
||
1101 | FunnelCourse = 0; |
||
1102 | } |
||
395 | hbuss | 1103 | |
886 | killagreg | 1104 | // if Gyro_I_Factor == 0 , for example at Heading Hold, ignore attitude correction |
1105 | if(!Gyro_I_Factor) |
||
1106 | { |
||
1107 | AttitudeCorrectionRoll = 0; |
||
1108 | AttitudeCorrectionPitch = 0; |
||
1109 | } |
||
1110 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1111 | MeanIntegralPitch_old = MeanIntegralPitch; |
||
1112 | MeanIntegralRoll_old = MeanIntegralRoll; |
||
1113 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1114 | // reset variables used for averaging |
||
1115 | IntegralAccPitch = 0; |
||
1116 | IntegralAccRoll = 0; |
||
1117 | MeanIntegralPitch = 0; |
||
1118 | MeanIntegralRoll = 0; |
||
1119 | MeasurementCounter = 0; |
||
1120 | } // end of averaging |
||
401 | hbuss | 1121 | |
492 | hbuss | 1122 | |
886 | killagreg | 1123 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1124 | // Yawing |
||
1125 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1126 | if(abs(StickYaw) > 15 ) // yaw stick is activated |
||
1127 | { |
||
1128 | if(!(ParamSet.GlobalConfig & CFG_COMPASS_FIX)) |
||
1129 | { |
||
1130 | UpdateCompassCourse = 1; |
||
1131 | CompassCourse = YawGyroHeading; |
||
1132 | BadCompassHeading = 250; |
||
1133 | } |
||
1134 | } |
||
1135 | // exponential stick sensitivity in yawring rate |
||
1136 | tmp_int = (int32_t) ParamSet.Yaw_P * ((int32_t)StickYaw * abs(StickYaw)) / 512L; // expo y = ax + bx² |
||
1137 | tmp_int += (ParamSet.Yaw_P * StickYaw) / 4; |
||
1138 | SetPointYaw = tmp_int; |
||
1139 | // trimm drift of Reading_IntegralGyroYaw with SetPointYaw(StickYaw) |
||
1140 | Reading_IntegralGyroYaw -= tmp_int; |
||
1141 | // limit the effect |
||
1142 | if(Reading_IntegralGyroYaw > 50000) Reading_IntegralGyroYaw = 50000; |
||
1143 | if(Reading_IntegralGyroYaw <-50000) Reading_IntegralGyroYaw =-50000; |
||
614 | hbuss | 1144 | |
886 | killagreg | 1145 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1146 | // Compass |
||
1147 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1148 | // compass code is used if Compass option is selected |
||
1149 | if((ParamSet.GlobalConfig & CFG_COMPASS_ACTIVE)) |
||
1150 | { |
||
1151 | int16_t w, v, r,correction, error; |
||
395 | hbuss | 1152 | |
886 | killagreg | 1153 | if(CompassCalState && MotorsOn == 0 ) |
1154 | { |
||
1155 | SetCompassCalState(); |
||
1156 | #ifdef USE_KILLAGREG |
||
1157 | MM3_Calibrate(); |
||
1158 | #endif |
||
1159 | } |
||
1160 | else |
||
1161 | { |
||
1162 | #ifdef USE_KILLAGREG |
||
1163 | static uint8_t updCompass = 0; |
||
1164 | if (!updCompass--) |
||
1165 | { |
||
1166 | updCompass = 49; // update only at 2ms*50 = 100ms (10Hz) |
||
1167 | MM3_Heading(); |
||
1168 | } |
||
1169 | #endif |
||
819 | hbuss | 1170 | |
886 | killagreg | 1171 | // get maximum attitude angle |
1172 | w = abs(IntegralPitch/512); |
||
1173 | v = abs(IntegralRoll /512); |
||
1174 | if(v > w) w = v; |
||
1175 | // update compass course |
||
1176 | if (w < 25 && UpdateCompassCourse && !BadCompassHeading) |
||
1177 | { |
||
1178 | BeepTime = 200; |
||
1179 | CompassCourse = YawGyroHeading / YAW_GYRO_DEG_FACTOR; |
||
1180 | UpdateCompassCourse = 0; |
||
1181 | } |
||
1182 | // calculate the deviation of the yaw gyro heading and the compass heading |
||
1183 | if (CompassHeading < 0) error = 0; // disable yaw drift compensation if compass heading is undefined |
||
1184 | else error = ((540 + CompassHeading - (YawGyroHeading / YAW_GYRO_DEG_FACTOR)) % 360) - 180; |
||
1185 | correction = w / 8 + 1; |
||
1186 | YawGyroHeading += (error * 8) / correction; |
||
1187 | w = (w * FCParam.CompassYawEffect) / 64; |
||
1188 | w = FCParam.CompassYawEffect - w; |
||
1189 | if(w > 0) |
||
1190 | { |
||
1191 | if(BadCompassHeading) |
||
1192 | { // wait a while |
||
1193 | BadCompassHeading--; |
||
1194 | } |
||
1195 | else |
||
1196 | { // |
||
1197 | YawGyroDrift += error; |
||
1198 | v = 64 + (MaxStickPitch + MaxStickRoll) / 8; |
||
1199 | // calc course deviation |
||
1200 | r = ((540 + (YawGyroHeading / YAW_GYRO_DEG_FACTOR) - CompassCourse) % 360) - 180; |
||
1201 | v = (r * w) / v; // align to compass course |
||
1202 | // limit yaw rate |
||
1203 | w = 3 * FCParam.CompassYawEffect; |
||
1204 | if (v > w) v = w; |
||
1205 | else if (v < -w) v = -w; |
||
1206 | Reading_IntegralGyroYaw += v; |
||
1207 | } |
||
1208 | } |
||
1209 | else |
||
1210 | { // ignore compass at extreme attitudes for a while |
||
1211 | BadCompassHeading = 250; |
||
1212 | } |
||
1213 | } |
||
1214 | } |
||
1 | ingob | 1215 | |
909 | pangu | 1216 | #if defined (USE_KILLAGREG) || defined (USE_MK3MAG) |
886 | killagreg | 1217 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1218 | // GPS |
||
1219 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1220 | if(ParamSet.GlobalConfig & CFG_GPS_ACTIVE) |
||
1221 | { |
||
1222 | GPS_I_Factor = FCParam.UserParam2; |
||
1223 | GPS_P_Factor = FCParam.UserParam5; |
||
1224 | GPS_D_Factor = FCParam.UserParam6; |
||
1225 | if(EmergencyLanding) GPS_Main(230); // enables Comming Home |
||
1226 | else GPS_Main(Poti3); // behavior controlled by Poti3 |
||
1227 | } |
||
1228 | else |
||
1229 | { |
||
1230 | GPS_Pitch = 0; |
||
1231 | GPS_Roll = 0; |
||
1232 | } |
||
1233 | #endif |
||
1234 | |||
1235 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1 | ingob | 1236 | // Debugwerte zuordnen |
886 | killagreg | 1237 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1238 | if(!TimerDebugOut--) |
||
1239 | { |
||
1240 | TimerDebugOut = 24; // update debug outputs every 25*2ms = 50 ms (20Hz) |
||
1241 | DebugOut.Analog[0] = IntegralPitch / ParamSet.GyroAccFactor; |
||
1242 | DebugOut.Analog[1] = IntegralRoll / ParamSet.GyroAccFactor; |
||
1243 | DebugOut.Analog[2] = Mean_AccPitch; |
||
1244 | DebugOut.Analog[3] = Mean_AccRoll; |
||
1245 | DebugOut.Analog[4] = Reading_GyroYaw; |
||
1246 | DebugOut.Analog[5] = ReadingHeight; |
||
1247 | DebugOut.Analog[6] = (Reading_Integral_Top / 512); |
||
903 | pangu | 1248 | // DebugOut.Analog[8] = CompassHeading; |
1249 | DebugOut.Analog[8] = RC_Quality; |
||
886 | killagreg | 1250 | DebugOut.Analog[9] = UBat; |
903 | pangu | 1251 | |
1252 | #ifdef HEXAKOPTER |
||
1253 | DebugOut.Analog[10] = Motor_FrontLeft; |
||
1254 | DebugOut.Analog[11] = Motor_FrontRight; |
||
1255 | DebugOut.Analog[12] = Motor_RearLeft; |
||
1256 | DebugOut.Analog[13] = Motor_RearRight; |
||
1257 | DebugOut.Analog[14] = Motor_Left; |
||
1258 | DebugOut.Analog[15] = Motor_Right; |
||
1259 | #else |
||
886 | killagreg | 1260 | DebugOut.Analog[11] = YawGyroHeading / YAW_GYRO_DEG_FACTOR; |
903 | pangu | 1261 | |
1262 | DebugOut.Analog[12] = Motor_Front; |
||
1263 | DebugOut.Analog[13] = Motor_Rear; |
||
1264 | DebugOut.Analog[14] = Motor_Left; |
||
1265 | DebugOut.Analog[15] = Motor_Right; |
||
1266 | #endif |
||
1267 | |||
886 | killagreg | 1268 | DebugOut.Analog[16] = Mean_AccTop; |
805 | hbuss | 1269 | |
886 | killagreg | 1270 | DebugOut.Analog[20] = ServoValue; |
173 | holgerb | 1271 | |
744 | hbuss | 1272 | |
720 | ingob | 1273 | |
886 | killagreg | 1274 | DebugOut.Analog[30] = GPS_Pitch; |
1275 | DebugOut.Analog[31] = GPS_Roll; |
||
805 | hbuss | 1276 | |
886 | killagreg | 1277 | /* DebugOut.Analog[16] = motor_rx[0]; |
1278 | DebugOut.Analog[17] = motor_rx[1]; |
||
1279 | DebugOut.Analog[18] = motor_rx[2]; |
||
1280 | DebugOut.Analog[19] = motor_rx[3]; |
||
1281 | DebugOut.Analog[20] = motor_rx[0] + motor_rx[1] + motor_rx[2] + motor_rx[3]; |
||
1282 | DebugOut.Analog[20] /= 14; |
||
1283 | DebugOut.Analog[21] = motor_rx[4]; |
||
1284 | DebugOut.Analog[22] = motor_rx[5]; |
||
1285 | DebugOut.Analog[23] = motor_rx[6]; |
||
1286 | DebugOut.Analog[24] = motor_rx[7]; |
||
1287 | DebugOut.Analog[25] = motor_rx[4] + motor_rx[5] + motor_rx[6] + motor_rx[7]; |
||
805 | hbuss | 1288 | |
886 | killagreg | 1289 | DebugOut.Analog[9] = Reading_GyroPitch; |
1290 | DebugOut.Analog[9] = SetPointHeight; |
||
1291 | DebugOut.Analog[10] = Reading_IntegralGyroYaw / 128; |
||
1 | ingob | 1292 | |
886 | killagreg | 1293 | DebugOut.Analog[10] = FCParam.Gyro_I; |
1294 | DebugOut.Analog[10] = ParamSet.Gyro_I; |
||
1295 | DebugOut.Analog[9] = CompassOffCourse; |
||
1296 | DebugOut.Analog[10] = ThrustMixFraction; |
||
1297 | DebugOut.Analog[3] = HeightD * 32; |
||
1298 | DebugOut.Analog[4] = HeightControlThrust; |
||
1299 | */ |
||
1300 | } |
||
604 | hbuss | 1301 | |
886 | killagreg | 1302 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1303 | // calculate control feedback from angle (gyro integral) and agular velocity (gyro signal) |
||
1304 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1 | ingob | 1305 | |
886 | killagreg | 1306 | if(Looping_Pitch) Reading_GyroPitch = Reading_GyroPitch * Gyro_P_Factor; |
1307 | else Reading_GyroPitch = IntegralPitch * Gyro_I_Factor + Reading_GyroPitch * Gyro_P_Factor; |
||
1308 | if(Looping_Roll) Reading_GyroRoll = Reading_GyroRoll * Gyro_P_Factor; |
||
1309 | else Reading_GyroRoll = IntegralRoll * Gyro_I_Factor + Reading_GyroRoll * Gyro_P_Factor; |
||
1310 | Reading_GyroYaw = Reading_GyroYaw * (2 * Gyro_P_Factor) + IntegralYaw * Gyro_I_Factor / 2; |
||
854 | hbuss | 1311 | |
886 | killagreg | 1312 | DebugOut.Analog[21] = Reading_GyroPitch; |
1313 | DebugOut.Analog[22] = Reading_GyroRoll; |
||
1 | ingob | 1314 | |
886 | killagreg | 1315 | // limit control feedback |
1316 | #define MAX_SENSOR (4096 * STICK_GAIN) |
||
1317 | if(Reading_GyroPitch > MAX_SENSOR) Reading_GyroPitch = MAX_SENSOR; |
||
1318 | if(Reading_GyroPitch < -MAX_SENSOR) Reading_GyroPitch = -MAX_SENSOR; |
||
1319 | if(Reading_GyroRoll > MAX_SENSOR) Reading_GyroRoll = MAX_SENSOR; |
||
1320 | if(Reading_GyroRoll < -MAX_SENSOR) Reading_GyroRoll = -MAX_SENSOR; |
||
1321 | if(Reading_GyroYaw > MAX_SENSOR) Reading_GyroYaw = MAX_SENSOR; |
||
1322 | if(Reading_GyroYaw < -MAX_SENSOR) Reading_GyroYaw = -MAX_SENSOR; |
||
855 | hbuss | 1323 | |
886 | killagreg | 1324 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1325 | // Height Control |
||
1326 | // The height control algorithm reduces the thrust but does not increase the thrust. |
||
1327 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1 | ingob | 1328 | |
886 | killagreg | 1329 | ThrustMixFraction *= STICK_GAIN; |
513 | hbuss | 1330 | |
886 | killagreg | 1331 | // If height control is activated and no emergency landing is active |
1332 | if((ParamSet.GlobalConfig & CFG_HEIGHT_CONTROL) && (!EmergencyLanding) ) |
||
1333 | { |
||
1334 | int tmp_int; |
||
1335 | // if height control is activated by an rc channel |
||
1336 | if(ParamSet.GlobalConfig & CFG_HEIGHT_SWITCH) |
||
1337 | { // check if parameter is less than activation threshold |
||
1338 | if(FCParam.MaxHeight < 50) |
||
1339 | { |
||
1340 | SetPointHeight = ReadingHeight - 20; // update SetPoint with current reading |
||
1341 | HeightControlActive = 0; // disable height control |
||
1342 | } |
||
1343 | else HeightControlActive = 1; // enable height control |
||
1344 | } |
||
1345 | else // no switchable height control |
||
1346 | { |
||
1347 | SetPointHeight = ((int16_t) ExternHeightValue + (int16_t) FCParam.MaxHeight) * (int16_t)ParamSet.Height_Gain - 20; |
||
1348 | HeightControlActive = 1; |
||
1349 | } |
||
1350 | // get current height |
||
1351 | h = ReadingHeight; |
||
1352 | // if current height is above the setpoint reduce thrust |
||
1353 | if((h > SetPointHeight) && HeightControlActive) |
||
1354 | { |
||
1355 | // ThrustMixFraction - HightDeviation * P - HeightChange * D - ACCTop * DACC |
||
1356 | // height difference -> P control part |
||
1357 | h = ((h - SetPointHeight) * (int16_t) FCParam.Height_P) / (16 / STICK_GAIN); |
||
1358 | h = ThrustMixFraction - h; // reduce gas |
||
1359 | // height gradient --> D control part |
||
1360 | //h -= (HeightD * FCParam.Height_D) / (8 / STICK_GAIN); // D control part |
||
1361 | h -= (HeightD) / (8 / STICK_GAIN); // D control part |
||
1362 | // acceleration sensor effect |
||
1363 | tmp_int = ((Reading_Integral_Top / 128) * (int32_t) FCParam.Height_ACC_Effect) / (128 / STICK_GAIN); |
||
1364 | if(tmp_int > 70 * STICK_GAIN) tmp_int = 70 * STICK_GAIN; |
||
1365 | else if(tmp_int < -(70 * STICK_GAIN)) tmp_int = -(70 * STICK_GAIN); |
||
1366 | h -= tmp_int; |
||
1367 | // update height control thrust |
||
1368 | HeightControlThrust = (HeightControlThrust*15 + h) / 16; |
||
1369 | // limit thrust reduction |
||
1370 | if(HeightControlThrust < ParamSet.Height_MinThrust * STICK_GAIN) |
||
1371 | { |
||
1372 | if(ThrustMixFraction >= ParamSet.Height_MinThrust * STICK_GAIN) HeightControlThrust = ParamSet.Height_MinThrust * STICK_GAIN; |
||
1373 | // allows landing also if thrust stick is reduced below min thrust on height control |
||
1374 | if(ThrustMixFraction < ParamSet.Height_MinThrust * STICK_GAIN) HeightControlThrust = ThrustMixFraction; |
||
1375 | } |
||
1376 | // limit thrust to stick setting |
||
1377 | if(HeightControlThrust > ThrustMixFraction) HeightControlThrust = ThrustMixFraction; |
||
1378 | ThrustMixFraction = HeightControlThrust; |
||
1379 | } |
||
1380 | } |
||
1381 | // limit thrust to parameter setting |
||
1382 | if(ThrustMixFraction > (ParamSet.Trust_Max - 20) * STICK_GAIN) ThrustMixFraction = (ParamSet.Trust_Max - 20) * STICK_GAIN; |
||
1383 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1384 | // + Mixer and PI-Controller |
||
1385 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1386 | DebugOut.Analog[7] = ThrustMixFraction; |
||
1387 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1388 | // Yaw-Fraction |
||
1389 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1390 | YawMixFraction = Reading_GyroYaw - SetPointYaw * STICK_GAIN; // yaw controller |
||
1391 | #define MIN_YAWTHRUST (40 * STICK_GAIN) // yaw also below this thrust value |
||
1392 | // limit YawMixFraction |
||
1393 | if(ThrustMixFraction > MIN_YAWTHRUST) |
||
1394 | { |
||
1395 | if(YawMixFraction > (ThrustMixFraction / 2)) YawMixFraction = ThrustMixFraction / 2; |
||
1396 | if(YawMixFraction < -(ThrustMixFraction / 2)) YawMixFraction = -(ThrustMixFraction / 2); |
||
1397 | } |
||
1398 | else |
||
1399 | { |
||
1400 | if(YawMixFraction > (MIN_YAWTHRUST / 2)) YawMixFraction = MIN_YAWTHRUST / 2; |
||
1401 | if(YawMixFraction < -(MIN_YAWTHRUST / 2)) YawMixFraction = -(MIN_YAWTHRUST / 2); |
||
1402 | } |
||
1403 | tmp_int = ParamSet.Trust_Max * STICK_GAIN; |
||
1404 | if(YawMixFraction > ((tmp_int - ThrustMixFraction))) YawMixFraction = ((tmp_int - ThrustMixFraction)); |
||
1405 | if(YawMixFraction < -((tmp_int - ThrustMixFraction))) YawMixFraction = -((tmp_int - ThrustMixFraction)); |
||
173 | holgerb | 1406 | |
886 | killagreg | 1407 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1408 | // Pitch-Axis |
||
1409 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1410 | DiffPitch = Reading_GyroPitch - StickPitch; // get difference |
||
1411 | if(Gyro_I_Factor) SumPitch += IntegralPitch * Gyro_I_Factor - StickPitch; // I-part for attitude control |
||
1412 | else SumPitch += DiffPitch; // I-part for head holding |
||
1413 | if(SumPitch > (STICK_GAIN * 16000L)) SumPitch = (STICK_GAIN * 16000L); |
||
1414 | if(SumPitch < -(STICK_GAIN * 16000L)) SumPitch = -(STICK_GAIN * 16000L); |
||
1415 | pd_result = DiffPitch + Ki * SumPitch; // PI-controller for pitch |
||
1416 | |||
1417 | tmp_int = (int32_t)((int32_t)FCParam.DynamicStability * (int32_t)(ThrustMixFraction + abs(YawMixFraction)/2)) / 64; |
||
1418 | if(pd_result > tmp_int) pd_result = tmp_int; |
||
1419 | if(pd_result < -tmp_int) pd_result = -tmp_int; |
||
1420 | |||
903 | pangu | 1421 | PitchMixFraction = pd_result; |
886 | killagreg | 1422 | |
1423 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1424 | // Roll-Axis |
||
1425 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1426 | DiffRoll = Reading_GyroRoll - StickRoll; // get difference |
||
1427 | if(Gyro_I_Factor) SumRoll += IntegralRoll * Gyro_I_Factor - StickRoll; // I-part for attitude control |
||
1428 | else SumRoll += DiffRoll; // I-part for head holding |
||
901 | killagreg | 1429 | if(SumRoll > (STICK_GAIN * 16000L)) SumRoll = (STICK_GAIN * 16000L); |
1430 | if(SumRoll < -(STICK_GAIN * 16000L)) SumRoll = -(STICK_GAIN * 16000L); |
||
886 | killagreg | 1431 | pd_result = DiffRoll + Ki * SumRoll; // PI-controller for roll |
1432 | tmp_int = (int32_t)((int32_t)FCParam.DynamicStability * (int32_t)(ThrustMixFraction + abs(YawMixFraction)/2)) / 64; |
||
1433 | if(pd_result > tmp_int) pd_result = tmp_int; |
||
1434 | if(pd_result < -tmp_int) pd_result = -tmp_int; |
||
1435 | |||
903 | pangu | 1436 | RollMixFraction = pd_result; |
1437 | |||
1438 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1439 | // Calculate Motor Mixes |
||
1440 | // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1441 | |||
1442 | #ifdef HEXAKOPTER |
||
1443 | // Motor FrontLeft |
||
1444 | MotorValue = ThrustMixFraction |
||
1445 | + PitchMixFraction |
||
1446 | + RollMixFraction/2 |
||
1447 | - YawMixFraction; // Mixer |
||
1448 | MotorValue /= STICK_GAIN; |
||
1449 | if (MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
||
1450 | else if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1451 | Motor_FrontLeft = MotorValue; |
||
1452 | |||
1453 | // Motor FrontRight |
||
1454 | MotorValue = ThrustMixFraction |
||
1455 | + PitchMixFraction |
||
1456 | - RollMixFraction/2 |
||
1457 | + YawMixFraction; // Mixer |
||
1458 | MotorValue /= STICK_GAIN; |
||
1459 | if (MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
||
1460 | else if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1461 | Motor_FrontRight = MotorValue; |
||
1462 | |||
1463 | // Motor RearLeft |
||
1464 | MotorValue = ThrustMixFraction |
||
1465 | - PitchMixFraction |
||
1466 | + RollMixFraction/2 |
||
1467 | - YawMixFraction; // Mixer |
||
1468 | MotorValue /= STICK_GAIN; |
||
1469 | if (MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
||
1470 | else if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1471 | Motor_RearLeft = MotorValue; |
||
1472 | |||
1473 | // Motor RearRight |
||
1474 | MotorValue = ThrustMixFraction |
||
1475 | - PitchMixFraction |
||
1476 | - RollMixFraction/2 |
||
1477 | + YawMixFraction; // Mixer |
||
1478 | MotorValue /= STICK_GAIN; |
||
1479 | if (MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
||
1480 | else if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1481 | Motor_RearRight= MotorValue; |
||
1482 | |||
886 | killagreg | 1483 | // Motor Left |
903 | pangu | 1484 | MotorValue = ThrustMixFraction |
1485 | + RollMixFraction |
||
1486 | + YawMixFraction; // Mixer |
||
886 | killagreg | 1487 | MotorValue /= STICK_GAIN; |
903 | pangu | 1488 | if (MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
1489 | else if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1490 | Motor_Left = MotorValue; |
||
1491 | |||
1492 | // Motor Right |
||
1493 | MotorValue = ThrustMixFraction |
||
1494 | - RollMixFraction |
||
1495 | - YawMixFraction; // Mixer |
||
1496 | MotorValue /= STICK_GAIN; |
||
1497 | if (MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
||
1498 | else if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1499 | Motor_Right = MotorValue; |
||
1500 | |||
1501 | #else |
||
1502 | |||
1503 | // Motor Front |
||
1504 | MotorValue = ThrustMixFraction + PitchMixFraction + YawMixFraction; // Mixer |
||
1505 | MotorValue /= STICK_GAIN; |
||
886 | killagreg | 1506 | if ((MotorValue < 0)) MotorValue = 0; |
903 | pangu | 1507 | else if(MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
1508 | if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1509 | Motor_Front = MotorValue; |
||
1510 | |||
1511 | // Motor Rear |
||
1512 | MotorValue = ThrustMixFraction - PitchMixFraction + YawMixFraction; // Mixer |
||
1513 | MotorValue /= STICK_GAIN; |
||
1514 | if ((MotorValue < 0)) MotorValue = 0; |
||
1515 | else if(MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
||
1516 | if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1517 | Motor_Rear = MotorValue; |
||
1518 | |||
1519 | |||
1520 | // Motor Left |
||
1521 | MotorValue = ThrustMixFraction + RollMixFraction - YawMixFraction; // Mixer |
||
1522 | MotorValue /= STICK_GAIN; |
||
1523 | if ((MotorValue < 0)) MotorValue = 0; |
||
886 | killagreg | 1524 | else if(MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
1525 | if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1526 | Motor_Left = MotorValue; |
||
1527 | |||
903 | pangu | 1528 | // Motor Right |
1529 | MotorValue = ThrustMixFraction - RollMixFraction - YawMixFraction; // Mixer |
||
886 | killagreg | 1530 | MotorValue /= STICK_GAIN; |
1531 | if ((MotorValue < 0)) MotorValue = 0; |
||
1532 | else if(MotorValue > ParamSet.Trust_Max) MotorValue = ParamSet.Trust_Max; |
||
1533 | if (MotorValue < ParamSet.Trust_Min) MotorValue = ParamSet.Trust_Min; |
||
1534 | Motor_Right = MotorValue; |
||
903 | pangu | 1535 | #endif |
1 | ingob | 1536 | } |
1537 |