Using SF32 to drive QSPI video mode. Looking at the example sifli-sdk\customer\peripherals\st77903, it seems incomplete. Where are the settings for LCD_WriteMultiplePixels and porch transmission? Only see the following. There should generally be parameters like HFP, HBP, VFP, VBP, etc., but looking at the struct, they are not included. Is there any complete documentation and examples for driving QSPI video? #if 1//defined(LCD_USING_ED_LB55_77903_LHZL_320X320_QADSPI_LB551)
.porch_line_gap = 40, //55, //In microsecond
.data_line_gap = 11, //55, //In microsecond
.front_porch = 8, //Front porch line
.back_porch = 8, //Back porch line
#else
.porch_line_gap = 40, //In microsecond
.data_line_gap = 5, //In microsecond
.front_porch = 8, //Front porch line
.back_porch = 8, //Back porch line
#endif
.front_porch = 8, //Front porch line
.back_porch = 8, //Back porch line
These two parameters are the configuration for VFP and VBP; HFP and HBP are not present in their documentation.