projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed possible buffer overrun in the XPLAINBridge project when in serial bridge mode.
[pub/USBasp.git]
/
Projects
/
AVRISP-MKII
/
makefile
diff --git
a/Projects/AVRISP-MKII/makefile
b/Projects/AVRISP-MKII/makefile
index
adb6495
..
88e186d
100644
(file)
--- a/
Projects/AVRISP-MKII/makefile
+++ b/
Projects/AVRISP-MKII/makefile
@@
-102,7
+102,7
@@
FORMAT = ihex
# Target file name (without extension).
# Target file name (without extension).
-TARGET = AVRISP
+TARGET = AVRISP
-MKII
# Object files directory
# Object files directory
@@
-121,7
+121,10
@@
LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=16
LUFA_OPTS += -D FIXED_NUM_CONFIGURATIONS=1
LUFA_OPTS += -D USE_FLASH_DESCRIPTORS
LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
LUFA_OPTS += -D FIXED_NUM_CONFIGURATIONS=1
LUFA_OPTS += -D USE_FLASH_DESCRIPTORS
LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
-
+LUFA_OPTS += -D NO_INTERNAL_SERIAL
+LUFA_OPTS += -D DEVICE_STATE_AS_GPIOR=0
+LUFA_OPTS += -D NO_DEVICE_REMOTE_WAKEUP
+LUFA_OPTS += -D NO_DEVICE_SELF_POWER
# List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c \
# List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c \
@@
-753,4
+756,5
@@
$(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen
\ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen
\ No newline at end of file