1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Merge pull request #5743 from codecae/crsf_displayport

CMS Telemetry over CRSF w/ Lua Script (X9D, so far)
This commit is contained in:
Michael Keller 2018-04-25 00:09:58 +12:00 committed by GitHub
commit 3ef12389da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 393 additions and 5 deletions

View file

@ -108,6 +108,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"
@ -653,6 +654,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();