From 3a00e41639f06bd096f7437c951caf8b0dd46848 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 20 Feb 2011 18:23:09 +0000 Subject: Make sure the peripheral driver .c files include the driver dispatch header, rather than the architecture specific header files. --- LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c | 2 +- LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'LUFA/Drivers/Peripheral/AVR8') diff --git a/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c b/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c index 3a8312d85..7b7f5d61f 100644 --- a/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c +++ b/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c @@ -29,7 +29,7 @@ */ #define __INCLUDE_FROM_SERIAL_C -#include "Serial.h" +#include "../Serial.h" FILE USARTSerialStream; 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) -- cgit v1.2.3