From 7c144ea54022c4b58865373f7bc2159b5a84cd8c Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 6 Sep 2012 19:08:08 +0000 Subject: [PATCH] Fixed bug. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4634 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/src/usb.c | 1 + readme.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/os/hal/src/usb.c b/os/hal/src/usb.c index 2bf845e6e..db4d826c1 100644 --- a/os/hal/src/usb.c +++ b/os/hal/src/usb.c @@ -619,6 +619,7 @@ void _usb_ep0setup(USBDriver *usbp, usbep_t ep) { usb_lld_stall_out(usbp, 0); _usb_isr_invoke_event_cb(usbp, USB_EVENT_STALLED); usbp->ep0state = USB_EP0_ERROR; + return; } } diff --git a/readme.txt b/readme.txt index cfccd8dd8..5f21cb314 100644 --- a/readme.txt +++ b/readme.txt @@ -82,6 +82,7 @@ ***************************************************************************** *** 2.5.0 *** +- FIX: Fixed anomaly in USB enumeration (bug 3565325)(backported to 2.4.3). - FIX: Fixed problem with lwIP statistics (bug 3564134)(backported to 2.4.3). - FIX: Fixed packed structures macros not functional in IAR and RVCT port (bug 3561279)(backported to 2.4.3 and 2.2.10).