Bodmer / TFT_eSPI

Arduino and PlatformIO IDE compatible TFT library optimised for the Raspberry Pi Pico (RP2040), STM32, ESP8266 and ESP32 that supports different driver chips
Other
3.8k stars 1.09k forks source link

Adafruit ESP32 Feather and SSD1351 using Arduino #343

Closed marcwolf1960 closed 5 years ago

marcwolf1960 commented 5 years ago

Hi. When I try to compile TFT_SPIFFS_BMP I am getting the following errors.

TFT_eSPI.cpp:2342:25: error: 'tft_Write_8_8' was not declared in this scope

 tft_Write_8_8(xs, xe);

TFT_eSPI.cpp:2351:25: error: 'tft_Write_8_8' was not declared in this scope

tft_Write_8_8(ys, ye);

I can see there is a TFT_Write_8 for single bytes but nothing to pass 2 bytes. The code is specific to the SSD1331 and SSD1351 driver. Can you help?
Many Thanks Dave

marcwolf1960 commented 5 years ago

Found a Fix. tft_Write_8(xs); tft_Write_8( xe);

And do the same for the others