Skip to content

Commit 147059d

Browse files
committed
fix(conf): fix error when include inside file (#52)
Closes #52
1 parent b1fb5bc commit 147059d

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

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

3+
## v0.1.4 - 2024-06-17
4+
5+
### Bugfixes:
6+
7+
* fix(conf): fix error when include inside file (#52)
8+
39
## v0.1.3 - 2024-06-14
410

511
### Enhancements:

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.1.3
2+
version=0.1.4
33
author=espressif
44
maintainer=espressif
55
sentence=ESP32_Display_Panel is an Arduino library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.

src/ESP_PanelVersions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/* Library Version */
1212
#define ESP_PANEL_VERSION_MAJOR 0
1313
#define ESP_PANEL_VERSION_MINOR 1
14-
#define ESP_PANEL_VERSION_PATCH 3
14+
#define ESP_PANEL_VERSION_PATCH 4
1515

1616
/* File `ESP_Panel_Conf.h` */
1717
#define ESP_PANEL_CONF_VERSION_MAJOR 0

src/ESP_Panel_Conf_Internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#endif
4949
#endif
5050

51-
#if !ESP_PANEL_CONF_INCLUDE_INSIDE
51+
#ifndef ESP_PANEL_CONF_INCLUDE_INSIDE
5252
/* Supplement macro definitions based on sdkconfig, use default values if not defined */
5353
/*-------------------------------- Debug configurations --------------------------------*/
5454
#ifndef ESP_PANEL_CHECK_RESULT_ASSERT

0 commit comments

Comments
 (0)