2016-11-04 05:14 AM
Hi.
I'm working with a STM32F769I-DISCO board. I've generated a project created with ST32Cube. I've selected LTDC -> ''RG888 (24 bits) DSI'' and I've enabled DMA2D. I'm comparing with the LCD_DSI example. I've seen that in the LCD_DSI example uses DSI, but in the code generated with Cube DSI is disabled (HAL_DSI_MODULE_ENABLED is not defined, even i've selected ''RG888 (24 bits) DSI''). Am I missing something? Must I select something else? #dsi #st32cubemx #stm32f769i-disco2016-11-07 05:21 AM
was running into the same Problem.
To use LTDC in DSI mode, you first select LTDC-DSI, then you enable RCC-HSI, and then DSI Host is unlocked. In DSI, you select ''ACM with TE'' for the eval Board. Now you have to configure Clock Config, DSI and LTDC to the specs of the attached TFT.
Have fun !
2016-11-09 04:08 AM
Thanks horbach.markus.
Now it creates the DSI variables and files. Anyway it's difficult to set all params in the Cube, I will use an example that allready works to make the test programs.