diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-06-14 15:55:13 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-06-14 15:55:13 +0000 |
| commit | 07ee5e52b13dba8bce9589ce94448bc098be2e47 (patch) | |
| tree | 3ec1276e23fd2361033e94e172a190d3a6a77c42 /LUFA/makefile | |
| parent | 12d242d56968012c31193edd1b0065ca1898aba0 (diff) | |
Add host mode USB Class driver stubs, add beginnings of a CDC host class driver.
Split out common defines/types from class drivers into a seperate common class driver directory.
Make central USB Class driver dispatch headers, used for both device and host modes.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@594 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/makefile')
| -rw-r--r-- | LUFA/makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/LUFA/makefile b/LUFA/makefile index 20f943aa..d5829c6e 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -18,6 +18,19 @@ LUFA_SRC_FILES = ./Drivers/USB/LowLevel/DevChapter9.c \ ./Drivers/USB/HighLevel/USBInterrupt.c \
./Drivers/USB/HighLevel/USBTask.c \
./Drivers/USB/HighLevel/ConfigDescriptor.c \
+ ./Drivers/USB/Class/Device/Audio.c \
+ ./Drivers/USB/Class/Device/CDC.c \
+ ./Drivers/USB/Class/Device/HID.c \
+ ./Drivers/USB/Class/Device/MIDI.c \
+ ./Drivers/USB/Class/Device/MassStorage.c \
+ ./Drivers/USB/Class/Device/RNDIS.c \
+ ./Drivers/USB/Class/Host/Audio.c \
+ ./Drivers/USB/Class/Host/CDC.c \
+ ./Drivers/USB/Class/Host/HID.c \
+ ./Drivers/USB/Class/Host/HIDParser.c \
+ ./Drivers/USB/Class/Host/MIDI.c \
+ ./Drivers/USB/Class/Host/MassStorage.c \
+ ./Drivers/USB/Class/Host/StillImage.c \
./Drivers/Board/Temperature.c \
./Drivers/Peripheral/Serial.c \
./Drivers/Peripheral/SerialStream.c \
|
