2015-09-15 11:02 AM
Hello!
We developed a board with STM32F407 and a 7'' TFT with SSD1963, when this board was projected we didn't know STemWin library and the bus interface was connected on I/O pins like this:SSD1963 ---> STM32F407IG DB0...DB15 ---> PE0....PE15 CS ---> PD2 DC ---> PD3 RD ---> PD0 WR ---> PD1 TE ---> PD5 We want to know if is there a way to configure this pins to use with stemwin library or we have to route again our board to use other pins like the ones used on STM324xG-EVAL? Thanks, Giovani #ssd1963-stm32f407-stemwin2015-09-15 11:28 AM
Well no amount of pin configuration is going to connect this to the FSMC in the form of an external bus.
You'll have to look at some of the other examples, and port your register and frame buffer reading/writing code into one of the EVAL examples that uses a similar controller arrangement. I think this abstraction is separate from the STemWin portion itself. And of course you can buy the full libraries from Segger.2015-09-15 12:55 PM
Thanks Clive,
we will connect to FSMC in the form of an external bus, after test with stemwin library and then produce new board if it meet our needs.