mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Added support for HobbyTronic's UNO*Pro upgrade.
This commit is contained in:
parent
03933edb41
commit
658a615105
1 changed files with 2 additions and 0 deletions
|
@ -43,6 +43,8 @@ typedef MAX3421e<P3, P2> MAX3421E; // The Intel Galileo supports much faster rea
|
||||||
typedef MAX3421e<P15, P5> MAX3421E; // ESP8266 boards
|
typedef MAX3421e<P15, P5> MAX3421E; // ESP8266 boards
|
||||||
#elif defined(ESP32)
|
#elif defined(ESP32)
|
||||||
typedef MAX3421e<P5, P17> MAX3421E; // ESP32 boards
|
typedef MAX3421e<P5, P17> MAX3421E; // ESP32 boards
|
||||||
|
#elif defined(ARDUINO_AVR_UNO_PRO)
|
||||||
|
typedef MAX3421e<Pb4, Pd6> MAX3421E; // UNO*Pro Upgrade for Arduino UNO
|
||||||
#else
|
#else
|
||||||
typedef MAX3421e<P10, P9> MAX3421E; // Official Arduinos (UNO, Duemilanove, Mega, 2560, Leonardo, Due etc.), Intel Edison, Intel Galileo 2 or Teensy 2.0 and 3.x
|
typedef MAX3421e<P10, P9> MAX3421E; // Official Arduinos (UNO, Duemilanove, Mega, 2560, Leonardo, Due etc.), Intel Edison, Intel Galileo 2 or Teensy 2.0 and 3.x
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue