File tree 4 files changed +21
-6
lines changed
4 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## v0.2.3 - 2025-01-09
4
+
5
+ ### Enhancements:
6
+
7
+ * feat(examples): update PlatformIO build_flags
8
+
9
+ ### Bugfixes:
10
+
11
+ * fix(touch): fix GT911 build warning
12
+ * fix(version): fix minor number check @arduinomnomnom (#148 )
13
+
3
14
## v0.2.2 - 2025-01-09
4
15
5
16
### Bugfixes:
Original file line number Diff line number Diff line change @@ -8,12 +8,16 @@ platform_packages =
8
8
upload_speed = 921600
9
9
monitor_speed = 115200
10
10
build_flags =
11
- -DBOARD_HAS_PSRAM
11
+ ; Arduino related:
12
+ -DBOARD_HAS_PSRAM ; Enable PSRAM
13
+ ; -DARDUINO_USB_CDC_ON_BOOT=0 ; If using UART port
14
+ -DARDUINO_USB_CDC_ON_BOOT =1 ; If using USB port
15
+ -DCORE_DEBUG_LEVEL =1 ; Set to `5` for full debug output, `0` for none
16
+ ; LVGL related:
12
17
-DLV_CONF_INCLUDE_SIMPLE
13
- -DDISABLE_ALL_LIBRARY_WARNINGS
14
- -DARDUINO_USB_CDC_ON_BOOT =1
15
- -DCORE_DEBUG_LEVEL =1
16
18
-DLV_LVGL_H_INCLUDE_SIMPLE
19
+ ; Others:
20
+ ; -DDISABLE_ALL_LIBRARY_WARNINGS ; Disable all library warnings
17
21
-I src
18
22
lib_deps =
19
23
https://github.com/esp-arduino-libs/ESP32_Display_Panel.git
Original file line number Diff line number Diff line change 1
- version : " 0.2.2 "
1
+ version : " 0.2.3 "
2
2
description : ESP32_Display_Panel is a library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.
3
3
url : https://github.com/esp-arduino-libs/ESP32_Display_Panel
4
4
repository : https://github.com/esp-arduino-libs/ESP32_Display_Panel.git
Original file line number Diff line number Diff line change 1
1
name =ESP32_Display_Panel
2
- version =0.2.2
2
+ version =0.2.3
3
3
author =espressif
4
4
maintainer =espressif
5
5
sentence =ESP32_Display_Panel is a library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.
You can’t perform that action at this time.
0 commit comments