Hi, not a problem but an interesting finding that might help others.
In short: Adafruit ST7735 library always initialises the SPI bus with 32MHz, even if you use [object].setSPISpeed(frequency) for turning the SPI clk frequency down. The setting is in the ST77xx library which is used by the ST7735 library and can easily be changed. This can solve many issues with long SPI busses and ST7735 displays.
Background: I am playing with many (24) ST7735 displays with a DUE. I have the logic and code working but I had difficulties to drive the length of SPI bus needed. I use 74HC541 buffers for the bus which works basically great. Today I tried a new (longer) wiring layout from the DUE to the displays and I had trouble to make it work. The wiring setup (breadboard style) was to have
DUE - 20cm SPI wiring - BUFFER IC - 4 displays on 30cm ribbon cable - BUFFER IC - 4 displays on 30cm ribbon cable
Issue: The last 4 displays didn't initialise. Signals on the SPI bus looked good at 8MHz SPI speed. When I checked the SPI CLK signal during initialisation I noticed a small burst ahead of other signals that wasn't passing my last buffer. It was obviously faster than 8MHz (my SPI bus clock setting) and too much rounded/rippled by cable inductivity/parallel capacity/reflections. .
Then I found this line in the ST77xx library:
#define SPI_DEFAULT_FREQ 32000000 ///< Default SPI data clock frequency
On a DUE this will start SPI with 32MHz which is too high for long wiring. As mentioned, turning the SPI clock down by using
Tft.setSPISpeed(8000000);
doesn't help because initialisation somehow starts anyway at 32MHz. This might be a problem in many applications.
I simply edited the line in the ST77xx library to
#define SPI_DEFAULT_FREQ 8000000 ///< Default SPI data clock frequency
which completely solved my problem. Actually this explains many issues I have had with this setup. Wahtever you write in your code, the first part of the display initialisation happens at 32 MHZ (or highest SPI speed of your MCU) and this might be too fast for your wiring.
Feel free to pass questions, I got quite deep into this.......