projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Minor updates to the Benito programmer - remove redundant PORT register manipulations.
[pub/USBasp.git]
/
Demos
/
Device
/
Incomplete
/
Sideshow
/
makefile
diff --git
a/Demos/Device/Incomplete/Sideshow/makefile
b/Demos/Device/Incomplete/Sideshow/makefile
index
7c44d8b
..
aa44b24
100644
(file)
--- a/
Demos/Device/Incomplete/Sideshow/makefile
+++ b/
Demos/Device/Incomplete/Sideshow/makefile
@@
-101,7
+101,7
@@
F_CPU = 8000000
#
\r
# If no clock division is performed on the input clock inside the AVR (via the
\r
# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
\r
#
\r
# If no clock division is performed on the input clock inside the AVR (via the
\r
# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
\r
-F_CLOCK =
8000000
\r
+F_CLOCK =
$(F_CPU)
\r
\r
\r
# Output format. (can be srec, ihex, binary)
\r
\r
\r
# Output format. (can be srec, ihex, binary)
\r
@@
-127,17
+127,18
@@
LUFA_OPTS = -D USE_NONSTANDARD_DESCRIPTOR_NAMES
LUFA_OPTS += -D NO_STREAM_CALLBACKS
\r
LUFA_OPTS += -D USB_DEVICE_ONLY
\r
LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=8
\r
LUFA_OPTS += -D NO_STREAM_CALLBACKS
\r
LUFA_OPTS += -D USB_DEVICE_ONLY
\r
LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=8
\r
-LUFA_OPTS += -D USE_SINGLE_DEVICE_CONFIGURATION
\r
+LUFA_OPTS += -D TOTAL_NUM_CONFIGURATIONS=1
\r
+LUFA_OPTS += -D USE_FLASH_DESCRIPTORS
\r
LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
\r
\r
\r
# List C source files here. (C dependencies are automatically generated.)
\r
SRC = $(TARGET).c \
\r
Descriptors.c \
\r
LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
\r
\r
\r
# List C source files here. (C dependencies are automatically generated.)
\r
SRC = $(TARGET).c \
\r
Descriptors.c \
\r
-
SideshowCommon.c
\
\r
-
SideshowCommands.c
\
\r
-
SideshowApplications.c
\
\r
-
SideshowContent.c
\
\r
+
Lib/SideshowCommon.c
\
\r
+
Lib/SideshowCommands.c
\
\r
+
Lib/SideshowApplications.c
\
\r
+
Lib/SideshowContent.c
\
\r
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c \
\r
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c \
\r
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Host.c \
\r
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c \
\r
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c \
\r
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Host.c \
\r