mirror of
https://github.com/espressif/openthread.git
synced 2026-08-01 00:27:47 +00:00
[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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user