From: Dean Camera Date: Tue, 6 Mar 2012 14:50:59 +0000 (+0000) Subject: Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is speci... X-Git-Tag: LUFA-120730~125 X-Git-Url: http://git.linex4red.de/pub/lufa.git/commitdiff_plain/17f104cbe84c5c04526d800350ec2f723f0f0b19?ds=inline Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid). --- diff --git a/LUFA/DoxygenPages/ChangeLog.txt b/LUFA/DoxygenPages/ChangeLog.txt index 36954c266..d806c6ee8 100644 --- a/LUFA/DoxygenPages/ChangeLog.txt +++ b/LUFA/DoxygenPages/ChangeLog.txt @@ -23,6 +23,7 @@ * - Core: * - Fixed possible enumeration error if the user application selects a pipe other than the default Control pipe between the Powered and Default states of * the host state machine + * - Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid) * - Library Applications: * - None * diff --git a/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h b/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h index c4dfab392..871a0cac2 100644 --- a/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h +++ b/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h @@ -357,6 +357,8 @@ * using the user application's preferred USB controller driver. */ void USB_GEN_vect(void); + #else + ISR(USB_GEN_vect); #endif /* Disable C linkage for C++ Compilers: */