git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9629 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
c3150eb136
commit
b5c1568431
|
@ -307,6 +307,10 @@ struct USBDriver {
|
||||||
* @brief Current USB device configuration.
|
* @brief Current USB device configuration.
|
||||||
*/
|
*/
|
||||||
uint8_t configuration;
|
uint8_t configuration;
|
||||||
|
/**
|
||||||
|
* @brief State of the driver when a suspend happened.
|
||||||
|
*/
|
||||||
|
usbstate_t saved_state;
|
||||||
#if defined(USB_DRIVER_EXT_FIELDS)
|
#if defined(USB_DRIVER_EXT_FIELDS)
|
||||||
USB_DRIVER_EXT_FIELDS
|
USB_DRIVER_EXT_FIELDS
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -373,6 +373,10 @@ struct USBDriver {
|
||||||
* @brief Current USB device configuration.
|
* @brief Current USB device configuration.
|
||||||
*/
|
*/
|
||||||
uint8_t configuration;
|
uint8_t configuration;
|
||||||
|
/**
|
||||||
|
* @brief State of the driver when a suspend happened.
|
||||||
|
*/
|
||||||
|
usbstate_t saved_state;
|
||||||
#if defined(USB_DRIVER_EXT_FIELDS)
|
#if defined(USB_DRIVER_EXT_FIELDS)
|
||||||
USB_DRIVER_EXT_FIELDS
|
USB_DRIVER_EXT_FIELDS
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -281,6 +281,10 @@ struct USBDriver {
|
||||||
* @brief Current USB device configuration.
|
* @brief Current USB device configuration.
|
||||||
*/
|
*/
|
||||||
uint8_t configuration;
|
uint8_t configuration;
|
||||||
|
/**
|
||||||
|
* @brief State of the driver when a suspend happened.
|
||||||
|
*/
|
||||||
|
usbstate_t saved_state;
|
||||||
#if defined(USB_DRIVER_EXT_FIELDS)
|
#if defined(USB_DRIVER_EXT_FIELDS)
|
||||||
USB_DRIVER_EXT_FIELDS
|
USB_DRIVER_EXT_FIELDS
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue