GUI相关

  • gui
  • lgvl

lvgl9无法在idf的menuconfig中配置“Swap the 2 bytes of RGB565 color.”选项,需要怎么实现?

lvgl9在代码中使能该功能,.swap bytes =true。

lvgl9中的如何加入第三方的gif解码库功能?

在 menuconfig(Component config → LVGL configuration → 3rd Party Libraries)使能GIF decoder library

lvgl中如何设置使用malloc函数代替lvgl自带的内存分配呢,需要怎么实现?

menuconfig配置中选择use custom malloc。

menuconfig_use_custom_malloc

ESP32-S3 驱动 i8080 接口屏幕时,编译报错 “format buffer too small” 该如何解决?

这个报错说明 LCD 命令参数缓冲区太小,需要增大 LCD_I80_IO_FORMAT_BUF_SIZE

可在 esp-idf/components/esp_lcd/priv_include/esp_lcd_common.h 中,将默认的 LCD_I80_IO_FORMAT_BUF_SIZE32 调整为 64 或更大,具体数值取决于实际 LCD 命令长度。

lcd_I80_IO_format_buf_size