1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Merge pull request #3036 from cleanflight/spracingf7dual-pidaudio (#5586)

PID-Audio feature
This commit is contained in:
Michael Keller 2018-04-01 11:08:41 +12:00 committed by GitHub
parent 5a258070bc
commit 92d19e7be6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 304 additions and 1 deletions

View file

@ -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)