We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931da51 commit 177eaffCopy full SHA for 177eaff
features/FEATURE_LWIP/lwip-interface/lwip-eth/arch/TARGET_Freescale/k64f_emac.c
@@ -86,10 +86,8 @@ static void update_read_buffer(uint8_t *buf)
86
/* Increases the buffer descriptor to the next one. */
87
if (g_handle.rxBdCurrent->control & ENET_BUFFDESCRIPTOR_RX_WRAP_MASK) {
88
g_handle.rxBdCurrent = g_handle.rxBdBase;
89
- g_handle.rxBdDirty = g_handle.rxBdBase;
90
} else {
91
g_handle.rxBdCurrent++;
92
- g_handle.rxBdDirty++;
93
}
94
95
/* Actives the receive buffer descriptor. */
0 commit comments