mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Finalisation of Betaflight PID controller // RC smoothing added back
This commit is contained in:
parent
6e99489200
commit
c11c50287e
10 changed files with 186 additions and 153 deletions
|
@ -86,6 +86,13 @@ typedef enum {
|
|||
CENTERED
|
||||
} rollPitchStatus_e;
|
||||
|
||||
typedef enum {
|
||||
RC_SMOOTHING_OFF = 0,
|
||||
RC_SMOOTHING_DEFAULT,
|
||||
RC_SMOOTHING_AUTO,
|
||||
RC_SMOOTHING_MANUAL
|
||||
} rcSmoothing_t;
|
||||
|
||||
#define ROL_LO (1 << (2 * ROLL))
|
||||
#define ROL_CE (3 << (2 * ROLL))
|
||||
#define ROL_HI (2 << (2 * ROLL))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue