I am trying to make this screen work:
It has SSD1963 graphics driver. I have tried UTFT and TFTe_spi library.
I have tried the example code from TFTe_spi with ESP32 and it works fine however,
the same library provides somehow support for stm32 (nucleo also) boards but i can't get this to work.
I have spent countless hours with Nucleo64 and 144 (F446RE / L552ZE) and i have the same issue not matter how i configure the User_setup.h
I have tried pin orders, checked connections, tied DB9-DB15 to GND, I always get the same result.
UTFT will not work due to incompatibility issues.
Has anyone tried this driver and had similar issues?
User.Setup.h
#define STM32
#define STM_PORTA_DATA_BUS
#define TFT_PARALLEL_8_BIT
#define SSD1963_800ALT_DRIVER
#define TFT_RGB_ORDER TFT_RGB
#define TFT_CS PC8 // Chip select control pin (library pulls permanently low
#define TFT_DC PC9 // RS Data Command control pin - must use a pin in the range 0-31
#define TFT_RST PC12 // Reset pin, toggles on startup
#define TFT_WR PC10 // Write strobe control pin - must use a pin in the range 0-31
#define TFT_RD PC11 // Read strobe control pin
#define TFT_D0 PA0
#define TFT_D1 PA1
#define TFT_D2 PA2
#define TFT_D3 PA3
#define TFT_D4 PA4
#define TFT_D5 PA5
#define TFT_D6 PA6
#define TFT_D7 PA7
The issue below:
Thanks in advance!