aboutsummaryrefslogtreecommitdiff
path: root/Bootloaders/TeensyHID
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-07-23 08:00:12 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-07-23 08:00:12 +0000
commit012be96231aa8e57616aeafa68d40973a805b81c (patch)
treee03f9d794664c1042e30406f37e4b244ce1bf1b5 /Bootloaders/TeensyHID
parenteb6b71375bc8ea4c12bcd324272eef322de5add7 (diff)
Ensure that the USB_DeviceState variable is properly set upon wakeup events, to the Addressed or Configured state as needed.
Add explicit support for the AT90USB646 to the Teensy bootloader now that PJRC have released the Teensy++ board. Ensure unfinished SideShow demo uses an unallocated PID value within the LUFA range. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@678 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Bootloaders/TeensyHID')
-rw-r--r--Bootloaders/TeensyHID/TeensyHID.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bootloaders/TeensyHID/TeensyHID.h b/Bootloaders/TeensyHID/TeensyHID.h
index 484fb6b3..3c596059 100644
--- a/Bootloaders/TeensyHID/TeensyHID.h
+++ b/Bootloaders/TeensyHID/TeensyHID.h
@@ -50,7 +50,7 @@
#include <LUFA/Drivers/USB/USB.h>
/* Preprocessor Checks: */
- #if !defined(__AVR_AT90USB162__)
+ #if !defined(__AVR_AT90USB162__) && !defined(__AVR_AT90USB646__)
#error This bootloader is not compatible with the selected AVR model.
#endif