1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +03:00

Use received Serial RX data even when serial rx reports failsafe.

This commit is contained in:
Dominic Clifton 2015-03-03 23:17:25 +00:00
parent 94e499f9aa
commit 1c9ebf9437
2 changed files with 19 additions and 21 deletions

View file

@ -294,12 +294,10 @@ void processRxChannels(void)
void processDataDrivenRx(void)
{
if (!rcDataReceived) {
return;
if (rcDataReceived) {
failsafe->vTable->reset();
}
failsafe->vTable->reset();
processRxChannels();
rcDataReceived = false;