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:
parent
5435fd0cb7
commit
7fd88f060d
8 changed files with 82 additions and 37 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue