Correct the behavior of dropped frames to report RX_FRAME_DROPPED instead of RX_FRAME_FAILSAFE.

This commit is contained in:
MiguelFAlvarez 2019-12-14 19:50:04 -06:00
parent 4c58889915
commit 544ed94adf
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ void srxl2ProcessChannelData(const Srxl2ChannelDataHeader* channelData, rxRuntim
//If receiver is in a connected state, and a packet is missed, the channel mask will be 0.
if (!channelData->channelMask.u32) {
globalResult |= RX_FRAME_FAILSAFE;
globalResult |= RX_FRAME_DROPPED;
return;
}