From 1586c4c6283e6fe95cd7fdbd350c4126755ab3fe Mon Sep 17 00:00:00 2001 From: Diego Ismirlian Date: Thu, 29 Oct 2020 15:13:15 -0300 Subject: [PATCH] [efr32] radio: increase FIFO size to allow handling of heavy traffic (#5742) This commit increases the FIFO size used for storing the handles of the data request packets that were ACKed with the frame pending bit set. --- examples/platforms/efr32/src/radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platforms/efr32/src/radio.c b/examples/platforms/efr32/src/radio.c index f99d8664a..267dd1d0f 100644 --- a/examples/platforms/efr32/src/radio.c +++ b/examples/platforms/efr32/src/radio.c @@ -113,7 +113,7 @@ static otRadioState sState = OT_RADIO_STATE_DISABLED; enum { ACKED_WITH_FP_MATCH_LENGTH = 1 + IEEE802154_MAX_MHR_LENGTH, // PHR and MHR - ACKED_WITH_FP_SLOTS = 16, // maximum number of Data Request packets in the RX FIFO. Length should be a power of 2. + ACKED_WITH_FP_SLOTS = 32, // maximum number of Data Request packets in the RX FIFO. Length should be a power of 2. }; typedef struct efr32AckedWithFP