diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-01-30 19:47:31 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-01-30 19:47:31 +0000 |
| commit | 7ddd744fcae1d66f975b01ba9333d4a3e3862db6 (patch) | |
| tree | bb0a474d996a6ea9232c7a3e342b5672a3ee2efc /LUFA/makefile | |
| parent | ea9c2018d7920a35f318b57d138b722c53765421 (diff) | |
Removed SerialStream module, rolled functionality into the base USART Serial peripheral driver instead through the new Serial_CreateStream() and Serial_CreateBlockingStream() methods.
Renamed the Serial byte send/receive functions to remain consistent with the CDC driver's byte functions.
Altered the serial byte receive function to make it non-blocking.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1646 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/makefile')
| -rw-r--r-- | LUFA/makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/LUFA/makefile b/LUFA/makefile index 3c85d40a..d1710ef8 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -46,7 +46,6 @@ LUFA_SRC_USBCLASS = $(LUFA_ROOT_PATH)/Drivers/USB/Class/Device/Audio.c $(LUFA_ROOT_PATH)/Drivers/USB/Class/Host/StillImage.c LUFA_SRC_TEMPERATURE = $(LUFA_ROOT_PATH)/Drivers/Board/Temperature.c LUFA_SRC_SERIAL = $(LUFA_ROOT_PATH)/Drivers/Peripheral/Serial.c -LUFA_SRC_SERIALSTREAM = $(LUFA_ROOT_PATH)/Drivers/Peripheral/SerialStream.c LUFA_SRC_TWI = $(LUFA_ROOT_PATH)/Drivers/Peripheral/TWI.c LUFA_SRC_SCHEDULER = $(LUFA_ROOT_PATH)/Scheduler/Scheduler.c @@ -55,8 +54,7 @@ LUFA_SRC_SCHEDULER = $(LUFA_ROOT_PATH)/Scheduler/Scheduler.c ifeq ($(origin LUFA_PATH), undefined) LUFA_SRC_ALL_FILES = $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS) \ $(LUFA_SRC_TEMPERATURE) $(LUFA_SRC_SERIAL) \ - $(LUFA_SRC_SERIALSTREAM) $(LUFA_SRC_TWI) \ - $(LUFA_SRC_SCHEDULER) + $(LUFA_SRC_TWI) $(LUFA_SRC_SCHEDULER) all: |
