mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 21:05:35 +03:00
Fixing use of softserial for telemetry that was also broken in
92bed4a33d
This commit is contained in:
parent
8919acb902
commit
8322bba5f1
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue