aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-11-24 11:33:10 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-11-24 11:33:10 +0000
commite915d968a5bdb8619c465b94d21a3801446a6539 (patch)
treee7cbe86dfc1d6a88c448ca759d70a9eb34a46bce /LUFA/Common
parent7f8dbb4908abd33b5ee8bfba7cc3870fa14f7366 (diff)
downloadlufa-e915d968a5bdb8619c465b94d21a3801446a6539.tar.gz
lufa-e915d968a5bdb8619c465b94d21a3801446a6539.tar.bz2
lufa-e915d968a5bdb8619c465b94d21a3801446a6539.zip
Added new USB_Host_GetDeviceConfiguration() and USB_Host_GetInterfaceAltSetting() functions.
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/Attributes.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/LUFA/Common/Attributes.h b/LUFA/Common/Attributes.h
index 7ee641361..92948e10e 100644
--- a/LUFA/Common/Attributes.h
+++ b/LUFA/Common/Attributes.h
@@ -112,15 +112,15 @@
* identical name (in which case the weak reference is discarded at link time).
*/
#define ATTR_WEAK __attribute__ ((weak))
-
- /** Forces the compiler to not automatically zero the given global variable on startup, so that the
- * current RAM contents is retained. Under most conditions this value will be random due to the
- * behaviour of volatile memory once power is removed, but may be used in some specific circumstances,
- * like the passing of values back after a system watchdog reset.
- */
- #define ATTR_NO_INIT __attribute__ ((section (".noinit")))
#endif
+ /** Forces the compiler to not automatically zero the given global variable on startup, so that the
+ * current RAM contents is retained. Under most conditions this value will be random due to the
+ * behaviour of volatile memory once power is removed, but may be used in some specific circumstances,
+ * like the passing of values back after a system watchdog reset.
+ */
+ #define ATTR_NO_INIT __attribute__ ((section (".noinit")))
+
/** Places the function in one of the initialization sections, which execute before the main function
* of the application. Refer to the avr-libc manual for more information on the initialization sections.
*