diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-13 14:17:18 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-13 14:17:18 +0000 |
commit | d83cc9ac8049f651637dc2d9b8632f3c208bbdf6 (patch) | |
tree | 64c162999af279b6a823b26082d9f09e4fc6d210 /Projects/XPLAINBridge/makefile | |
parent | 666c0fa4c31b2c9f7f02f6d0e09551e24dc4680c (diff) | |
download | lufa-d83cc9ac8049f651637dc2d9b8632f3c208bbdf6.tar.gz lufa-d83cc9ac8049f651637dc2d9b8632f3c208bbdf6.tar.bz2 lufa-d83cc9ac8049f651637dc2d9b8632f3c208bbdf6.zip |
Change AVRISP-MKII and XPLAINBridge descriptors to indicate that the device is bus-powered only. Add compile time options to reduce the compiled size of the firmware.
Diffstat (limited to 'Projects/XPLAINBridge/makefile')
-rw-r--r-- | Projects/XPLAINBridge/makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Projects/XPLAINBridge/makefile b/Projects/XPLAINBridge/makefile index 1a865a110..75f51690f 100644 --- a/Projects/XPLAINBridge/makefile +++ b/Projects/XPLAINBridge/makefile @@ -123,7 +123,9 @@ LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=8 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 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 \ |