Releases: atanisoft/esp_lcd_ili9488
Releases · atanisoft/esp_lcd_ili9488
v1.0.10 - Bug fixes and 16-bit mode for i8080 example
v1.0.9 - Bug fixes and new example
New feature(s)
- New i8080 example has been added (@meibao-real)
Issues fixed
- A bug with rotation has been fixed (@jacobvc)
General Notes
- None
v1.0.8 - Portrait vs Landscape orientation support
v1.0.7 - Bug Fix Release
New feature(s)
- None
Issues fixed
- [https://github.com//issues/3]
General Notes
- The signature of
esp_lcd_new_panel_ili9488
has been modified to add thebuffer_size
parameter.
v1.0.6 - Bug Fix release
v1.0.5 - Parallel IO (Intel 8080) support
New feature(s)
- Support for parallel IO (Intel 8080) interface.
Issues fixed
General Notes
- When using four wire SPI mode be sure to use 18-bit color depth as noted in the readme.
- When using parallel IO mode be sure to use 16-bit color depth as noted in the readme.
v1.0.4 - SPDX License tag updates
This release only updates the SPDX license tagging of source files.
Bug Fix release
This release removes (and desupports) a dependency on 32-bit color depth when
using LVGL, the color conversion code has only ever supported 16-bit color data
but was incorrectly casting the source color data to uint32_t
instead of
uint16_t
.
As a result of the above bug fix the esp_lcd_panel_dev_config_t
field
bits_per_pixel
will be ignored by esp_lcd_new_panel_ili9488
and the ILI9488
will always use the 18-bit color mode.
The LVGL example has been updated as below:
- Remove unused
lvgl_port_update_callback
since the example does not include
touch support or any screen rotation API calls. - Add option for enabling / disabling double buffering with LVGL, default is to
use a single buffer. - Added missing Kconfig.projbuild entry for
TFT_RESET_PIN
, added new entry
DISPLAY_COLOR_MODE
which can be used to toggle between BGR and RGB color mode
on the ILI9488 display. - Enhanced example to switch from only using
lv_spinner_create
to instead use
lv_meter_create
andlv_anim_t
to display an animated gauge. - Reduced default backlight brightness to 75%.
- Switched from using
esp_register_freertos_tick_hook
toesp_timer_create
for the tick update handler. - Add code to set the background color of the display to black.
v1.0.2 - Bug Fix release
This release contains one bug fix:
- #1 -- Fixing compilation error related to color_space handling.
v1.0.0 - Initial Release
This is the initial release of the ILI9488
Full Changelog: https://github.com/atanisoft/esp_lcd_ili9488/commits/v1.0.0