1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-26 09:45:33 +03:00

Merge pull request #3482 from iNavFlight/de_rcdata_ignore_failsafe

Ignore RC channel values sent by receiver in failsafe
This commit is contained in:
Konstantin Sharlaimov 2018-07-16 21:05:16 +02:00 committed by GitHub
commit 3e670db83c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 4 deletions

View file

@ -486,7 +486,7 @@ static bool mspFcProcessOutCommand(uint16_t cmdMSP, sbuf_t *dst, mspPostProcessF
case MSP_RC:
for (int i = 0; i < rxRuntimeConfig.channelCount; i++) {
sbufWriteU16(dst, rcData[i]);
sbufWriteU16(dst, rcRaw[i]);
}
break;