1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-18 22:05:17 +03:00

VtxDevice over msp

This commit is contained in:
phobos- 2022-02-14 16:13:32 +01:00
parent e45afb3a76
commit f10413392b
31 changed files with 1028 additions and 37 deletions

View file

@ -117,6 +117,7 @@
#include "io/transponder_ir.h"
#include "io/vtx.h"
#include "io/vtx_control.h"
#include "io/vtx_msp.h"
#include "io/vtx_rtc6705.h"
#include "io/vtx_smartaudio.h"
#include "io/vtx_tramp.h"
@ -839,6 +840,10 @@ void init(void)
vtxCommonInit();
#endif
#ifdef USE_VTX_MSP
vtxMspInit();
#endif
#ifdef USE_VTX_SMARTAUDIO
vtxSmartAudioInit();
#endif