diff options
Diffstat (limited to 'Demos/Device/USBtoSerial')
-rw-r--r-- | Demos/Device/USBtoSerial/Lib/RingBuff.c (renamed from Demos/Device/USBtoSerial/RingBuff.c) | 0 | ||||
-rw-r--r-- | Demos/Device/USBtoSerial/Lib/RingBuff.h (renamed from Demos/Device/USBtoSerial/RingBuff.h) | 0 | ||||
-rw-r--r-- | Demos/Device/USBtoSerial/USBtoSerial.h | 3 | ||||
-rw-r--r-- | Demos/Device/USBtoSerial/makefile | 2 |
4 files changed, 3 insertions, 2 deletions
diff --git a/Demos/Device/USBtoSerial/RingBuff.c b/Demos/Device/USBtoSerial/Lib/RingBuff.c index 1f477f17a..1f477f17a 100644 --- a/Demos/Device/USBtoSerial/RingBuff.c +++ b/Demos/Device/USBtoSerial/Lib/RingBuff.c diff --git a/Demos/Device/USBtoSerial/RingBuff.h b/Demos/Device/USBtoSerial/Lib/RingBuff.h index 23288d87a..23288d87a 100644 --- a/Demos/Device/USBtoSerial/RingBuff.h +++ b/Demos/Device/USBtoSerial/Lib/RingBuff.h diff --git a/Demos/Device/USBtoSerial/USBtoSerial.h b/Demos/Device/USBtoSerial/USBtoSerial.h index cd1f42c3f..8e7e8aed8 100644 --- a/Demos/Device/USBtoSerial/USBtoSerial.h +++ b/Demos/Device/USBtoSerial/USBtoSerial.h @@ -43,7 +43,8 @@ #include <avr/power.h>
#include "Descriptors.h"
- #include "RingBuff.h"
+
+ #include "Lib/RingBuff.h"
#include <LUFA/Version.h> // Library Version Information
#include <LUFA/Drivers/USB/USB.h> // USB Functionality
diff --git a/Demos/Device/USBtoSerial/makefile b/Demos/Device/USBtoSerial/makefile index 7da8b9740..708e87246 100644 --- a/Demos/Device/USBtoSerial/makefile +++ b/Demos/Device/USBtoSerial/makefile @@ -125,7 +125,7 @@ LUFA_PATH = ../../.. # List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c \
Descriptors.c \
- RingBuff.c \
+ Lib/RingBuff.c \
$(LUFA_PATH)/LUFA/Scheduler/Scheduler.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c \
|