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

Fixing use of softserial for telemetry that was also broken in

92bed4a33d
This commit is contained in:
Dominic Clifton 2014-05-06 14:11:52 +01:00
parent 8919acb902
commit 8322bba5f1

View file

@ -62,7 +62,7 @@ bool canUseTelemetryWithCurrentConfiguration(void)
void initTelemetry(serialPorts_t *serialPorts)
{
// Force telemetry to uart when softserial disabled
if (canSoftwareSerialBeUsed())
if (!canSoftwareSerialBeUsed())
telemetryConfig->telemetry_port = TELEMETRY_PORT_UART;
#ifdef FY90Q