diff --git a/project/Core/Src/lcd_api.c b/project/Core/Src/lcd_api.c index 8a35c7e..2c0738e 100644 --- a/project/Core/Src/lcd_api.c +++ b/project/Core/Src/lcd_api.c @@ -32,10 +32,12 @@ void lcd_init(bool bl_on) { if (bl_on) { HAL_GPIO_WritePin(GPIOK, GPIO_PIN_3, GPIO_PIN_SET); HAL_GPIO_WritePin(GPIOI, GPIO_PIN_12, GPIO_PIN_SET); + LOG_INFO(TAG, "LCD initialise with backlight"); return; } HAL_GPIO_WritePin(GPIOK, GPIO_PIN_3, GPIO_PIN_RESET); HAL_GPIO_WritePin(GPIOI, GPIO_PIN_12, GPIO_PIN_RESET); + LOG_INFO(TAG, "LCD initialise without backlight"); } void lcd_task(void) { @@ -116,6 +118,7 @@ void lcd_display_text(const char* text, uint16_t x_pos, uint16_t y_pos, uint32_t } void lcd_draw_raw_img(const void* p_src, uint32_t x_pos, uint32_t y_pos, uint32_t x_size, uint32_t y_size, uint32_t color_mode) { + LOG_INFO(TAG, "Displaying raw image: @x=%d, @y=%d, width=%d, height=%d", x_pos, y_pos, x_size, y_size); BSP_LCD_SelectLayer(0); uint32_t address = hLtdcHandler.LayerCfg[1].FBStartAdress + (((BSP_LCD_GetXSize() * y_pos) + x_pos) * (4)); void* p_dst = (void*)address; @@ -150,11 +153,13 @@ void lcd_draw_raw_img(const void* p_src, uint32_t x_pos, uint32_t y_pos, uint32_ } void lcd_draw_bmp_img(uint8_t* bmp_buff, uint32_t x_pos, uint32_t y_pos) { + LOG_INFO(TAG, "Displaying BMP image: @x=%d, @y=%d", x_pos, y_pos); BSP_LCD_SelectLayer(0); BSP_LCD_DrawBitmap(x_pos, y_pos, bmp_buff); } void lcd_draw_img_from_fs(const char* name, uint32_t x_pos, uint32_t y_pos) { + LOG_INFO(TAG, "Displaying BMP image %s: @x=%d, @y=%d", name, x_pos, y_pos); BSP_LCD_SelectLayer(0); llfs_file_t* file = llfs_file_open(name); if (file != NULL) { @@ -165,11 +170,13 @@ void lcd_draw_img_from_fs(const char* name, uint32_t x_pos, uint32_t y_pos) { } void lcd_clear_text(void) { + LOG_INFO(TAG, "Clear text"); BSP_LCD_SelectLayer(1); BSP_LCD_Clear(0); } void lcd_clear_images(void) { + LOG_INFO(TAG, "Clear images"); BSP_LCD_SelectLayer(0); for (uint8_t i = 0; i < LCD_MAX_GIFS; i++) { if (gifs[i].src != NULL) { @@ -200,6 +207,7 @@ lcd_gif_t* lcd_draw_gif(uint8_t* src, size_t size, uint32_t x_pos, uint32_t y_po // Open the GIF and reset slot values GIF_begin(&(gif->gif), GIF_PALETTE_RGB888); if (GIF_openRAM(&(gif->gif), src, (int)size, gif_draw_cb)) { + LOG_INFO(TAG, "Draw GIF: @x=%d, @y=%d with size: %d", x_pos, y_pos, size); gif->src = src; gif->x_pos = x_pos; gif->y_pos = y_pos; @@ -229,7 +237,7 @@ lcd_gif_t* lcd_draw_gif_from_fs(const char* name, uint32_t x_pos, uint32_t y_pos LOG_WARN(TAG, "File \"%s\" not found", name); return NULL; } - + LOG_INFO(TAG, "Draw GIF %s", name); // Draw the GIF using the file data gif = lcd_draw_gif((uint8_t*)file->data, file->len, x_pos, y_pos); return gif;