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:
parent
94e499f9aa
commit
1c9ebf9437
2 changed files with 19 additions and 21 deletions
|
@ -294,12 +294,10 @@ void processRxChannels(void)
|
|||
|
||||
void processDataDrivenRx(void)
|
||||
{
|
||||
if (!rcDataReceived) {
|
||||
return;
|
||||
if (rcDataReceived) {
|
||||
failsafe->vTable->reset();
|
||||
}
|
||||
|
||||
failsafe->vTable->reset();
|
||||
|
||||
processRxChannels();
|
||||
|
||||
rcDataReceived = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue