From e66d0f4069759eced6165a9ff7c0dc953b303bda Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sun, 19 Dec 2021 10:57:36 +0000 Subject: [PATCH] Fix #1499 --- TFT_eSPI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TFT_eSPI.cpp b/TFT_eSPI.cpp index 85073a2..6529c56 100644 --- a/TFT_eSPI.cpp +++ b/TFT_eSPI.cpp @@ -3282,7 +3282,7 @@ void TFT_eSPI::drawPixel(int32_t x, int32_t y, uint32_t color) #endif // Temporary solution is to include the RP2040 optimised code here -#elif (defined (ARDUINO_ARCH_RP2040) || !defined (ARDUINO_ARCH_MBED)) && !defined(TFT_PARALLEL_8_BIT) +#elif (defined (ARDUINO_ARCH_RP2040) || defined (ARDUINO_ARCH_MBED)) && !defined(TFT_PARALLEL_8_BIT) // Since the SPI functions do not terminate until transmission is complete // a busy check is not needed.