Merge pull request #11714 from VitroidFPV/my-new-code
[betaflight.git] / src / main / common / maths.h
blob513a36c182f41cb4a96a4143e7878aa627e7b28b
1 /*
2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
8 * any later version.
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
21 #pragma once
23 #include <stdint.h>
25 #ifndef sq
26 #define sq(x) ((x)*(x))
27 #endif
28 #define power3(x) ((x)*(x)*(x))
29 #define power5(x) ((x)*(x)*(x)*(x)*(x))
31 // Undefine this for use libc sinf/cosf. Keep this defined to use fast sin/cos approximations
32 #define FAST_MATH // order 9 approximation
33 #define VERY_FAST_MATH // order 7 approximation
35 // Use floating point M_PI instead explicitly.
36 #define M_PIf 3.14159265358979323846f
37 #define M_EULERf 2.71828182845904523536f
39 #define RAD (M_PIf / 180.0f)
40 #define DEGREES_TO_DECIDEGREES(angle) ((angle) * 10)
41 #define DECIDEGREES_TO_DEGREES(angle) ((angle) / 10)
42 #define DECIDEGREES_TO_RADIANS(angle) ((angle) / 10.0f * 0.0174532925f)
43 #define DEGREES_TO_RADIANS(angle) ((angle) * 0.0174532925f)
45 #define CM_S_TO_KM_H(centimetersPerSecond) ((centimetersPerSecond) * 36 / 1000)
46 #define CM_S_TO_MPH(centimetersPerSecond) ((centimetersPerSecond) * 10000 / 5080 / 88)
48 #define MIN(a,b) \
49 __extension__ ({ __typeof__ (a) _a = (a); \
50 __typeof__ (b) _b = (b); \
51 _a < _b ? _a : _b; })
52 #define MAX(a,b) \
53 __extension__ ({ __typeof__ (a) _a = (a); \
54 __typeof__ (b) _b = (b); \
55 _a > _b ? _a : _b; })
56 #define ABS(x) \
57 __extension__ ({ __typeof__ (x) _x = (x); \
58 _x > 0 ? _x : -_x; })
59 #define SIGN(x) \
60 __extension__ ({ __typeof__ (x) _x = (x); \
61 (_x > 0) - (_x < 0); })
63 #define Q12 (1 << 12)
65 #define HZ_TO_INTERVAL(x) (1.0f / (x))
66 #define HZ_TO_INTERVAL_US(x) (1000000 / (x))
68 typedef int32_t fix12_t;
70 typedef struct stdev_s
72 float m_oldM, m_newM, m_oldS, m_newS;
73 int m_n;
74 } stdev_t;
76 // Floating point 3 vector.
77 typedef struct fp_vector {
78 float X;
79 float Y;
80 float Z;
81 } t_fp_vector_def;
83 typedef union u_fp_vector {
84 float A[3];
85 t_fp_vector_def V;
86 } t_fp_vector;
88 // Floating point Euler angles.
89 // Be carefull, could be either of degrees or radians.
90 typedef struct fp_angles {
91 float roll;
92 float pitch;
93 float yaw;
94 } fp_angles_def;
96 typedef union {
97 float raw[3];
98 fp_angles_def angles;
99 } fp_angles_t;
101 typedef struct fp_rotationMatrix_s {
102 float m[3][3]; // matrix
103 } fp_rotationMatrix_t;
105 int gcd(int num, int denom);
106 int32_t applyDeadband(int32_t value, int32_t deadband);
107 float fapplyDeadband(float value, float deadband);
109 void devClear(stdev_t *dev);
110 void devPush(stdev_t *dev, float x);
111 float devVariance(stdev_t *dev);
112 float devStandardDeviation(stdev_t *dev);
113 float degreesToRadians(int16_t degrees);
115 int scaleRange(int x, int srcFrom, int srcTo, int destFrom, int destTo);
116 float scaleRangef(float x, float srcFrom, float srcTo, float destFrom, float destTo);
118 void buildRotationMatrix(fp_angles_t *delta, fp_rotationMatrix_t *rotation);
119 void applyMatrixRotation(float *v, fp_rotationMatrix_t *rotationMatrix);
121 int32_t quickMedianFilter3(int32_t * v);
122 int32_t quickMedianFilter5(int32_t * v);
123 int32_t quickMedianFilter7(int32_t * v);
124 int32_t quickMedianFilter9(int32_t * v);
126 float quickMedianFilter3f(float * v);
127 float quickMedianFilter5f(float * v);
128 float quickMedianFilter7f(float * v);
129 float quickMedianFilter9f(float * v);
131 #if defined(FAST_MATH) || defined(VERY_FAST_MATH)
132 float sin_approx(float x);
133 float cos_approx(float x);
134 float atan2_approx(float y, float x);
135 float acos_approx(float x);
136 #define tan_approx(x) (sin_approx(x) / cos_approx(x))
137 float exp_approx(float val);
138 float log_approx(float val);
139 float pow_approx(float a, float b);
140 #else
141 #define sin_approx(x) sinf(x)
142 #define cos_approx(x) cosf(x)
143 #define atan2_approx(y,x) atan2f(y,x)
144 #define acos_approx(x) acosf(x)
145 #define tan_approx(x) tanf(x)
146 #define exp_approx(x) expf(x)
147 #define log_approx(x) logf(x)
148 #define pow_approx(a, b) powf(b, a)
149 #endif
151 void arraySubInt32(int32_t *dest, int32_t *array1, int32_t *array2, int count);
153 int16_t qPercent(fix12_t q);
154 int16_t qMultiply(fix12_t q, int16_t input);
155 fix12_t qConstruct(int16_t num, int16_t den);
157 static inline int constrain(int amt, int low, int high)
159 if (amt < low)
160 return low;
161 else if (amt > high)
162 return high;
163 else
164 return amt;
167 static inline float constrainf(float amt, float low, float high)
169 if (amt < low)
170 return low;
171 else if (amt > high)
172 return high;
173 else
174 return amt;