mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 17:25:20 +03:00
Initial commit for implementation of autotune.
This commit is contained in:
parent
49c283fe59
commit
f7c38af7fc
10 changed files with 184 additions and 3 deletions
9
src/flight_autotune.h
Normal file
9
src/flight_autotune.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
void autotuneReset();
|
||||
void autotuneBegin(pidProfile_t *pidProfileToTune, uint8_t pidControllerInUse);
|
||||
float autotune(angle_index_t angleIndex, rollAndPitchInclination_t *inclination, float errorAngle);
|
||||
void autotuneEnd();
|
||||
|
||||
bool havePidsBeenUpdatedByAutotune(void);
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue