aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/Device.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-06-20 04:32:34 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-06-20 04:32:34 +0000
commitd784baaa3a97929fc9a7fed7fff84ff7b0f5bc17 (patch)
tree47153f33a68172f62b6daec089e64fc717863d2f /LUFA/Drivers/USB/Core/Device.h
parentdab7e06a4a914ebc67dd6a9a28c0987b49703c88 (diff)
downloadlufa-d784baaa3a97929fc9a7fed7fff84ff7b0f5bc17.tar.gz
lufa-d784baaa3a97929fc9a7fed7fff84ff7b0f5bc17.tar.bz2
lufa-d784baaa3a97929fc9a7fed7fff84ff7b0f5bc17.zip
Fixed compile error when FIXED_CONTROL_ENDPOINT_SIZE compile time option was disabled, and a USE_*_DESCRIPTORS compile time option was not enabled on the AVR8s.
Add C++ compatibility to some header files currently missing extern "C" linkage.
Diffstat (limited to 'LUFA/Drivers/USB/Core/Device.h')
-rw-r--r--LUFA/Drivers/USB/Core/Device.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/LUFA/Drivers/USB/Core/Device.h b/LUFA/Drivers/USB/Core/Device.h
index 0e8662417..85fdfacf1 100644
--- a/LUFA/Drivers/USB/Core/Device.h
+++ b/LUFA/Drivers/USB/Core/Device.h
@@ -56,6 +56,11 @@
#include "USBInterrupt.h"
#include "Endpoint.h"
+ /* Enable C linkage for C++ Compilers: */
+ #if defined(__cplusplus)
+ extern "C" {
+ #endif
+
/* Preprocessor Checks: */
#if !defined(__INCLUDE_FROM_USB_DRIVER)
#error Do not include this file directly. Include LUFA/Drivers/USB/USB.h instead.
@@ -141,6 +146,11 @@
#include "UC3/Device_UC3.h"
#endif
+ /* Disable C linkage for C++ Compilers: */
+ #if defined(__cplusplus)
+ }
+ #endif
+
#endif
/** @} */