adafruit/Adafruit_TouchScreen

ESP8266 support is now broken

Closed this issue · 1 comments

Hi,
in the latest commit @siddacious broke most display libraries for ESP8266 in the touchscreen.h file.

#if defined(__AVR_ATmega328P__) || defined(__AVR_ATmega32U4__) || defined(TEENSYDUINO) || defined(__AVR_ATmega2560__)
typedef volatile uint8_t RwReg;
#endif
#if defined(ARDUINO_STM32_FEATHER)
typedef volatile uint32 RwReg;
#endif
#if defined(NRF52_SERIES) || defined(ESP32) || defined(ARDUINO_ARCH_STM32)
typedef volatile uint32_t RwReg;
#endif

#if defined (__AVR__) || defined(TEENSYDUINO) || defined(ARDUINO_ARCH_SAMD)
  #define USE_FAST_PINIO
#endif

as you can see here, you removed the ESP8266.

I see that there is one commit that fixes the problem,
when will we see the release?

Please release an hotfix.