mirror of
https://github.com/espressif/openthread.git
synced 2026-08-10 12:47:47 +00:00
[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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user