stm32f7xx-hal icon indicating copy to clipboard operation
stm32f7xx-hal copied to clipboard

Support display of STM32F723E-DISCO

Open ctron opened this issue 5 years ago • 2 comments

I have the "STM32F723E-DISCO" and would like to make use of the display.

It looks like this is attached via the FMC, using an ST7789H2 controller.

I tried to get started with the display example in the examples folder, but it looks that doesn't work with the stm32f723 feature enabled.

ctron avatar Sep 15 '20 12:09 ctron

The display example is written for the STM32F746G Discovery board, and the display on that board is attached via the LTDC peripheral (not FMC). So even if you were able to get it to compile by modifying the feature, it would not work for the FMC display on your board unfortunately.

The directory examples/stm32f7disco-screen should probably be renamed to something like examples/stm32f7disco-ltdc-screen or something to specify that. I actually didn't realize FMC displays existed, that sounds pretty cool.

bbrown1867 avatar Sep 24 '20 22:09 bbrown1867

The directory examples/stm32f7disco-screen should probably be renamed to something like examples/stm32f7disco-ltdc-screen or something to specify that. I actually didn't realize FMC displays existed, that sounds pretty cool.

Yes, that would make it more obvious :grinning: … I dug a little bit into it, and it looks like a lot of stuff is missing. But I will give it a try.

ctron avatar Sep 25 '20 13:09 ctron