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)
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/>.
26 #define sq(x) ((x)*(x))
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)
49 __extension__ ({ __typeof__ (a) _a = (a); \
50 __typeof__ (b) _b = (b); \
53 __extension__ ({ __typeof__ (a) _a = (a); \
54 __typeof__ (b) _b = (b); \
57 __extension__ ({ __typeof__ (x) _x = (x); \
60 __extension__ ({ __typeof__ (x) _x = (x); \
61 (_x > 0) - (_x < 0); })
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
;
76 // Floating point 3 vector.
77 typedef struct fp_vector
{
83 typedef union u_fp_vector
{
88 // Floating point Euler angles.
89 // Be carefull, could be either of degrees or radians.
90 typedef struct fp_angles
{
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
);
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)
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
)
167 static inline float constrainf(float amt
, float low
, float high
)