Make compatible with existing port define
This commit is contained in:
parent
4fd8aa8bd4
commit
6f4cf86834
|
|
@ -7,10 +7,10 @@
|
|||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// Select the SPI port to use
|
||||
#ifndef SPICOM
|
||||
SPIClass& spi = SPI;
|
||||
#ifdef TFT_SPI_PORT
|
||||
SPIClass& spi = TFT_SPI_PORT;
|
||||
#else
|
||||
SPIClass& spi = SPICOM;
|
||||
SPIClass& spi = SPI;
|
||||
#endif
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
Loading…
Reference in New Issue