Skip to content

Commit 5153fe2

Browse files
committed
feat(examples): update PlatformIO build_flags
1 parent 6ff144c commit 5153fe2

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# ChangeLog
22

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+
314
## v0.2.2 - 2025-01-09
415

516
### Bugfixes:

examples/PlatformIO/platformio.ini

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@ platform_packages =
88
upload_speed = 921600
99
monitor_speed = 115200
1010
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:
1217
-DLV_CONF_INCLUDE_SIMPLE
13-
-DDISABLE_ALL_LIBRARY_WARNINGS
14-
-DARDUINO_USB_CDC_ON_BOOT=1
15-
-DCORE_DEBUG_LEVEL=1
1618
-DLV_LVGL_H_INCLUDE_SIMPLE
19+
; Others:
20+
; -DDISABLE_ALL_LIBRARY_WARNINGS ; Disable all library warnings
1721
-I src
1822
lib_deps =
1923
https://github.com/esp-arduino-libs/ESP32_Display_Panel.git

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.2.2"
1+
version: "0.2.3"
22
description: ESP32_Display_Panel is a library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.
33
url: https://github.com/esp-arduino-libs/ESP32_Display_Panel
44
repository: https://github.com/esp-arduino-libs/ESP32_Display_Panel.git

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32_Display_Panel
2-
version=0.2.2
2+
version=0.2.3
33
author=espressif
44
maintainer=espressif
55
sentence=ESP32_Display_Panel is a library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.

0 commit comments

Comments
 (0)