From 78dbcb3debf28d9a87455f9a6c552ed35efb63a9 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 31 Dec 2014 12:26:18 -0600 Subject: Minor updated to Ethernet driver skeleton --- nuttx/drivers/net/skeleton.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nuttx/drivers/net/skeleton.c b/nuttx/drivers/net/skeleton.c index 28d2a3f6d..33fbacb5b 100644 --- a/nuttx/drivers/net/skeleton.c +++ b/nuttx/drivers/net/skeleton.c @@ -447,6 +447,17 @@ static int skel_interrupt(int irq, FAR void *context) * condition here. */ + /* TODO: Determine if a TX transfer just completed */ + + { + /* If a TX transfer just completed, then cancel the TX timeout so + * there will be do race condition between any subsequent timeout + * expiration and the deferred interrupt processing. + */ + + wd_cancel(skel->sk_txtimeout); + } + /* Cancel any pending poll work */ work_cancel(HPWORK, skel->sk_work); @@ -454,6 +465,7 @@ static int skel_interrupt(int irq, FAR void *context) /* Schedule to perform the interrupt processing on the worker thread. */ work_queue(HPWORK, &skel->sk_work, skel_interrupt_work, skel, 0); + #else /* Process the interrupt now */ -- cgit v1.2.3