From c2b6dbf94300ae70d1230a266ba3df1255ecb300 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Tue, 13 Jun 2017 12:57:27 +0200 Subject: [PATCH] Use pin 5 for INT on the ESP8266 --- README.md | 2 +- UsbCore.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3246f733..9a42558e 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ Currently the following boards are supported by the library: * STM32F4 * Currently the [NUCLEO-F446RE](http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF262063) is supported featuring the STM32F446. Take a look at the following example code: . * ESP8266 is supported using the [ESP8266 Arduino core](https://github.com/esp8266/Arduino) - * Note it uses pin 15 and 0 for SS and INT respectively + * Note it uses pin 15 and 5 for SS and INT respectively * Also please be aware that: * GPIO16 is **NOT** usable, as it will be used for some other purposes. For example, reset the SoC itself from sleep mode. * GPIO6 to 11 is also **NOT** usable, as they are used to connect SPI flash chip and it is used for storing the executable binary content. diff --git a/UsbCore.h b/UsbCore.h index 3374b640..f78300ca 100644 --- a/UsbCore.h +++ b/UsbCore.h @@ -40,7 +40,7 @@ typedef MAX3421e MAX3421E; // Balanduino #elif defined(__ARDUINO_X86__) && PLATFORM_ID == 0x06 typedef MAX3421e MAX3421E; // The Intel Galileo supports much faster read and write speed at pin 2 and 3 #elif defined(ESP8266) -typedef MAX3421e MAX3421E; // ESP8266 boards +typedef MAX3421e MAX3421E; // ESP8266 boards #else typedef MAX3421e MAX3421E; // Official Arduinos (UNO, Duemilanove, Mega, 2560, Leonardo, Due etc.), Intel Edison, Intel Galileo 2 or Teensy 2.0 and 3.x #endif