1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Fixed point math Implementation instead of floats

This commit is contained in:
borisbstyle 2016-02-18 00:25:44 +01:00
parent 5435fd0cb7
commit 7fd88f060d
8 changed files with 82 additions and 37 deletions

View file

@ -80,8 +80,8 @@ typedef struct pidProfile_s {
} pidProfile_t;
typedef struct acroPlus_s {
float factor;
float wowFactor;
int16_t factor;
q_number_t wowFactor;
} acroPlus_t;
extern int16_t axisPID[XYZ_AXIS_COUNT];