diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-02-20 18:23:09 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-02-20 18:23:09 +0000 |
| commit | 9a8322ce05c2028d02f994d9f8b7d4ffc4962e9d (patch) | |
| tree | aa8bee85ccfbe49c5ca96262acadf754e546b797 | |
| parent | d285950b543e6ec7e7b91f2eb0b1eff77e3ee0fd (diff) | |
Make sure the peripheral driver .c files include the driver dispatch header, rather than the architecture specific header files.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1678 d5102386-fcda-11dd-9fdb-3debd5008f28
| -rw-r--r-- | LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c | 2 | ||||
| -rw-r--r-- | LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c | 2 | ||||
| -rw-r--r-- | LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h | 2 | ||||
| -rw-r--r-- | LUFA/Drivers/USB/Core/UC3B/OTG_UC3B.h | 4 | ||||
| -rw-r--r-- | LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c b/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c index 3a8312d8..7b7f5d61 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 b5f258dd..edfc9865 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) diff --git a/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h b/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h index e0fee630..dcafe63b 100644 --- a/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h +++ b/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h @@ -29,7 +29,7 @@ */
/** \file
- * \brief USB Endpoint definitions for the UC3B microcontrollers.
+ * \brief USB Endpoint definitions for the AVR32 UC3B microcontrollers.
* \copydetails Group_EndpointManagement_UC3B
*
* \note This file should not be included directly. It is automatically included as needed by the USB driver
diff --git a/LUFA/Drivers/USB/Core/UC3B/OTG_UC3B.h b/LUFA/Drivers/USB/Core/UC3B/OTG_UC3B.h index 92ec38a2..b4d79acc 100644 --- a/LUFA/Drivers/USB/Core/UC3B/OTG_UC3B.h +++ b/LUFA/Drivers/USB/Core/UC3B/OTG_UC3B.h @@ -29,7 +29,7 @@ */
/** \file
- * \brief USB OTG definitions for the UC3B microcontrollers.
+ * \brief USB OTG definitions for the AVR32 UC3B microcontrollers.
* \copydetails Group_OTG_UC3B
*
* \note This file should not be included directly. It is automatically included as needed by the USB driver
@@ -38,7 +38,7 @@ /** \ingroup Group_OTG
* \defgroup Group_OTG_UC3B USB On The Go (OTG) Management (UC3B)
- * \brief USB OTG definitions for the UC3B microcontrollers.
+ * \brief USB OTG definitions for the AVR32 UC3B microcontrollers.
*
* Architecture specific USB OTG definitions for the Atmel 32-bit AVR UC3B microcontrollers.
*
diff --git a/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h b/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h index 9b24c5c8..eeeb1692 100644 --- a/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h +++ b/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h @@ -29,7 +29,7 @@ */
/** \file
- * \brief USB Pipe definitions for the UC3B microcontrollers.
+ * \brief USB Pipe definitions for the AVR32 UC3B microcontrollers.
* \copydetails Group_PipeManagement_UC3B
*
* \note This file should not be included directly. It is automatically included as needed by the USB driver
|
