Telemetry naming cleanup.
This commit is contained in:
parent
7c2c5eb152
commit
8b0a982931
|
@ -93,7 +93,7 @@ failsafe_t *failsafe;
|
|||
|
||||
void initPrintfSupport(void);
|
||||
void timerInit(void);
|
||||
void initTelemetry(void);
|
||||
void telemetryInit(void);
|
||||
void serialInit(serialConfig_t *initialSerialConfig);
|
||||
failsafe_t* failsafeInit(rxConfig_t *intialRxConfig);
|
||||
pwmOutputConfiguration_t *pwmInit(drv_pwm_config_t *init);
|
||||
|
@ -346,7 +346,7 @@ void init(void)
|
|||
|
||||
#ifdef TELEMETRY
|
||||
if (feature(FEATURE_TELEMETRY))
|
||||
initTelemetry();
|
||||
telemetryInit();
|
||||
#endif
|
||||
|
||||
#ifdef BLACKBOX
|
||||
|
|
|
@ -95,7 +95,7 @@ bool canUseTelemetryWithCurrentConfiguration(void)
|
|||
return true;
|
||||
}
|
||||
|
||||
void initTelemetry()
|
||||
void telemetryInit()
|
||||
{
|
||||
if (isTelemetryProviderSmartPort()) {
|
||||
telemetryPortIsShared = isSerialPortFunctionShared(FUNCTION_SMARTPORT_TELEMETRY, FUNCTION_MSP);
|
||||
|
|
Loading…
Reference in New Issue