We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 01a8f82 + e04a088 commit 0102748Copy full SHA for 0102748
src/mac/LoRaMac.c
@@ -1125,8 +1125,8 @@ static void ProcessRadioRxDone( void )
1125
1126
// Filter messages according to multicast downlink exceptions
1127
if( ( multicast == 1 ) && ( ( fType != FRAME_TYPE_D ) ||
1128
- ( macMsgData.FHDR.FCtrl.Bits.Ack == true ) ||
1129
- ( macMsgData.FHDR.FCtrl.Bits.AdrAckReq == true ) ) )
+ ( macMsgData.FHDR.FCtrl.Bits.Ack != 0 ) ||
+ ( macMsgData.FHDR.FCtrl.Bits.AdrAckReq != 0 ) ) )
1130
{
1131
MacCtx.McpsIndication.Status = LORAMAC_EVENT_INFO_STATUS_ERROR;
1132
PrepareRxDoneAbort( );
0 commit comments