From 71c16d955858d4ae42db65500fc04b090cc4c003 Mon Sep 17 00:00:00 2001 From: Mason Tran Date: Thu, 9 Jul 2020 12:15:40 -0400 Subject: [PATCH] [efr32] fix broken radio.c in EFR32MG21 (#5217) processNextRxPacket() on the EFR32MG21 platform takes a RAIL handle as a second argument. --- examples/platforms/efr32mg21/radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platforms/efr32mg21/radio.c b/examples/platforms/efr32mg21/radio.c index 136e166ea..60e4dbe47 100644 --- a/examples/platforms/efr32mg21/radio.c +++ b/examples/platforms/efr32mg21/radio.c @@ -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) {