From fca5a4125fdccbd49877e138121856df6f6c5db6 Mon Sep 17 00:00:00 2001 From: PaulStoffregen Date: Wed, 29 May 2013 10:32:51 -0700 Subject: [PATCH] Add Teensy 3.0 SPI to usbhost.h --- usbhost.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/usbhost.h b/usbhost.h index 04a2947f..ddfc41c9 100644 --- a/usbhost.h +++ b/usbhost.h @@ -51,6 +51,9 @@ typedef SPi< Pb5, Pb3, Pb4, Pb2 > spi; #if defined(__AVR_ATmega644__) || defined(__AVR_ATmega644P__) typedef SPi< Pb7, Pb5, Pb6, Pb4 > spi; #endif +#if defined(__MK20DX128__) +typedef SPi< P13, P11, P12, P10 > spi; +#endif template< typename SS, typename INTR > class MAX3421e /* : public spi */ { static uint8_t vbusState;