From 41f9979a25c38a7a994f456425e9574f297c3a98 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Mon, 21 Oct 2013 01:50:40 +0200 Subject: [PATCH] Teensy 3.0 confirmed working --- README.md | 2 +- UsbCore.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f282ce5c..3852db97 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ By default serial debugging is disabled. To turn it on simply change ```ENABLE_U Currently the following boards are supported by the library: * All official Arduino AVR boards (Uno, Duemilanove, Mega, Mega 2560, Mega ADK, Leonardo etc.) -* Teensy (Teensy 1.0, Teensy 2.0 and Teensy++ 2.0) +* Teensy (Teensy++ 1.0, Teensy 2.0, Teensy++ 2.0, and Teensy 3.0) * Balanduino * Sanguino * Black Widdow diff --git a/UsbCore.h b/UsbCore.h index 6d1c205d..85b0402e 100644 --- a/UsbCore.h +++ b/UsbCore.h @@ -18,13 +18,13 @@ #ifdef BOARD_BLACK_WIDDOW typedef MAX3421e MAX3421E; // Black Widow #elif defined(CORE_TEENSY) && (defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__)) -typedef MAX3421e MAX3421E; // Teensy++ 2.0 & 1.0 +typedef MAX3421e MAX3421E; // Teensy++ 1.0 and 2.0 #elif defined(BOARD_MEGA_ADK) typedef MAX3421e MAX3421E; // Arduino Mega ADK #elif defined(ARDUINO_AVR_BALANDUINO) typedef MAX3421e MAX3421E; // Balanduino #else -typedef MAX3421e MAX3421E; // Official Arduinos (UNO, Duemilanove, Mega, 2560, Leonardo etc.) +typedef MAX3421e MAX3421E; // Official Arduinos (UNO, Duemilanove, Mega, 2560, Leonardo etc.) or Teensy 2.0 and 3.0 #endif /* Common setup data constant combinations */