Skip to content

Commit b7d17f3

Browse files
committed
[stm32l475] update lvgl driver
1 parent a087a1b commit b7d17f3

File tree

1 file changed

+1
-1
lines changed
  • bsp/stm32/stm32l475-atk-pandora/board/ports/lcd

1 file changed

+1
-1
lines changed

bsp/stm32/stm32l475-atk-pandora/board/ports/lcd/drv_lcd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ void lcd_fill(rt_uint16_t x_start, rt_uint16_t y_start, rt_uint16_t x_end, rt_ui
438438
*/
439439
void lcd_fill_array(rt_uint16_t x_start, rt_uint16_t y_start, rt_uint16_t x_end, rt_uint16_t y_end, void *pcolor)
440440
{
441-
rt_uint32_t size = 0, size_remain = 0;
441+
rt_uint32_t size = 0;
442442

443443
size = (x_end - x_start + 1) * (y_end - y_start + 1) * 2;
444444
lcd_address_set(x_start, y_start, x_end, y_end);

0 commit comments

Comments
 (0)