Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
5d9403fd
Commit
5d9403fd
authored
Jul 01, 2012
by
Dean Camera
Browse files
Fix up non-relative header file include paths (thanks to Kim Blomqvist).
parent
2e27cc26
Changes
4
Hide whitespace changes
Inline
Side-by-side
LUFA/Platform/Platform.h
View file @
5d9403fd
...
...
@@ -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
...
...
LUFA/Platform/UC3/ClockManagement.h
View file @
5d9403fd
...
...
@@ -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)
...
...
LUFA/Platform/UC3/InterruptManagement.h
View file @
5d9403fd
...
...
@@ -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)
...
...
LUFA/Platform/XMEGA/ClockManagement.h
View file @
5d9403fd
...
...
@@ -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)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment