diff options
| author | hathach <[email protected]> | 2012-11-29 16:58:12 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2012-11-29 16:58:12 +0700 |
| commit | 2dd9501f37b8e2b2fdfa43b12469498646ae3fe5 (patch) | |
| tree | dd102e40841da02a0dfc05c90a449774f7f8f876 /tinyusb/device | |
| parent | b8b92e120220ee19f623809673323344e257bd4b (diff) | |
update doxygen
Diffstat (limited to 'tinyusb/device')
| -rw-r--r-- | tinyusb/device/dcd.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tinyusb/device/dcd.h b/tinyusb/device/dcd.h index 0e6c0bd99..aefdaede1 100644 --- a/tinyusb/device/dcd.h +++ b/tinyusb/device/dcd.h @@ -35,6 +35,19 @@ * This file is part of the tiny usb stack. */ +/** \file + * \brief Device Controller Driver + * + * \note TBD + */ + +/** \ingroup Group_TinyUSB + * \defgroup Group_DCD Device Controller Driver + * \brief Device Controller Driver + * + * @{ + */ + #ifndef _TUSB_DCD_H_ #define _TUSB_DCD_H_ @@ -51,6 +64,14 @@ extern "C" { #endif +/** \brief Initialize DCD + * + * \param[in] para1 + * \param[out] para2 + * \return Error Code of the \ref TUSB_ERROR enum + * \note + */ + TUSB_Error_t dcd_init() ATTR_WARN_UNUSED_RESULT; #ifdef __cplusplus @@ -58,3 +79,5 @@ TUSB_Error_t dcd_init() ATTR_WARN_UNUSED_RESULT; #endif #endif /* _TUSB_DCD_H_ */ + +/// @} |
