diff --git a/LUFA/Platform/Platform.h b/LUFA/Platform/Platform.h index db5f43535a0594b38bb63f80a16ae520f56c33e9..25243632972e66b22e4e7a0a7c4f842b68824687 100644 --- a/LUFA/Platform/Platform.h +++ b/LUFA/Platform/Platform.h @@ -70,10 +70,10 @@ /* Includes: */ #if (ARCH == ARCH_UC3) - #include <LUFA/Platform/UC3/ClockManagement.h> - #include <LUFA/Platform/UC3/InterruptManagement.h> + #include "UC3/ClockManagement.h" + #include "UC3/InterruptManagement.h" #elif (ARCH == ARCH_XMEGA) - #include <LUFA/Platform/XMEGA/ClockManagement.h> + #include "XMEGA/ClockManagement.h" #endif #endif diff --git a/LUFA/Platform/UC3/ClockManagement.h b/LUFA/Platform/UC3/ClockManagement.h index ac243147650122110243166790206ed1c9937888..b6b6ece27aabd37935874b5d742e36f699032af9 100644 --- a/LUFA/Platform/UC3/ClockManagement.h +++ b/LUFA/Platform/UC3/ClockManagement.h @@ -72,7 +72,7 @@ #define _UC3_CLOCK_MANAGEMENT_H_ /* Includes: */ - #include <LUFA/Common/Common.h> + #include "../../Common/Common.h" /* Enable C linkage for C++ Compilers: */ #if defined(__cplusplus) diff --git a/LUFA/Platform/UC3/InterruptManagement.h b/LUFA/Platform/UC3/InterruptManagement.h index 7441a3011b12f384ad48b948f7e091ef24f9740e..2f9ec2304d90113ea0320811e46e179698859276 100644 --- a/LUFA/Platform/UC3/InterruptManagement.h +++ b/LUFA/Platform/UC3/InterruptManagement.h @@ -71,7 +71,7 @@ #define _UC3_INTERRUPT_MANAGEMENT_H_ /* Includes: */ - #include <LUFA/Common/Common.h> + #include "../../Common/Common.h" /* Enable C linkage for C++ Compilers: */ #if defined(__cplusplus) diff --git a/LUFA/Platform/XMEGA/ClockManagement.h b/LUFA/Platform/XMEGA/ClockManagement.h index c0553aeb9fb7abf834b6d397bd8f1d46a456239a..c824c89fba52c7d65a66193258311c5c88dff32b 100644 --- a/LUFA/Platform/XMEGA/ClockManagement.h +++ b/LUFA/Platform/XMEGA/ClockManagement.h @@ -70,7 +70,7 @@ #define _XMEGA_CLOCK_MANAGEMENT_H_ /* Includes: */ - #include <LUFA/Common/Common.h> + #include "../../Common/Common.h" /* Enable C linkage for C++ Compilers: */ #if defined(__cplusplus)