diff options
| author | hathach <[email protected]> | 2012-11-29 10:41:33 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2012-11-29 10:41:33 +0700 |
| commit | 8cd811e2a9760afc1702ae0a872e999517bfcb40 (patch) | |
| tree | 09ec2245a515fad540e60ebcf1da915de99e99fd /tinyusb/common/common.h | |
| parent | 851f5bfd06c837626ddf06f1c326970763d07010 (diff) | |
start to work with doxygen
fix mem_size/mem_base usage with device rom driver
Diffstat (limited to 'tinyusb/common/common.h')
| -rw-r--r-- | tinyusb/common/common.h | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/tinyusb/common/common.h b/tinyusb/common/common.h index 1405b7605..768d9ae1c 100644 --- a/tinyusb/common/common.h +++ b/tinyusb/common/common.h @@ -35,13 +35,22 @@ * This file is part of the tiny usb stack. */ +/** \file + * \brief Common Header File + * + * \note TBD + */ + +/** \ingroup Group_TinyUSB + * \defgroup Group_Common Common Files + * \brief Group_Common brief + * + * @{ + */ + #ifndef _TUSB_COMMON_H_ #define _TUSB_COMMON_H_ -#ifdef __cplusplus - extern "C" { -#endif - #include <stddef.h> #include <stdbool.h> #include <string.h> @@ -78,8 +87,4 @@ #define ASSERT_STATUS(sts) ASSERT_STATUS_MESSAGE(sts, NULL) -#ifdef __cplusplus - } -#endif - #endif /* _TUSB_COMMON_H_ */ |
