From 8c71d3a4e28e46dae22272a7ce0ef55dcc071c16 Mon Sep 17 00:00:00 2001 From: xoreo Date: Thu, 9 Nov 2023 13:26:54 +0100 Subject: [PATCH] Changed function name LCD_DrawBmp to WDA_LCD_DrawBmp --- project/Core/Src/lcd_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Core/Src/lcd_api.c b/project/Core/Src/lcd_api.c index ee118b7..f462712 100644 --- a/project/Core/Src/lcd_api.c +++ b/project/Core/Src/lcd_api.c @@ -34,7 +34,7 @@ void display_bmp_array(const uint8_t *bmp_data, uint16_t x_pos, uint16_t y_pos, BSP_LCD_DrawBitmap(x_pos, y_pos, (uint8_t *)bmp_data); } -void LCD_DrawBmp(const void *pSrc, uint32_t xPos, uint32_t yPos, uint32_t xSize, uint32_t ySize, uint32_t ColorMode) +void WDA_LCD_DrawBmp(const void *pSrc, uint32_t xPos, uint32_t yPos, uint32_t xSize, uint32_t ySize, uint32_t ColorMode) { uint32_t address = hLtdcHandler.LayerCfg[1].FBStartAdress + (((480*yPos) + xPos)*(4));