Fix up non-relative header file include paths (thanks to Kim Blomqvist).

pull/1469/head
Dean Camera 12 years ago
parent 2e27cc2670
commit 5d9403fde4

@ -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

@ -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)

@ -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)

@ -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)

Loading…
Cancel
Save