diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-10-01 11:22:24 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-10-01 11:22:24 +0000 |
commit | d06febbb59f5da074e075cc2c92375d46a1b231a (patch) | |
tree | cd93d4a8a3703955b97e2e957f12d33034e7025e | |
parent | 383d167125e8a8a857e95c68a98a21b07f8a0826 (diff) | |
download | lufa-d06febbb59f5da074e075cc2c92375d46a1b231a.tar.gz lufa-d06febbb59f5da074e075cc2c92375d46a1b231a.tar.bz2 lufa-d06febbb59f5da074e075cc2c92375d46a1b231a.zip |
Fix device mode for the U4 parts.
-rw-r--r-- | Demos/Device/ClassDriver/VirtualSerial/makefile | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/USBController.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/ClassDriver/VirtualSerial/makefile b/Demos/Device/ClassDriver/VirtualSerial/makefile index a2e8eb366..79249eda5 100644 --- a/Demos/Device/ClassDriver/VirtualSerial/makefile +++ b/Demos/Device/ClassDriver/VirtualSerial/makefile @@ -60,7 +60,7 @@ # MCU name -MCU = at90usb1287 +MCU = atmega32u4 # Target board (see library "Board Types" documentation, NONE for projects not requiring diff --git a/LUFA/Drivers/USB/LowLevel/USBController.c b/LUFA/Drivers/USB/LowLevel/USBController.c index a542353eb..f6b1b125b 100644 --- a/LUFA/Drivers/USB/LowLevel/USBController.c +++ b/LUFA/Drivers/USB/LowLevel/USBController.c @@ -156,7 +156,7 @@ void USB_ResetInterface(void) #endif } - #if (defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)) + #if (defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)) USB_OTGPAD_On(); #endif } |