diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2010-11-29 23:26:54 -0500 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2010-11-29 23:26:54 -0500 |
commit | 4fefe032a53667cba2b801d0cc5f021b3d457ddd (patch) | |
tree | 46ab2b6c746496fbb18278c14118b129ae7cd9fb /firmwares/arduino-usbserial/makefile | |
parent | 4a90c4bd405acc874239d82511a35c377b494dff (diff) |
Fixing Linux UNO serial bug (thanks to Dean Camera).
Enabling INTERRUPT_CONTROL_ENDPOINT in the makefile so we don't miss control messages from Linux. Also deleted two unused USB events to save a few bytes of space (the Mega 2560 .hex is now exactly 4096 bytes).
Diffstat (limited to 'firmwares/arduino-usbserial/makefile')
-rwxr-xr-x | firmwares/arduino-usbserial/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmwares/arduino-usbserial/makefile b/firmwares/arduino-usbserial/makefile index d025865..deab4b4 100755 --- a/firmwares/arduino-usbserial/makefile +++ b/firmwares/arduino-usbserial/makefile @@ -131,7 +131,7 @@ LUFA_OPTS = -D USB_DEVICE_ONLY LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=8
LUFA_OPTS += -D FIXED_NUM_CONFIGURATIONS=1
LUFA_OPTS += -D USE_FLASH_DESCRIPTORS
-#LUFA_OPTS += -D INTERRUPT_CONTROL_ENDPOINT
+LUFA_OPTS += -D INTERRUPT_CONTROL_ENDPOINT
LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
|