Remove duplication

This commit is contained in:
Michael Walker 2018-05-02 03:36:12 -07:00
parent 4e57174758
commit 457afa6202
1 changed files with 0 additions and 19 deletions

View File

@ -355,25 +355,6 @@ struct USBDriver {
/* Driver macros. */
/*===========================================================================*/
/**
* @brief Host wake-up procedure duration.
*/
#if !defined(USB_HOST_WAKEUP_DURATION) || defined(__DOXYGEN__)
#define USB_HOST_WAKEUP_DURATION 2
#endif
/**
* @brief Start of host wake-up procedure.
*
* @notapi
*/
#define usb_lld_wakeup_host(usbp) \
do{ \
USB0->CTL |= USBx_CTL_RESUME; \
osalThreadSleepMilliseconds(USB_HOST_WAKEUP_DURATION); \
USB0->CTL &= ~USBx_CTL_RESUME; \
} while (false)
/**
* @brief Returns the current frame number.
*