fix some doxygen settings and stuffs add prepacked for IAR compiler

This commit is contained in:
hathach
2012-12-03 16:51:14 +07:00
parent aff644b7c3
commit b698b09a67
19 changed files with 261 additions and 36 deletions

View File

@@ -39,7 +39,7 @@
#ifdef CFG_TUSB_HOST
TUSB_Error_t hcd_init()
TUSB_Error_t hcd_init(uint8_t coreid)
{
return tERROR_NONE;

View File

@@ -41,7 +41,7 @@
* \note TBD
*/
/** \ingroup Group_TinyUSB
/**
* \defgroup Group_HCD Host Controller Driver
* \brief Host Controller Driver
*
@@ -56,6 +56,7 @@
#endif
#include "common/common.h"
#include "core/tusb_types.h"
/** \brief Initialize HCD
*
@@ -65,7 +66,15 @@
* \note
*/
TUSB_Error_t hcd_init() ATTR_WARN_UNUSED_RESULT;
TUSB_Error_t hcd_init(uint8_t hostid) ATTR_WARN_UNUSED_RESULT;
TUSB_Error_t hcd_pipe_open(
uint8_t hostid, uint8_t device_address,
)ATTR_WARN_UNUSED_RESULT;
TUSB_Error_t hcd_pipe_close()ATTR_WARN_UNUSED_RESULT;
TUSB_Error_t hcd_pipe_transfer()ATTR_WARN_UNUSED_RESULT;
TUSB_Error_t hcd_pipe_cancel()ATTR_WARN_UNUSED_RESULT;
#ifdef __cplusplus
}