From 8322bba5f17598c65dceb9e8df96601f1f8d7a5c Mon Sep 17 00:00:00 2001 From: Dominic Clifton Date: Tue, 6 May 2014 14:11:52 +0100 Subject: [PATCH] Fixing use of softserial for telemetry that was also broken in 92bed4a33d7d62ffd1995528d13951c4bb07c30d --- src/telemetry_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/telemetry_common.c b/src/telemetry_common.c index 432b6a5e66..29c9b24085 100644 --- a/src/telemetry_common.c +++ b/src/telemetry_common.c @@ -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