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

CLI parser for vtxtable

This commit is contained in:
jflyper 2018-12-19 23:08:24 +09:00
parent fa11287e8d
commit 96fc6dc934
9 changed files with 633 additions and 0 deletions

View file

@ -78,6 +78,7 @@
#include "drivers/usb_io.h"
#include "drivers/vtx_rtc6705.h"
#include "drivers/vtx_common.h"
#include "drivers/vtx_table.h"
#ifdef USE_USB_MSC
#include "drivers/usb_msc.h"
#endif
@ -714,6 +715,10 @@ void init(void)
baroSetCalibrationCycles(CALIBRATING_BARO_CYCLES);
#endif
#ifdef USE_VTX_TABLE
vtxTableInit();
#endif
#ifdef USE_VTX_CONTROL
vtxControlInit();