From e74213d5c3646e173d323c8d0f6033c6ea4ed57a Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 26 Dec 2015 16:54:26 +0000 Subject: Synchronous USB API ready for testing, OTGv1 only so far. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8649 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/STM32/LLD/OTGv1/usb_lld.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'os/hal/ports/STM32/LLD/OTGv1/usb_lld.h') diff --git a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.h b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.h index f59685c43..c90424c36 100644 --- a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.h +++ b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.h @@ -314,12 +314,14 @@ typedef struct { uint16_t out_maxsize; /** * @brief @p USBEndpointState associated to the IN endpoint. - * @details This structure maintains the state of the IN endpoint. + * @details This structure maintains the state of the IN endpoint, + * set to @p NULL if the IN endpoint is not used. */ USBInEndpointState *in_state; /** * @brief @p USBEndpointState associated to the OUT endpoint. - * @details This structure maintains the state of the OUT endpoint. + * @details This structure maintains the state of the OUT endpoint, + * set to @p NULL if the OUT endpoint is not used. */ USBOutEndpointState *out_state; /* End of the mandatory fields.*/ -- cgit v1.2.3