Skip to content

Commit

Permalink
Remove the possibility to receive multicast confirmed downlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
mluis1 committed Sep 25, 2023
1 parent 6a10f35 commit 4447cb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mac/LoRaMac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,8 @@ static void ProcessRadioRxDone( void )
}

// Filter messages according to multicast downlink exceptions
if( ( multicast == 1 ) && ( ( fType != FRAME_TYPE_D ) ||
if( ( multicast == 1 ) && ( (macHdr.Bits.MType == FRAME_TYPE_DATA_CONFIRMED_DOWN ) ||
( fType != FRAME_TYPE_D ) ||
( macMsgData.FHDR.FCtrl.Bits.Ack != 0 ) ||
( macMsgData.FHDR.FCtrl.Bits.AdrAckReq != 0 ) ) )
{
Expand Down

0 comments on commit 4447cb8

Please sign in to comment.