User Activity

there is nothing on  github.   there is initialization by SPI before the LTDC works is there a sequence like you initialize it first over SPI then MX_LTDC_Init() or it does not matter I do have the initialization code but I am missing something void ...
what does exactly happen here ? static void WriteCommand(uint8_t cmd) { HAL_SPI_Transmit(&hspi2, &cmd, sizeof(cmd), HAL_MAX_DELAY); } &cmd is address of the variable I wonder if HAL is actually transferring data at that address ?
I have not seen displays with 1 data Lane MIPI but they are always 2 data Lane MIPIbut some STM chips have only one 1 data Lane MIPICan it be somehow connected like grounding the remaining line.
Every project in this folder for OSPI in H7 chips using CubeIDE compiles with error, Keil complies without errors 
 I have this code it transfers to 0x90000000 (OSPI) data__IO uint8_t *mem_addr; /* USER CODE BEGIN 2 */HAL_OSPI_MemoryMapped(&hospi1, &sMemMappedCfg) mem_addr = (uint8_t *)(OCTOSPI1_BASE + address);for (index = 0; index < BUFFERSIZE; index++){*mem_ad...