[efr32] fix broken radio.c in EFR32MG21 (#5217)

processNextRxPacket() on the EFR32MG21 platform takes a RAIL handle as
a second argument.
This commit is contained in:
Mason Tran
2020-07-09 09:15:40 -07:00
committed by GitHub
parent ff712ca8e1
commit 71c16d9558
+1 -1
View File
@@ -951,7 +951,7 @@ void efr32RadioProcess(otInstance *aInstance)
{
// We should process the received packet first. Adding it at the end of this function,
// will delay the stack notification until the next call to efr32RadioProcess()
processNextRxPacket(aInstance);
processNextRxPacket(aInstance, sRxBandConfig->mRailHandle);
if (sState == OT_RADIO_STATE_TRANSMIT && sTransmitBusy == false)
{