aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/KeyboardHost
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-04-17 00:20:00 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-04-17 00:20:00 +0000
commit11bb2f21720c2af4b29732ca128963869e5c512c (patch)
treedff4a7c6d99207e5d2c6999e6935bda246d54568 /Demos/Host/KeyboardHost
parent5712b8dff669dc1947cd7d6f34f13eb9fe6a8d0a (diff)
downloadlufa-11bb2f21720c2af4b29732ca128963869e5c512c.tar.gz
lufa-11bb2f21720c2af4b29732ca128963869e5c512c.tar.bz2
lufa-11bb2f21720c2af4b29732ca128963869e5c512c.zip
Renamed Serial_Stream driver to SerialStream to remain consistent with the rest of the library's naming scheme for files.
Diffstat (limited to 'Demos/Host/KeyboardHost')
-rw-r--r--Demos/Host/KeyboardHost/KeyboardHost.h2
-rw-r--r--Demos/Host/KeyboardHost/makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/KeyboardHost/KeyboardHost.h b/Demos/Host/KeyboardHost/KeyboardHost.h
index 14d92c0c6..6a601439a 100644
--- a/Demos/Host/KeyboardHost/KeyboardHost.h
+++ b/Demos/Host/KeyboardHost/KeyboardHost.h
@@ -47,7 +47,7 @@
#include <LUFA/Version.h> // Library Version Information
#include <LUFA/Drivers/Misc/TerminalCodes.h> // ANSI Terminal Escape Codes
#include <LUFA/Drivers/USB/USB.h> // USB Functionality
- #include <LUFA/Drivers/Peripheral/Serial_Stream.h> // Serial stream driver
+ #include <LUFA/Drivers/Peripheral/SerialStream.h> // Serial stream driver
#include <LUFA/Drivers/Board/LEDs.h> // LEDs driver
#include <LUFA/Scheduler/Scheduler.h> // Simple scheduler for task management
diff --git a/Demos/Host/KeyboardHost/makefile b/Demos/Host/KeyboardHost/makefile
index 9d65c436e..e74cc4d70 100644
--- a/Demos/Host/KeyboardHost/makefile
+++ b/Demos/Host/KeyboardHost/makefile
@@ -126,7 +126,7 @@ LUFA_PATH = ../../..
SRC = $(TARGET).c \
ConfigDescriptor.c \
$(LUFA_PATH)/LUFA/Scheduler/Scheduler.c \
- $(LUFA_PATH)/LUFA/Drivers/Peripheral/Serial_Stream.c \
+ $(LUFA_PATH)/LUFA/Drivers/Peripheral/SerialStream.c \
$(LUFA_PATH)/LUFA/Drivers/Peripheral/Serial.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/LowLevel.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Pipe.c \