diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-04-14 13:46:49 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-04-14 13:46:49 +0000 |
commit | 5e14c194c9a2f5cb52a43f7efeacb795a38ced74 (patch) | |
tree | bc07188cadeddeb919e18764eb3aca89bf3d9954 /Bootloaders | |
parent | 7b79325aa037db9786f0da069c11315a3f6d9721 (diff) | |
download | lufa-5e14c194c9a2f5cb52a43f7efeacb795a38ced74.tar.gz lufa-5e14c194c9a2f5cb52a43f7efeacb795a38ced74.tar.bz2 lufa-5e14c194c9a2f5cb52a43f7efeacb795a38ced74.zip |
Fixed Set/Clear Feature requests directed to a non-configured endpoint not returning a stall to the host.
Make TeensyHID bootloader use an 8 byte control endpoint to match the official Teensy, just in case Paul decides to authenticate on that attribute in the future.
Diffstat (limited to 'Bootloaders')
-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 0895222a4..10b0ebb06 100644 --- a/Bootloaders/TeensyHID/makefile +++ b/Bootloaders/TeensyHID/makefile @@ -110,7 +110,7 @@ LUFA_PATH = ../.. # LUFA library compile-time options
LUFA_OPTS = -D USB_DEVICE_ONLY
LUFA_OPTS += -D DEVICE_STATE_AS_GPIOR=0
-LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=64
+LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=8
LUFA_OPTS += -D FIXED_NUM_CONFIGURATIONS=1
LUFA_OPTS += -D USE_RAM_DESCRIPTORS
LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
|