diff --git a/src/main/fc/init.c b/src/main/fc/init.c index 8e302d2fc2..735f0e447b 100644 --- a/src/main/fc/init.c +++ b/src/main/fc/init.c @@ -765,12 +765,6 @@ void init(void) } #endif -#ifdef USE_TELEMETRY - if (featureIsEnabled(FEATURE_TELEMETRY)) { - telemetryInit(); - } -#endif - #ifdef USE_ESC_SENSOR if (featureIsEnabled(FEATURE_ESC_SENSOR)) { escSensorInit(); @@ -877,6 +871,12 @@ void init(void) cmsInit(); #endif +#ifdef USE_TELEMETRY + if (featureIsEnabled(FEATURE_TELEMETRY)) { + telemetryInit(); + } +#endif + #if (defined(USE_OSD) || (defined(USE_MSP_DISPLAYPORT) && defined(USE_CMS))) displayPort_t *osdDisplayPort = NULL; osdDisplayPortDevice_e osdDisplayPortDevice = OSD_DISPLAYPORT_DEVICE_NONE;