diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-02-05 12:45:05 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-02-05 12:45:05 +0000 |
commit | f5a8502a288742f80cbaeb094911d75efff82b28 (patch) | |
tree | fd5ba619d678b48da913f3621939b126427d7077 /os/hal/include/usb.h | |
parent | bc83d0a40213c0ce58b83f540461aeec471a18ed (diff) | |
download | ChibiOS-f5a8502a288742f80cbaeb094911d75efff82b28.tar.gz ChibiOS-f5a8502a288742f80cbaeb094911d75efff82b28.tar.bz2 ChibiOS-f5a8502a288742f80cbaeb094911d75efff82b28.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7656 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include/usb.h')
-rw-r--r-- | os/hal/include/usb.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/include/usb.h b/os/hal/include/usb.h index a52480135..c85506403 100644 --- a/os/hal/include/usb.h +++ b/os/hal/include/usb.h @@ -349,8 +349,8 @@ typedef void (*usbeventcb_t)(USBDriver *usbp, usbevent_t event); * @param[in] usbp pointer to the @p USBDriver object triggering the
* callback
* @return The request handling exit code.
- * @retval FALSE Request not recognized by the handler.
- * @retval TRUE Request handled.
+ * @retval false Request not recognized by the handler.
+ * @retval true Request handled.
*/
typedef bool (*usbreqhandler_t)(USBDriver *usbp);
@@ -425,8 +425,8 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp, * @param[in] usbp pointer to the @p USBDriver object
* @param[in] ep endpoint number
* @return The operation status.
- * @retval FALSE Endpoint ready.
- * @retval TRUE Endpoint transmitting.
+ * @retval false Endpoint ready.
+ * @retval true Endpoint transmitting.
*
* @iclass
*/
@@ -438,8 +438,8 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp, * @param[in] usbp pointer to the @p USBDriver object
* @param[in] ep endpoint number
* @return The operation status.
- * @retval FALSE Endpoint ready.
- * @retval TRUE Endpoint receiving.
+ * @retval false Endpoint ready.
+ * @retval true Endpoint receiving.
*
* @iclass
*/
|