Update iaw #2657 for SPI inclusion only

This commit is contained in:
Bodmer
2023-07-03 19:24:21 +01:00
parent 42b9a4fbd1
commit 6342bfc833
2 changed files with 6 additions and 4 deletions

View File

@@ -29,8 +29,9 @@
//Standard support //Standard support
#include <Arduino.h> #include <Arduino.h>
#include <Print.h> #include <Print.h>
#if !defined (TFT_PARALLEL_8_BIT) && !defined (RP2040_PIO_INTERFACE)
#include <SPI.h> #include <SPI.h>
#endif
/*************************************************************************************** /***************************************************************************************
** Section 2: Load library and processor specific header files ** Section 2: Load library and processor specific header files
***************************************************************************************/ ***************************************************************************************/
@@ -823,8 +824,9 @@ class TFT_eSPI : public Print { friend class TFT_eSprite; // Sprite class has ac
bool verifySetupID(uint32_t id); bool verifySetupID(uint32_t id);
// Global variables // Global variables
#if !defined (TFT_PARALLEL_8_BIT) && !defined (RP2040_PIO_INTERFACE)
static SPIClass& getSPIinstance(void); // Get SPI class handle static SPIClass& getSPIinstance(void); // Get SPI class handle
#endif
uint32_t textcolor, textbgcolor; // Text foreground and background colours uint32_t textcolor, textbgcolor; // Text foreground and background colours
uint32_t bitmap_fg, bitmap_bg; // Bitmap foreground (bit=1) and background (bit=0) colours uint32_t bitmap_fg, bitmap_bg; // Bitmap foreground (bit=1) and background (bit=0) colours