Troubleshooting White Blank Screen Issue After OCTOSPI1 GPIO Configuration in TouchGFX Application
Hi Community, I am encountering an unexpected white blank screen issue in my TouchGFX application after configuring the GPIO pins for OCTOSPI1 peripherals. The application was previously functioning correctly, but the problem arose after making changes related to OCTOSPI1 GPIO configuration. I am reaching out to the community to seek assistance in diagnosing and resolving this issue.
Following the configuration of GPIO pins for the OCTOSPI1 peripherals, my TouchGFX application now displays a white blank screen upon starting the FreeRTOS kernel (`osKernelStart()`). This unexpected behavior indicates a problem with display initialization or rendering, potentially caused by the recent GPIO configuration changes.
I am using the STM32H7B3I-DK development board and have developed a TouchGFX application with FreeRTOS. The application was functioning correctly before the OCTOSPI1 GPIO configuration changes were made.

Task Entry Code Function:
```c
void TouchGFXHAL::taskEntry()
{
enableLCDControllerInterrupt();
enableInterrupts();
OSWrappers::waitForVSync();
backPorchExited();
// Turning on display after first frame is rendered
HAL_GPIO_WritePin(GPIOK, GPIO_PIN_7, GPIO_PIN_RESET);
/* Assert display enable LCD_DISP_CTRL pin */
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_2, GPIO_PIN_SET);
/* Assert back light LCD_BL_CTRL pin */
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_SET);
for (;;)
{
OSWrappers::waitForVSync();
backPorchExited();
}
}
```
I am seeking assistance from the community to diagnose and resolve the white blank screen issue encountered in my TouchGFX application after configuring the OCTOSPI1 GPIO pins.
Your expertise and assistance in resolving this issue would be greatly appreciated.
Thank you for your support.

