Reduce prescaler of the flush timer in the USBtoSerial demo, so that buffer overruns...
[pub/USBasp.git] / Bootloaders / DFU / makefile
index 6695ff5..91301a2 100644 (file)
@@ -85,7 +85,9 @@ F_CPU = 8000000
 F_CLOCK = $(F_CPU)
 
 
-# Starting byte address of the bootloader
+# Starting byte address of the bootloader, as a byte address. Note that the address given
+# in the AVRStudio fuse programming dialogue uses word addresses, which will have to be
+# doubled to obtain the starting byte address of the bootloader section.
 BOOT_START = 0x1E000
 
 
@@ -124,6 +126,7 @@ LUFA_OPTS += -D NO_DEVICE_REMOTE_WAKEUP
 SRC = $(TARGET).c                                                 \
          Descriptors.c                                               \
          $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c        \
+         $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Device.c             \
          $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c           \
          $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Host.c               \
          $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/HostChapter9.c       \