mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 16:55:36 +03:00
CMS Telemetry over CRSF w/ Lua Script (X9D, so far)
This commit is contained in:
parent
b2c247d34a
commit
9d4d3ad45c
17 changed files with 393 additions and 5 deletions
|
@ -106,6 +106,7 @@
|
|||
#include "io/displayport_max7456.h"
|
||||
#include "io/displayport_rcdevice.h"
|
||||
#include "io/displayport_srxl.h"
|
||||
#include "io/displayport_crsf.h"
|
||||
#include "io/serial.h"
|
||||
#include "io/flashfs.h"
|
||||
#include "io/gps.h"
|
||||
|
@ -643,6 +644,10 @@ void init(void)
|
|||
cmsDisplayPortRegister(displayPortSrxlInit());
|
||||
#endif
|
||||
|
||||
#if defined(USE_CMS) && defined(USE_CRSF_CMS_TELEMETRY) && defined(USE_TELEMETRY)
|
||||
cmsDisplayPortRegister(displayPortCrsfInit());
|
||||
#endif
|
||||
|
||||
#ifdef USE_GPS
|
||||
if (feature(FEATURE_GPS)) {
|
||||
gpsInit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue