Merge pull request #4949 from jflyper/bfdev-satbind-honor-halfduplex

Let Spektrum bind pin follow half-duplex setting
This commit is contained in:
Michael Keller 2018-01-12 20:19:47 +13:00 committed by GitHub
commit 7e3386c12e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -220,8 +220,9 @@ void spektrumBind(rxConfig_t *rxConfig)
}
break;
#endif // USE_TELEMETRY
default:
bindPin = rxPin;
bindPin = rxConfig->halfDuplex ? txPin : rxPin;
}
if (!bindPin) {