diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-06-16 09:22:22 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-06-16 09:22:22 +0000 |
commit | c3150eb13679314f8bfc02714ae0027dd1658002 (patch) | |
tree | ccb186462f6402db2fd8acded21d103519a58905 /os/hal/include | |
parent | 77a63206e770cb4a73abf3063ce381fa8de4705b (diff) | |
download | ChibiOS-c3150eb13679314f8bfc02714ae0027dd1658002.tar.gz ChibiOS-c3150eb13679314f8bfc02714ae0027dd1658002.tar.bz2 ChibiOS-c3150eb13679314f8bfc02714ae0027dd1658002.zip |
USB fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9628 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r-- | os/hal/include/hal_usb.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/os/hal/include/hal_usb.h b/os/hal/include/hal_usb.h index 0e9ecb238..71fa42498 100644 --- a/os/hal/include/hal_usb.h +++ b/os/hal/include/hal_usb.h @@ -301,9 +301,10 @@ typedef enum { USB_EVENT_RESET = 0, /**< Driver has been reset by host. */
USB_EVENT_ADDRESS = 1, /**< Address assigned. */
USB_EVENT_CONFIGURED = 2, /**< Configuration selected. */
- USB_EVENT_SUSPEND = 3, /**< Entering suspend mode. */
- USB_EVENT_WAKEUP = 4, /**< Leaving suspend mode. */
- USB_EVENT_STALLED = 5 /**< Endpoint 0 error, stalled. */
+ USB_EVENT_UNCONFIGURED = 3, /**< Configuration removed. */
+ USB_EVENT_SUSPEND = 4, /**< Entering suspend mode. */
+ USB_EVENT_WAKEUP = 5, /**< Leaving suspend mode. */
+ USB_EVENT_STALLED = 6 /**< Endpoint 0 error, stalled. */
} usbevent_t;
/**
|