Skip to content

Commit 9ecbb74

Browse files
committed
feat(drivers): update to i2c-ng driver
1 parent 4c23160 commit 9ecbb74

File tree

59 files changed

+679
-374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+679
-374
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# See https://pre-commit.com for more information
22
# See https://pre-commit.com/hooks.html for more hooks
33

4-
exclude: '(libraries/ui/)'
4+
exclude: |
5+
(?x)(
6+
.*libraries/ui/.*
7+
| .*.pio/.*
8+
)
59
repos:
610
- repo: https://github.com/igrr/astyle_py.git
711
rev: v1.0.5

esp_panel_board_custom_conf.h

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -390,20 +390,18 @@
390390
/* For general */
391391
#define ESP_PANEL_BOARD_TOUCH_I2C_HOST_ID (0) // Typically set to 0
392392
#if !ESP_PANEL_BOARD_TOUCH_BUS_SKIP_INIT_HOST
393-
/* For host */
394-
#define ESP_PANEL_BOARD_TOUCH_I2C_CLK_HZ (400 * 1000)
395-
// Typically set to 400K
396-
#define ESP_PANEL_BOARD_TOUCH_I2C_SCL_PULLUP (1) // 0/1. Typically set to 1
397-
#define ESP_PANEL_BOARD_TOUCH_I2C_SDA_PULLUP (1) // 0/1. Typically set to 1
398-
#define ESP_PANEL_BOARD_TOUCH_I2C_IO_SCL (18)
399-
#define ESP_PANEL_BOARD_TOUCH_I2C_IO_SDA (8)
393+
/* For host */
394+
# define ESP_PANEL_BOARD_TOUCH_I2C_INTERNAL_PULLUP (1) // 0/1. Typically set to 1
395+
# define ESP_PANEL_BOARD_TOUCH_I2C_IO_SCL (18) // SCL pin number
396+
# define ESP_PANEL_BOARD_TOUCH_I2C_IO_SDA (8) // SDA pin number
400397
#endif
401398
/* For panel */
402399
#define ESP_PANEL_BOARD_TOUCH_I2C_ADDRESS (0) // Typically set to 0 to use the default address.
403400
// - For touchs with only one address, set to 0
404401
// - For touchs with multiple addresses, set to 0 or
405402
// the address. Like GT911, there are two addresses:
406403
// 0x5D(default) and 0x14
404+
# define ESP_PANEL_BOARD_TOUCH_I2C_CLK_HZ (400 * 1000) // Typically set to 400K
407405

408406
#elif ESP_PANEL_BOARD_TOUCH_BUS_TYPE == ESP_PANEL_BUS_TYPE_SPI
409407

@@ -557,17 +555,15 @@
557555
#define ESP_PANEL_BOARD_EXPANDER_I2C_HOST_ID (0) // Typically set to 0
558556
/* For host */
559557
#if !ESP_PANEL_BOARD_EXPANDER_SKIP_INIT_HOST
560-
#define ESP_PANEL_BOARD_EXPANDER_I2C_CLK_HZ (400 * 1000)
561-
// Typically set to 400K
562-
#define ESP_PANEL_BOARD_EXPANDER_I2C_SCL_PULLUP (1) // 0/1. Typically set to 1
563-
#define ESP_PANEL_BOARD_EXPANDER_I2C_SDA_PULLUP (1) // 0/1. Typically set to 1
564-
#define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SCL (18)
565-
#define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SDA (8)
558+
# define ESP_PANEL_BOARD_EXPANDER_I2C_INTERNAL_PULLUP (1) // 0/1. Typically set to 1
559+
# define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SCL (18) // SCL pin number
560+
# define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SDA (8) // SDA pin number
566561
#endif // ESP_PANEL_BOARD_EXPANDER_SKIP_INIT_HOST
567562
/* For device */
568563
#define ESP_PANEL_BOARD_EXPANDER_I2C_ADDRESS (0x20) // The actual I2C address. Even for the same model of IC,
569564
// the I2C address may be different, and confirmation based on
570565
// the actual hardware connection is required
566+
#define ESP_PANEL_BOARD_EXPANDER_I2C_CLK_HZ (400 * 1000) // Typically set to 400K
571567
#endif // ESP_PANEL_BOARD_USE_EXPANDER
572568

573569
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -751,8 +747,8 @@
751747
* 2. Minor version mismatch: May be missing new configurations, recommended to update
752748
* 3. Patch version mismatch: No impact on functionality
753749
*/
754-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 1
755-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
750+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 2
751+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 0
756752
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 0
757753

758754
#endif // ESP_PANEL_BOARD_DEFAULT_USE_CUSTOM

esp_panel_drivers_conf.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@
197197
#define ESP_PANEL_DRIVERS_TOUCH_XPT2046_ENABLE_LOCKING (0)
198198
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_XPT2046 || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
199199

200+
/**
201+
* @brief CST816S specific configurations
202+
*/
203+
#if ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
204+
/**
205+
* @brief Disable read ID
206+
*
207+
* When enabled, CST816S will not read the ID in the initialization process. This is useful for some cases that the
208+
* failure of reading ID is occurred.
209+
*/
210+
#define ESP_PANEL_DRIVERS_TOUCH_CST816S_DISABLE_READ_ID (0)
211+
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
212+
200213
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
201214
////////////////////////////////////////////// IO Expander Configurations //////////////////////////////////////////////
202215
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -261,7 +274,7 @@
261274
* 3. Patch version mismatch: No impact on functionality
262275
*/
263276
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MAJOR 1
264-
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 1
277+
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 2
265278
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_PATCH 0
266279

267280
// *INDENT-ON*

examples/arduino/board/board_dynamic_config/esp_panel_drivers_conf.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@
197197
#define ESP_PANEL_DRIVERS_TOUCH_XPT2046_ENABLE_LOCKING (0)
198198
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_XPT2046 || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
199199

200+
/**
201+
* @brief CST816S specific configurations
202+
*/
203+
#if ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
204+
/**
205+
* @brief Disable read ID
206+
*
207+
* When enabled, CST816S will not read the ID in the initialization process. This is useful for some cases that the
208+
* failure of reading ID is occurred.
209+
*/
210+
#define ESP_PANEL_DRIVERS_TOUCH_CST816S_DISABLE_READ_ID (0)
211+
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
212+
200213
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
201214
////////////////////////////////////////////// IO Expander Configurations //////////////////////////////////////////////
202215
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -261,7 +274,7 @@
261274
* 3. Patch version mismatch: No impact on functionality
262275
*/
263276
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MAJOR 1
264-
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 1
277+
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 2
265278
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_PATCH 0
266279

267280
// *INDENT-ON*

examples/arduino/board/board_static_config/esp_panel_board_custom_conf.h

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -390,20 +390,18 @@
390390
/* For general */
391391
#define ESP_PANEL_BOARD_TOUCH_I2C_HOST_ID (0) // Typically set to 0
392392
#if !ESP_PANEL_BOARD_TOUCH_BUS_SKIP_INIT_HOST
393-
/* For host */
394-
#define ESP_PANEL_BOARD_TOUCH_I2C_CLK_HZ (400 * 1000)
395-
// Typically set to 400K
396-
#define ESP_PANEL_BOARD_TOUCH_I2C_SCL_PULLUP (1) // 0/1. Typically set to 1
397-
#define ESP_PANEL_BOARD_TOUCH_I2C_SDA_PULLUP (1) // 0/1. Typically set to 1
398-
#define ESP_PANEL_BOARD_TOUCH_I2C_IO_SCL (18)
399-
#define ESP_PANEL_BOARD_TOUCH_I2C_IO_SDA (8)
393+
/* For host */
394+
# define ESP_PANEL_BOARD_TOUCH_I2C_INTERNAL_PULLUP (1) // 0/1. Typically set to 1
395+
# define ESP_PANEL_BOARD_TOUCH_I2C_IO_SCL (18) // SCL pin number
396+
# define ESP_PANEL_BOARD_TOUCH_I2C_IO_SDA (8) // SDA pin number
400397
#endif
401398
/* For panel */
402399
#define ESP_PANEL_BOARD_TOUCH_I2C_ADDRESS (0) // Typically set to 0 to use the default address.
403400
// - For touchs with only one address, set to 0
404401
// - For touchs with multiple addresses, set to 0 or
405402
// the address. Like GT911, there are two addresses:
406403
// 0x5D(default) and 0x14
404+
# define ESP_PANEL_BOARD_TOUCH_I2C_CLK_HZ (400 * 1000) // Typically set to 400K
407405

408406
#elif ESP_PANEL_BOARD_TOUCH_BUS_TYPE == ESP_PANEL_BUS_TYPE_SPI
409407

@@ -557,17 +555,15 @@
557555
#define ESP_PANEL_BOARD_EXPANDER_I2C_HOST_ID (0) // Typically set to 0
558556
/* For host */
559557
#if !ESP_PANEL_BOARD_EXPANDER_SKIP_INIT_HOST
560-
#define ESP_PANEL_BOARD_EXPANDER_I2C_CLK_HZ (400 * 1000)
561-
// Typically set to 400K
562-
#define ESP_PANEL_BOARD_EXPANDER_I2C_SCL_PULLUP (1) // 0/1. Typically set to 1
563-
#define ESP_PANEL_BOARD_EXPANDER_I2C_SDA_PULLUP (1) // 0/1. Typically set to 1
564-
#define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SCL (18)
565-
#define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SDA (8)
558+
# define ESP_PANEL_BOARD_EXPANDER_I2C_INTERNAL_PULLUP (1) // 0/1. Typically set to 1
559+
# define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SCL (18) // SCL pin number
560+
# define ESP_PANEL_BOARD_EXPANDER_I2C_IO_SDA (8) // SDA pin number
566561
#endif // ESP_PANEL_BOARD_EXPANDER_SKIP_INIT_HOST
567562
/* For device */
568563
#define ESP_PANEL_BOARD_EXPANDER_I2C_ADDRESS (0x20) // The actual I2C address. Even for the same model of IC,
569564
// the I2C address may be different, and confirmation based on
570565
// the actual hardware connection is required
566+
#define ESP_PANEL_BOARD_EXPANDER_I2C_CLK_HZ (400 * 1000) // Typically set to 400K
571567
#endif // ESP_PANEL_BOARD_USE_EXPANDER
572568

573569
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -751,8 +747,8 @@
751747
* 2. Minor version mismatch: May be missing new configurations, recommended to update
752748
* 3. Patch version mismatch: No impact on functionality
753749
*/
754-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 1
755-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
750+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 2
751+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 0
756752
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 0
757753

758754
#endif // ESP_PANEL_BOARD_DEFAULT_USE_CUSTOM

examples/arduino/board/board_static_config/esp_panel_drivers_conf.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@
197197
#define ESP_PANEL_DRIVERS_TOUCH_XPT2046_ENABLE_LOCKING (0)
198198
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_XPT2046 || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
199199

200+
/**
201+
* @brief CST816S specific configurations
202+
*/
203+
#if ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
204+
/**
205+
* @brief Disable read ID
206+
*
207+
* When enabled, CST816S will not read the ID in the initialization process. This is useful for some cases that the
208+
* failure of reading ID is occurred.
209+
*/
210+
#define ESP_PANEL_DRIVERS_TOUCH_CST816S_DISABLE_READ_ID (0)
211+
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
212+
200213
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
201214
////////////////////////////////////////////// IO Expander Configurations //////////////////////////////////////////////
202215
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -261,7 +274,7 @@
261274
* 3. Patch version mismatch: No impact on functionality
262275
*/
263276
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MAJOR 1
264-
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 1
277+
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 2
265278
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_PATCH 0
266279

267280
// *INDENT-ON*

examples/arduino/drivers/lcd/lcd_3wire_spi_rgb/esp_panel_drivers_conf.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@
197197
#define ESP_PANEL_DRIVERS_TOUCH_XPT2046_ENABLE_LOCKING (0)
198198
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_XPT2046 || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
199199

200+
/**
201+
* @brief CST816S specific configurations
202+
*/
203+
#if ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
204+
/**
205+
* @brief Disable read ID
206+
*
207+
* When enabled, CST816S will not read the ID in the initialization process. This is useful for some cases that the
208+
* failure of reading ID is occurred.
209+
*/
210+
#define ESP_PANEL_DRIVERS_TOUCH_CST816S_DISABLE_READ_ID (0)
211+
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
212+
200213
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
201214
////////////////////////////////////////////// IO Expander Configurations //////////////////////////////////////////////
202215
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -261,7 +274,7 @@
261274
* 3. Patch version mismatch: No impact on functionality
262275
*/
263276
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MAJOR 1
264-
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 1
277+
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 2
265278
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_PATCH 0
266279

267280
// *INDENT-ON*

examples/arduino/drivers/lcd/lcd_mipi_dsi/esp_panel_drivers_conf.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@
197197
#define ESP_PANEL_DRIVERS_TOUCH_XPT2046_ENABLE_LOCKING (0)
198198
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_XPT2046 || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
199199

200+
/**
201+
* @brief CST816S specific configurations
202+
*/
203+
#if ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
204+
/**
205+
* @brief Disable read ID
206+
*
207+
* When enabled, CST816S will not read the ID in the initialization process. This is useful for some cases that the
208+
* failure of reading ID is occurred.
209+
*/
210+
#define ESP_PANEL_DRIVERS_TOUCH_CST816S_DISABLE_READ_ID (0)
211+
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
212+
200213
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
201214
////////////////////////////////////////////// IO Expander Configurations //////////////////////////////////////////////
202215
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -261,7 +274,7 @@
261274
* 3. Patch version mismatch: No impact on functionality
262275
*/
263276
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MAJOR 1
264-
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 1
277+
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 2
265278
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_PATCH 0
266279

267280
// *INDENT-ON*

examples/arduino/drivers/lcd/lcd_qspi/esp_panel_drivers_conf.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@
197197
#define ESP_PANEL_DRIVERS_TOUCH_XPT2046_ENABLE_LOCKING (0)
198198
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_XPT2046 || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
199199

200+
/**
201+
* @brief CST816S specific configurations
202+
*/
203+
#if ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
204+
/**
205+
* @brief Disable read ID
206+
*
207+
* When enabled, CST816S will not read the ID in the initialization process. This is useful for some cases that the
208+
* failure of reading ID is occurred.
209+
*/
210+
#define ESP_PANEL_DRIVERS_TOUCH_CST816S_DISABLE_READ_ID (0)
211+
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
212+
200213
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
201214
////////////////////////////////////////////// IO Expander Configurations //////////////////////////////////////////////
202215
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -261,7 +274,7 @@
261274
* 3. Patch version mismatch: No impact on functionality
262275
*/
263276
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MAJOR 1
264-
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 1
277+
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 2
265278
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_PATCH 0
266279

267280
// *INDENT-ON*

examples/arduino/drivers/lcd/lcd_single_rgb/esp_panel_drivers_conf.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@
197197
#define ESP_PANEL_DRIVERS_TOUCH_XPT2046_ENABLE_LOCKING (0)
198198
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_XPT2046 || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
199199

200+
/**
201+
* @brief CST816S specific configurations
202+
*/
203+
#if ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
204+
/**
205+
* @brief Disable read ID
206+
*
207+
* When enabled, CST816S will not read the ID in the initialization process. This is useful for some cases that the
208+
* failure of reading ID is occurred.
209+
*/
210+
#define ESP_PANEL_DRIVERS_TOUCH_CST816S_DISABLE_READ_ID (0)
211+
#endif // ESP_PANEL_DRIVERS_TOUCH_USE_CST816S || ESP_PANEL_DRIVERS_TOUCH_COMPILE_UNUSED_DRIVERS
212+
200213
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
201214
////////////////////////////////////////////// IO Expander Configurations //////////////////////////////////////////////
202215
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -261,7 +274,7 @@
261274
* 3. Patch version mismatch: No impact on functionality
262275
*/
263276
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MAJOR 1
264-
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 1
277+
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_MINOR 2
265278
#define ESP_PANEL_DRIVERS_CONF_FILE_VERSION_PATCH 0
266279

267280
// *INDENT-ON*

0 commit comments

Comments
 (0)