start to add code for hcd_init test

change hcd_init signature (omit hostid)
This commit is contained in:
hathach
2013-02-28 17:00:51 +07:00
parent 82bd4719ce
commit 795fe7468d
7 changed files with 35 additions and 24 deletions

View File

@@ -79,8 +79,10 @@
* @{
*/
#ifndef ATTR_ALWAYS_INLINE
/// Generally, functions are not inlined unless optimization is specified. For functions declared inline, this attribute inlines the function even if no optimization level is specified
#define ATTR_ALWAYS_INLINE __attribute__ ((always_inline))
#endif
/// The nonnull attribute specifies that some function parameters should be non-null pointers. f the compiler determines that a null pointer is passed in an argument slot marked as non-null, and the -Wnonnull option is enabled, a warning is issued. All pointer arguments are marked as non-null
#define ATTR_NON_NULL __attribute__ ((nonull))