1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 13:25:30 +03:00

Merge pull request #2852 from azolyoung/add-runcam-split-support

Add runcam split support
This commit is contained in:
Dominic Clifton 2017-06-22 19:31:16 +01:00 committed by mikeller
parent 53eb07c56a
commit 32fa109a64
13 changed files with 706 additions and 10 deletions

View file

@ -124,6 +124,7 @@
#include "flight/pid.h"
#include "flight/servos.h"
#include "io/rcsplit.h"
#ifdef USE_HARDWARE_REVISION_DETECTION
#include "hardware_revision.h"
@ -636,5 +637,10 @@ void init(void)
#else
fcTasksInit();
#endif
#ifdef USE_RCSPLIT
rcSplitInit();
#endif // USE_RCSPLIT
systemState |= SYSTEM_STATE_READY;
}