Stm32f469i Display is splitted in 4 Rectangles
Hello,
I'm currently trying to program an STM32F469I-Discovery REV-B-01. I'm using the BSP files from STM32Cube_FW_F4_V1.28.0.
What I want: Just a white screen with "Hello World" at the top.
What I'm facing: Look at the picture.
This is my Code:
BSP_LCD_Init();
BSP_TS_Init(800,480);
BSP_LCD_LayerDefaultInit(0, 0xC0000000);
BSP_LCD_SelectLayer(0);
BSP_LCD_DisplayOn();
BSP_LCD_Clear(((uint32_t) 0xFFFFFFFF));
BSP_LCD_SetBackColor(((uint32_t) 0x00000000));
BSP_LCD_SetTextColor(((uint32_t) 0xFFFFFFFF));
sFONT *myfont = &Font24;
BSP_LCD_SetFont(myfont);
BSP_LCD_Clear(LCD_COLOR_BLACK);
BSP_LCD_DisplayStringAt(0, 0, (uint8_t *)"Hello World", 0x01);
HAL_GPIO_WritePin(LED1_GPIO_Port, LED1_Pin, GPIO_PIN_SET);

