aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/Incomplete/MassStorage/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-03-09 07:49:46 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-03-09 07:49:46 +0000
commitf0c7a11670b2e31ab35c22a41c705841bcd64637 (patch)
treeb022fd088313b4e60434df26846d619d34627848 /Bootloaders/Incomplete/MassStorage/makefile
parent4753528b9eb136863d49b5ad5e66c55e78a4b81b (diff)
downloadlufa-f0c7a11670b2e31ab35c22a41c705841bcd64637.tar.gz
lufa-f0c7a11670b2e31ab35c22a41c705841bcd64637.tar.bz2
lufa-f0c7a11670b2e31ab35c22a41c705841bcd64637.zip
Corrections and debug channel in the Incomplete Mass Storage class bootloader.
Diffstat (limited to 'Bootloaders/Incomplete/MassStorage/makefile')
-rw-r--r--Bootloaders/Incomplete/MassStorage/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bootloaders/Incomplete/MassStorage/makefile b/Bootloaders/Incomplete/MassStorage/makefile
index fca29eda2..bb7eed50c 100644
--- a/Bootloaders/Incomplete/MassStorage/makefile
+++ b/Bootloaders/Incomplete/MassStorage/makefile
@@ -14,11 +14,11 @@
MCU = at90usb1287
ARCH = AVR8
BOARD = USBKEY
-F_CPU = 8000000
+F_CPU = 16000000
F_USB = $(F_CPU)
OPTIMIZATION = s
TARGET = MassStorage
-SRC = $(TARGET).c Descriptors.c Lib/SCSI.c Lib/VirtualFAT.c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS)
+SRC = $(TARGET).c Descriptors.c Lib/SCSI.c Lib/VirtualFAT.c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS) $(LUFA_SRC_SERIAL)
LUFA_PATH = ../../../LUFA
CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/ -DBOOT_START_ADDR=$(BOOT_START_OFFSET)
LD_FLAGS = -Wl,--section-start=.text=$(BOOT_START_OFFSET) $(BOOT_API_LD_FLAGS)