1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 21:35:44 +03:00

Merge branch 'master' into bfdev-configurable-spi-phase-1

This commit is contained in:
jflyper 2017-06-29 09:28:36 +09:00 committed by GitHub
commit 78bf9da3a6
60 changed files with 1402 additions and 692 deletions

View file

@ -384,7 +384,7 @@ void init(void)
if (0) {}
#if defined(USE_PPM)
else if (feature(FEATURE_RX_PPM)) {
ppmRxInit(ppmConfig(), motorConfig()->dev.motorPwmProtocol);
ppmRxInit(ppmConfig());
}
#endif
#if defined(USE_PWM)
@ -504,6 +504,10 @@ void init(void)
// gyro.targetLooptime set in sensorsAutodetect(), so we are ready to call pidInit()
pidInit(currentPidProfile);
#ifdef USE_SERVOS
servosFilterInit();
#endif
imuInit();
mspFcInit();