diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-03-11 13:11:58 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-03-11 13:11:58 +0000 |
commit | 0214e096a0274fd506b09812f47dc1183084851d (patch) | |
tree | 127563aa958a3c9eee74b67d65f02e903719d4b0 /Bootloaders/TeensyHID | |
parent | 38039765346c7441208dbcb3fd3cf8f13b7ced58 (diff) | |
download | lufa-0214e096a0274fd506b09812f47dc1183084851d.tar.gz lufa-0214e096a0274fd506b09812f47dc1183084851d.tar.bz2 lufa-0214e096a0274fd506b09812f47dc1183084851d.zip |
Renamed NO_CLEARSET_FEATURE_REQUEST compile time token to NO_FEATURELESS_CONTROL_ONLY_DEVICE and expanded its function to also remove parts of the Get Status chapter 9 request, to further reduce code usage.
Diffstat (limited to 'Bootloaders/TeensyHID')
-rw-r--r-- | Bootloaders/TeensyHID/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bootloaders/TeensyHID/makefile b/Bootloaders/TeensyHID/makefile index 8d8636f36..1a544dd78 100644 --- a/Bootloaders/TeensyHID/makefile +++ b/Bootloaders/TeensyHID/makefile @@ -165,7 +165,7 @@ BOOT_START = 0xC000 # Place -D or -U options here for C sources
CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD)
-CDEFS += -DUSB_DEVICE_ONLY -DUSE_NONSTANDARD_DESCRIPTOR_NAMES -DNO_CLEARSET_FEATURE_REQUES
+CDEFS += -DUSB_DEVICE_ONLY -DUSE_NONSTANDARD_DESCRIPTOR_NAMES -DFEATURELESS_CONTROL_ONLY_DEVICE
CDEFS += -DSTATIC_ENDPOINT_CONFIGURATION -DFIXED_CONTROL_ENDPOINT_SIZE=8
CDEFS += -DUSE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
CDEFS += -DUSE_RAM_DESCRIPTORS -DBOOT_START_ADDR=$(BOOT_START)UL -DUSE_SINGLE_DEVICE_CONFIGURATION
|