Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update K64 sdk drivers #3194

Merged
merged 3 commits into from
Nov 10, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
K64F ENET: Update to remove unused variable. This is no longer availa…
…ble in the updated SDK ENET driver
  • Loading branch information
mmahadevan108 committed Nov 3, 2016
commit 177eaff8475bf07fda2fdedf0f253695c0b5c878
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,8 @@ static void update_read_buffer(uint8_t *buf)
/* Increases the buffer descriptor to the next one. */
if (g_handle.rxBdCurrent->control & ENET_BUFFDESCRIPTOR_RX_WRAP_MASK) {
g_handle.rxBdCurrent = g_handle.rxBdBase;
g_handle.rxBdDirty = g_handle.rxBdBase;
} else {
g_handle.rxBdCurrent++;
g_handle.rxBdDirty++;
}

/* Actives the receive buffer descriptor. */
Expand Down