Skip to content

Commit 3d1937d

Browse files
committed
fix(version): correct version compare patch
1 parent bb48530 commit 3d1937d

28 files changed

+97
-55
lines changed

ESP_Panel_Board_Custom.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@
363363
// #define ESP_PANEL_BEGIN_BACKLIGHT_END_FUNCTION( panel )
364364
// #define ESP_PANEL_BEGIN_END_FUNCTION( panel )
365365

366+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
367+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
368+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
366369
/**
367370
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
368371
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
@@ -376,7 +379,7 @@
376379
*/
377380
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
378381
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
379-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 1
382+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
380383

381384
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
382385

ESP_Panel_Board_Supported.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
*/
8484
// #define BOARD_WAVESHARE_ESP32_S3_Touch_LCD_4_3
8585

86+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
87+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
88+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
8689
/**
8790
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
8891
* the current version of `ESP_Panel_Board_Supported.h` in the library. The detailed rules are as follows:
@@ -95,7 +98,7 @@
9598
*
9699
*/
97100
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
98-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 2
99-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
101+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 3
102+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
100103

101104
#endif

ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/LCD/3wireSPI_RGB/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/LCD/QSPI/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/LCD/RGB/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/LCD/SPI/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/LVGL/v8/Porting/ESP_Panel_Board_Custom.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@
363363
// #define ESP_PANEL_BEGIN_BACKLIGHT_END_FUNCTION( panel )
364364
// #define ESP_PANEL_BEGIN_END_FUNCTION( panel )
365365

366+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
367+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
368+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
366369
/**
367370
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
368371
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
@@ -376,7 +379,7 @@
376379
*/
377380
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
378381
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
379-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 1
382+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
380383

381384
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
382385

examples/LVGL/v8/Porting/ESP_Panel_Board_Supported.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
*/
8484
// #define BOARD_WAVESHARE_ESP32_S3_Touch_LCD_4_3
8585

86+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
87+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
88+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
8689
/**
8790
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
8891
* the current version of `ESP_Panel_Board_Supported.h` in the library. The detailed rules are as follows:
@@ -95,7 +98,7 @@
9598
*
9699
*/
97100
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
98-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 2
99-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
101+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 3
102+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
100103

101104
#endif

examples/LVGL/v8/Porting/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/LVGL/v8/Rotation/ESP_Panel_Board_Custom.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@
363363
// #define ESP_PANEL_BEGIN_BACKLIGHT_END_FUNCTION( panel )
364364
// #define ESP_PANEL_BEGIN_END_FUNCTION( panel )
365365

366+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
367+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
368+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
366369
/**
367370
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
368371
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
@@ -376,7 +379,7 @@
376379
*/
377380
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
378381
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
379-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 1
382+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
380383

381384
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
382385

examples/LVGL/v8/Rotation/ESP_Panel_Board_Supported.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
*/
8484
// #define BOARD_WAVESHARE_ESP32_S3_Touch_LCD_4_3
8585

86+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
87+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
88+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
8689
/**
8790
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
8891
* the current version of `ESP_Panel_Board_Supported.h` in the library. The detailed rules are as follows:
@@ -95,7 +98,7 @@
9598
*
9699
*/
97100
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
98-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 2
99-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
101+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 3
102+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
100103

101104
#endif

examples/LVGL/v8/Rotation/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/Panel/PanelTest/ESP_Panel_Board_Custom.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@
363363
// #define ESP_PANEL_BEGIN_BACKLIGHT_END_FUNCTION( panel )
364364
// #define ESP_PANEL_BEGIN_END_FUNCTION( panel )
365365

366+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
367+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
368+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
366369
/**
367370
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
368371
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
@@ -376,7 +379,7 @@
376379
*/
377380
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
378381
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
379-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 1
382+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
380383

381384
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
382385

examples/Panel/PanelTest/ESP_Panel_Board_Supported.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
*/
8484
// #define BOARD_WAVESHARE_ESP32_S3_Touch_LCD_4_3
8585

86+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
87+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
88+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
8689
/**
8790
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
8891
* the current version of `ESP_Panel_Board_Supported.h` in the library. The detailed rules are as follows:
@@ -95,7 +98,7 @@
9598
*
9699
*/
97100
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
98-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 2
99-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
101+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 3
102+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
100103

101104
#endif

examples/Panel/PanelTest/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/PlatformIO/src/ESP_Panel_Board_Custom.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@
363363
// #define ESP_PANEL_BEGIN_BACKLIGHT_END_FUNCTION( panel )
364364
// #define ESP_PANEL_BEGIN_END_FUNCTION( panel )
365365

366+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
367+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
368+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
366369
/**
367370
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
368371
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
@@ -376,7 +379,7 @@
376379
*/
377380
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
378381
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
379-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 1
382+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
380383

381384
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
382385

examples/PlatformIO/src/ESP_Panel_Board_Supported.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
*/
8484
// #define BOARD_WAVESHARE_ESP32_S3_Touch_LCD_4_3
8585

86+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
87+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
88+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
8689
/**
8790
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
8891
* the current version of `ESP_Panel_Board_Supported.h` in the library. The detailed rules are as follows:
@@ -95,7 +98,7 @@
9598
*
9699
*/
97100
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
98-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 2
99-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
101+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 3
102+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
100103

101104
#endif

examples/PlatformIO/src/ESP_Panel_Conf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
6464
/**
6565
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
66-
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
66+
* the current version of `ESP_Panel_Conf.h` in the library. The detailed rules are as follows:
6767
*
6868
* 1. If the major version is not consistent, then the configurations in this file are incompatible with the library
6969
* and must be replaced with the file from the library.
@@ -74,4 +74,4 @@
7474
*/
7575
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
7676
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
77-
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 1
77+
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 2

examples/SquareLine/v8/Porting/ESP_Panel_Board_Custom.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@
363363
// #define ESP_PANEL_BEGIN_BACKLIGHT_END_FUNCTION( panel )
364364
// #define ESP_PANEL_BEGIN_END_FUNCTION( panel )
365365

366+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
367+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
368+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
366369
/**
367370
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
368371
* the current version of `ESP_Panel_Board_Custom.h` in the library. The detailed rules are as follows:
@@ -376,7 +379,7 @@
376379
*/
377380
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
378381
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
379-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 1
382+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
380383

381384
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
382385

examples/SquareLine/v8/Porting/ESP_Panel_Board_Supported.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
*/
8484
// #define BOARD_WAVESHARE_ESP32_S3_Touch_LCD_4_3
8585

86+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
87+
/////////////////////////////////////////////// File Version ///////////////////////////////////////////////////////////
88+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
8689
/**
8790
* Do not change the following versions, they are used to check if the configurations in this file are compatible with
8891
* the current version of `ESP_Panel_Board_Supported.h` in the library. The detailed rules are as follows:
@@ -95,7 +98,7 @@
9598
*
9699
*/
97100
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
98-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 2
99-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
101+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 3
102+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
100103

101104
#endif

0 commit comments

Comments
 (0)