[FLYWOOF411] add board documentation
[inav/snaewe.git] / src / main / fc / rc_smoothing.c
blobacfa9c815c35ddf2d54a7316c08c66d417fcd4fd
1 /*
2 * This file is part of INAV.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
6 * You can obtain one at http://mozilla.org/MPL/2.0/.
8 * Alternatively, the contents of this file may be used under the terms
9 * of the GNU General Public License Version 3, as described below:
11 * This file is free software: you may copy, redistribute and/or modify
12 * it under the terms of the GNU General Public License as published by the
13 * Free Software Foundation, either version 3 of the License, or (at your
14 * option) any later version.
16 * This file is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
19 * Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see http://www.gnu.org/licenses/.
25 #include <stdbool.h>
26 #include <stdlib.h>
27 #include <stdint.h>
29 #include "platform.h"
31 #include "blackbox/blackbox.h"
33 #include "build/debug.h"
35 #include "common/maths.h"
36 #include "common/filter.h"
38 #include "drivers/time.h"
40 #include "rx/rx.h"
42 #include "fc/config.h"
43 #include "fc/fc_core.h"
44 #include "fc/rc_controls.h"
45 #include "fc/rc_smoothing.h"
46 #include "fc/runtime_config.h"
48 #include "flight/mixer.h"
50 static biquadFilter_t rcSmoothFilter[4];
51 static float rcStickUnfiltered[4];
53 static void rcInterpolationInit(int rcFilterFreqency)
55 for (int stick = 0; stick < 4; stick++) {
56 biquadFilterInitLPF(&rcSmoothFilter[stick], rcFilterFreqency, getLooptime());
60 void rcInterpolationApply(bool isRXDataNew)
62 static bool initDone = false;
63 static float initFilterFreqency = 0;
65 if (isRXDataNew) {
66 if (!initDone || (initFilterFreqency != rxConfig()->rcFilterFrequency)) {
67 rcInterpolationInit(rxConfig()->rcFilterFrequency);
68 initFilterFreqency = rxConfig()->rcFilterFrequency;
69 initDone = true;
72 for (int stick = 0; stick < 4; stick++) {
73 rcStickUnfiltered[stick] = rcCommand[stick];
77 // Don't filter if not initialized
78 if (!initDone) {
79 return;
82 for (int stick = 0; stick < 4; stick++) {
83 rcCommand[stick] = biquadFilterApply(&rcSmoothFilter[stick], rcStickUnfiltered[stick]);