aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Common/Attributes.h
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-02-19 18:37:22 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-02-19 18:37:22 +0000
commit4fe45268ee8e60dfcf4daba4736b2406a58204c8 (patch)
treecb05a02ad225b632d2d345da362687c9d199061a /LUFA/Common/Attributes.h
parent5583b44ec0c295a36a05130490acf1acc613862c (diff)
Add new ARCH option to the makefiles to (eventually) specify the target device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1669 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Common/Attributes.h')
-rw-r--r--LUFA/Common/Attributes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/Common/Attributes.h b/LUFA/Common/Attributes.h
index 67a3166b..ff4058cf 100644
--- a/LUFA/Common/Attributes.h
+++ b/LUFA/Common/Attributes.h
@@ -44,7 +44,7 @@
*/
/** \ingroup Group_Common
- * @defgroup Group_GCCAttr Function/Variable Attributes
+ * \defgroup Group_GCCAttr Function/Variable Attributes
*
* Macros for easy access GCC function and variable attributes, which can be applied to function prototypes or
* variable attributes.
@@ -52,11 +52,11 @@
* @{
*/
-#ifndef __FUNCATTR_H__
-#define __FUNCATTR_H__
+#ifndef __LUFA_FUNCATTR_H__
+#define __LUFA_FUNCATTR_H__
/* Preprocessor Checks: */
- #if !defined(__COMMON_H__)
+ #if !defined(__INCLUDE_FROM_COMMON_H)
#error Do not include this file directly. Include LUFA/Common/Common.h instead to gain this functionality.
#endif