diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-02-20 18:23:09 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-02-20 18:23:09 +0000 |
commit | 3a00e41639f06bd096f7437c951caf8b0dd46848 (patch) | |
tree | aa8bee85ccfbe49c5ca96262acadf754e546b797 /LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c | |
parent | b6a3c78fa3e46fea1dd6f4b93352686837983dfd (diff) | |
download | lufa-3a00e41639f06bd096f7437c951caf8b0dd46848.tar.gz lufa-3a00e41639f06bd096f7437c951caf8b0dd46848.tar.bz2 lufa-3a00e41639f06bd096f7437c951caf8b0dd46848.zip |
Make sure the peripheral driver .c files include the driver dispatch header, rather than the architecture specific header files.
Diffstat (limited to 'LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c')
-rw-r--r-- | LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c b/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c index b5f258dd3..edfc9865c 100644 --- a/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c +++ b/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c @@ -6,7 +6,7 @@ */ #define __INCLUDE_FROM_TWI_C -#include "TWI.h" +#include "../TWI.h" uint8_t TWI_StartTransmission(const uint8_t SlaveAddress, const uint8_t TimeoutMS) |