mirror of https://github.com/ARMmbed/mbed-os.git
This change fixes the problem with K64F Ethernet support where after transmitting frames, the buffers were not released so system would eventually running out of memory.
Signed-off-by: unknown <sersca01@SERSCA01-002137.usa.Arm.com>pull/303/head
parent
540ec006b5
commit
87eb44e68d
|
|
@ -110,7 +110,7 @@ static enet_phy_config_t g_enetPhyCfg[HW_ENET_INSTANCE_COUNT] =
|
|||
|
||||
// K64F-specific macros
|
||||
#define RX_PBUF_AUTO_INDEX (-1)
|
||||
#define TX_DESC_UPDATED_MASK (0x8000)
|
||||
#define TX_DESC_UPDATED_MASK (0x0080)
|
||||
|
||||
/********************************************************************************
|
||||
* Buffer management
|
||||
|
|
|
|||
Loading…
Reference in New Issue