mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 06:15:16 +03:00
PID-Audio feature
This commit is contained in:
parent
5a258070bc
commit
92d19e7be6
13 changed files with 304 additions and 1 deletions
|
@ -64,6 +64,7 @@
|
|||
#include "io/beeper.h"
|
||||
#include "io/gps.h"
|
||||
#include "io/motors.h"
|
||||
#include "io/pidaudio.h"
|
||||
#include "io/servos.h"
|
||||
#include "io/serial.h"
|
||||
#include "io/statusindicator.h"
|
||||
|
@ -825,6 +826,11 @@ static void subTaskPidController(timeUs_t currentTimeUs)
|
|||
DEBUG_SET(DEBUG_RUNAWAY_TAKEOFF, DEBUG_RUNAWAY_TAKEOFF_ACTIVATING_DELAY, DEBUG_RUNAWAY_TAKEOFF_FALSE);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef USE_PID_AUDIO
|
||||
pidAudioUpdate();
|
||||
#endif
|
||||
}
|
||||
|
||||
static void subTaskMainSubprocesses(timeUs_t currentTimeUs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue