From 94ceaf2cf132d1e1bef4b231ecac40f99779a9a6 Mon Sep 17 00:00:00 2001 From: FreeBear Date: Fri, 14 Jun 2024 00:03:26 +0100 Subject: [PATCH] Was a mistake to hide TFT_BCKL gpio pin from the user. On some boards, it can be reassigned by the user (on others, it is baked in to the hardware). --- src/drv/tft/tft_driver_arduinogfx.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/drv/tft/tft_driver_arduinogfx.cpp b/src/drv/tft/tft_driver_arduinogfx.cpp index f9fc214f..4bc12004 100644 --- a/src/drv/tft/tft_driver_arduinogfx.cpp +++ b/src/drv/tft/tft_driver_arduinogfx.cpp @@ -296,9 +296,6 @@ bool ArduinoGfx::is_driver_pin(uint8_t pin) #ifdef TFT_HSYNC || (pin == TFT_HSYNC) #endif -#ifdef TFT_BCKL - || (pin == TFT_BCKL) -#endif #ifdef TFT_RST || (pin == TFT_RST) #endif