Skip to content

Commit 88270a5

Browse files
committed
feat(repo): support build on the esp-idf
1 parent a66b165 commit 88270a5

File tree

92 files changed

+4415
-421
lines changed

Some content is hidden

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

92 files changed

+4415
-421
lines changed

CMakeLists.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@ file(GLOB_RECURSE C_SRCS "${SRCS_DIR}/*.c")
55

66
idf_component_register(
77
SRCS
8-
${C_SRCS}
9-
${CPP_SRCS}
8+
${C_SRCS} ${CPP_SRCS}
109
INCLUDE_DIRS
1110
${SRCS_DIR}
1211
REQUIRES
13-
driver
14-
esp_lcd
15-
esp-io-expander
12+
driver esp_lcd
1613
)
1714

1815
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-missing-field-initializers -Wno-narrowing)

ESP_Panel_Board_Custom.h

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -176,18 +176,20 @@
176176
* 2. Formater: ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(delay_ms, command, { data0, data1, ... }) and
177177
* ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(delay_ms, command)
178178
*/
179-
// #define ESP_PANEL_LCD_VENDOR_INIT_CMD() \
180-
// { \
181-
// {0xFF, (uint8_t []){0x77, 0x01, 0x00, 0x00, 0x10}, 5, 0}, \
182-
// {0xC0, (uint8_t []){0x3B, 0x00}, 2, 0}, \
183-
// {0xC1, (uint8_t []){0x0D, 0x02}, 2, 0}, \
184-
// {0x29, (uint8_t []){0x00}, 0, 120}, \
185-
// or \
186-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xFF, {0x77, 0x01, 0x00, 0x00, 0x10}), \
187-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC0, {0x3B, 0x00}), \
188-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC1, {0x0D, 0x02}), \
189-
// ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(120, 0x29), \
190-
// }
179+
/*
180+
#define ESP_PANEL_LCD_VENDOR_INIT_CMD() \
181+
{ \
182+
{0xFF, (uint8_t []){0x77, 0x01, 0x00, 0x00, 0x10}, 5, 0}, \
183+
{0xC0, (uint8_t []){0x3B, 0x00}, 2, 0}, \
184+
{0xC1, (uint8_t []){0x0D, 0x02}, 2, 0}, \
185+
{0x29, (uint8_t []){0x00}, 0, 120}, \
186+
or \
187+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xFF, {0x77, 0x01, 0x00, 0x00, 0x10}), \
188+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC0, {0x3B, 0x00}), \
189+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC1, {0x0D, 0x02}), \
190+
ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(120, 0x29), \
191+
}
192+
*/
191193

192194
/* LCD Color Settings */
193195
/* LCD color depth in bits */
@@ -379,7 +381,7 @@
379381
*/
380382
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
381383
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
382-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
384+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 3
383385

384386
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
385387

ESP_Panel_Board_Supported.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
* - BOARD_ESP32_S3_BOX_LITE (ESP32-S3-Box-Lite): https://github.com/espressif/esp-box/tree/master
2727
* - BOARD_ESP32_S3_EYE (ESP32-S3-EYE): https://github.com/espressif/esp-who/blob/master/docs/en/get-started/ESP32-S3-EYE_Getting_Started_Guide.md
2828
* - BOARD_ESP32_S3_KORVO_2 (ESP32-S3-Korvo-2): https://docs.espressif.com/projects/esp-adf/en/latest/design-guide/dev-boards/user-guide-esp32-s3-korvo-2.html
29-
* - BOARD_ESP32_S3_LCD_EV_BOARD (ESP32-S3-LCD-EV-Board): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
29+
* - BOARD_ESP32_S3_LCD_EV_BOARD (ESP32-S3-LCD-EV-Board(v1.1-v1.4)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
3030
* - BOARD_ESP32_S3_LCD_EV_BOARD_V1_5 (ESP32-S3-LCD-EV-Board(v1.5)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html
31-
* - BOARD_ESP32_S3_LCD_EV_BOARD_2 (ESP32-S3-LCD-EV-Board-2)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
31+
* - BOARD_ESP32_S3_LCD_EV_BOARD_2 (ESP32-S3-LCD-EV-Board-2(v1.1-v1.4))): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
3232
* - BOARD_ESP32_S3_LCD_EV_BOARD_2_V1_5 (ESP32-S3-LCD-EV-Board-2(v1.5)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html
3333
* - BOARD_ESP32_S3_USB_OTG (ESP32-S3-USB-OTG): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-usb-otg/index.html
3434
*
@@ -56,9 +56,9 @@
5656
/*
5757
* M5Stack (https://m5stack.com/):
5858
*
59-
* - BOARD_M5STACK_M5CORE2 (M5STACK_M5CORE2): https://docs.m5stack.com/zh_CN/core/core2
60-
* - BOARD_M5STACK_M5DIAL (M5STACK_M5DIAL): https://docs.m5stack.com/zh_CN/core/M5Dial
61-
* - BOARD_M5STACK_M5CORES3 (M5STACK_M5CORES3): https://docs.m5stack.com/zh_CN/core/CoreS3
59+
* - BOARD_M5STACK_M5CORE2 (M5STACK_M5CORE2): https://docs.m5stack.com/en/core/core2
60+
* - BOARD_M5STACK_M5DIAL (M5STACK_M5DIAL): https://docs.m5stack.com/en/core/M5Dial
61+
* - BOARD_M5STACK_M5CORES3 (M5STACK_M5CORES3): https://docs.m5stack.com/en/core/CoreS3
6262
*/
6363
// #define BOARD_M5STACK_M5CORE2
6464
// #define BOARD_M5STACK_M5DIAL
@@ -102,6 +102,6 @@
102102
*/
103103
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
104104
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 5
105-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
105+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
106106

107107
#endif

Kconfig

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
menu "ESP Panel Configurations"
2+
config ESP_PANEL_CONF_FILE_SKIP
3+
bool "Unckeck this to ignore `ESP_Panel_Conf.h`"
4+
default y
5+
6+
config ESP_PANEL_BOARD_FILE_SKIP
7+
bool "Unckeck this to ignore `ESP_Panel_Board_*.h`"
8+
default y
9+
10+
config ESP_PANEL_CHECK_RESULT_ASSERT
11+
bool "Assert on error"
12+
default n
13+
help
14+
If enabled, the driver will assert on error. Otherwise, the driver will return error code on error.
15+
16+
config ESP_PANEL_ENABLE_LOG
17+
bool "Enable output debug log"
18+
default n
19+
help
20+
If enabled, the driver will output log for debugging.
21+
22+
orsource "./src/touch/Kconfig.touch"
23+
24+
orsource "./src/board/Kconfig.board"
25+
26+
endmenu

examples/LCD/3wireSPI_RGB/3wireSPI_RGB.ino

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,18 @@ void setup()
214214
// Configure external initialization commands, should called before `init()`
215215
lcd->configVendorCommands(lcd_init_cmd, sizeof(lcd_init_cmd)/sizeof(lcd_init_cmd[0]));
216216
#endif
217+
// lcd->configAutoReleaseBus(true); // If the "3-wire SPI" interface are sharing pins of the "RGB" interface to
218+
// save GPIOs, please enable this function to release the bus object and pins
219+
// (except CS signal). And then, the "3-wire SPI" interface cannot be used to
220+
// transmit commands any more.
221+
// lcd->configMirrorByCommand(true); // This function is conflict with `configAutoReleaseBus(true)`, please don't
222+
// enable them at the same time
217223
lcd->init();
218-
lcd->reset();
224+
lcd->reset(); // If the `configAutoReleaseBus(true)` is called, here should not call `reset()`
225+
// to deinit the LCD device
219226
lcd->begin();
220-
lcd->displayOn();
227+
lcd->displayOn(); // This function is conflict with `configAutoReleaseBus(true)`, please don't
228+
// enable them at the same time
221229
#if EXAMPLE_ENABLE_PRINT_LCD_FPS
222230
lcd->attachRefreshFinishCallback(onVsyncEndCallback, nullptr);
223231
#endif

examples/LCD/SPI/SPI.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ const esp_lcd_panel_vendor_init_cmd_t lcd_init_cmd[] = {
113113
#define EXAMPLE_LCD_PIN_NUM_RST (-1) // Set to -1 if not used
114114
#define EXAMPLE_LCD_PIN_NUM_BK_LIGHT (45) // Set to -1 if not used
115115
#define EXAMPLE_LCD_BK_LIGHT_ON_LEVEL (1)
116-
117116
#define EXAMPLE_LCD_BK_LIGHT_OFF_LEVEL !EXAMPLE_LCD_BK_LIGHT_ON_LEVEL
118117

119118
/* Enable or disable the attachment of a callback function that is called after each bitmap drawing is completed */

examples/LVGL/v8/Porting/ESP_Panel_Board_Custom.h

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -176,18 +176,20 @@
176176
* 2. Formater: ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(delay_ms, command, { data0, data1, ... }) and
177177
* ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(delay_ms, command)
178178
*/
179-
// #define ESP_PANEL_LCD_VENDOR_INIT_CMD() \
180-
// { \
181-
// {0xFF, (uint8_t []){0x77, 0x01, 0x00, 0x00, 0x10}, 5, 0}, \
182-
// {0xC0, (uint8_t []){0x3B, 0x00}, 2, 0}, \
183-
// {0xC1, (uint8_t []){0x0D, 0x02}, 2, 0}, \
184-
// {0x29, (uint8_t []){0x00}, 0, 120}, \
185-
// or \
186-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xFF, {0x77, 0x01, 0x00, 0x00, 0x10}), \
187-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC0, {0x3B, 0x00}), \
188-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC1, {0x0D, 0x02}), \
189-
// ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(120, 0x29), \
190-
// }
179+
/*
180+
#define ESP_PANEL_LCD_VENDOR_INIT_CMD() \
181+
{ \
182+
{0xFF, (uint8_t []){0x77, 0x01, 0x00, 0x00, 0x10}, 5, 0}, \
183+
{0xC0, (uint8_t []){0x3B, 0x00}, 2, 0}, \
184+
{0xC1, (uint8_t []){0x0D, 0x02}, 2, 0}, \
185+
{0x29, (uint8_t []){0x00}, 0, 120}, \
186+
or \
187+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xFF, {0x77, 0x01, 0x00, 0x00, 0x10}), \
188+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC0, {0x3B, 0x00}), \
189+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC1, {0x0D, 0x02}), \
190+
ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(120, 0x29), \
191+
}
192+
*/
191193

192194
/* LCD Color Settings */
193195
/* LCD color depth in bits */
@@ -379,7 +381,7 @@
379381
*/
380382
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
381383
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
382-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
384+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 3
383385

384386
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
385387

examples/LVGL/v8/Porting/ESP_Panel_Board_Supported.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
* - BOARD_ESP32_S3_BOX_LITE (ESP32-S3-Box-Lite): https://github.com/espressif/esp-box/tree/master
2727
* - BOARD_ESP32_S3_EYE (ESP32-S3-EYE): https://github.com/espressif/esp-who/blob/master/docs/en/get-started/ESP32-S3-EYE_Getting_Started_Guide.md
2828
* - BOARD_ESP32_S3_KORVO_2 (ESP32-S3-Korvo-2): https://docs.espressif.com/projects/esp-adf/en/latest/design-guide/dev-boards/user-guide-esp32-s3-korvo-2.html
29-
* - BOARD_ESP32_S3_LCD_EV_BOARD (ESP32-S3-LCD-EV-Board): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
29+
* - BOARD_ESP32_S3_LCD_EV_BOARD (ESP32-S3-LCD-EV-Board(v1.1-v1.4)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
3030
* - BOARD_ESP32_S3_LCD_EV_BOARD_V1_5 (ESP32-S3-LCD-EV-Board(v1.5)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html
31-
* - BOARD_ESP32_S3_LCD_EV_BOARD_2 (ESP32-S3-LCD-EV-Board-2)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
31+
* - BOARD_ESP32_S3_LCD_EV_BOARD_2 (ESP32-S3-LCD-EV-Board-2(v1.1-v1.4))): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
3232
* - BOARD_ESP32_S3_LCD_EV_BOARD_2_V1_5 (ESP32-S3-LCD-EV-Board-2(v1.5)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html
3333
* - BOARD_ESP32_S3_USB_OTG (ESP32-S3-USB-OTG): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-usb-otg/index.html
3434
*
@@ -56,9 +56,9 @@
5656
/*
5757
* M5Stack (https://m5stack.com/):
5858
*
59-
* - BOARD_M5STACK_M5CORE2 (M5STACK_M5CORE2): https://docs.m5stack.com/zh_CN/core/core2
60-
* - BOARD_M5STACK_M5DIAL (M5STACK_M5DIAL): https://docs.m5stack.com/zh_CN/core/M5Dial
61-
* - BOARD_M5STACK_M5CORES3 (M5STACK_M5CORES3): https://docs.m5stack.com/zh_CN/core/CoreS3
59+
* - BOARD_M5STACK_M5CORE2 (M5STACK_M5CORE2): https://docs.m5stack.com/en/core/core2
60+
* - BOARD_M5STACK_M5DIAL (M5STACK_M5DIAL): https://docs.m5stack.com/en/core/M5Dial
61+
* - BOARD_M5STACK_M5CORES3 (M5STACK_M5CORES3): https://docs.m5stack.com/en/core/CoreS3
6262
*/
6363
// #define BOARD_M5STACK_M5CORE2
6464
// #define BOARD_M5STACK_M5DIAL
@@ -102,6 +102,6 @@
102102
*/
103103
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
104104
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 5
105-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
105+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
106106

107107
#endif

examples/LVGL/v8/Rotation/ESP_Panel_Board_Custom.h

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -176,18 +176,20 @@
176176
* 2. Formater: ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(delay_ms, command, { data0, data1, ... }) and
177177
* ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(delay_ms, command)
178178
*/
179-
// #define ESP_PANEL_LCD_VENDOR_INIT_CMD() \
180-
// { \
181-
// {0xFF, (uint8_t []){0x77, 0x01, 0x00, 0x00, 0x10}, 5, 0}, \
182-
// {0xC0, (uint8_t []){0x3B, 0x00}, 2, 0}, \
183-
// {0xC1, (uint8_t []){0x0D, 0x02}, 2, 0}, \
184-
// {0x29, (uint8_t []){0x00}, 0, 120}, \
185-
// or \
186-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xFF, {0x77, 0x01, 0x00, 0x00, 0x10}), \
187-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC0, {0x3B, 0x00}), \
188-
// ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC1, {0x0D, 0x02}), \
189-
// ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(120, 0x29), \
190-
// }
179+
/*
180+
#define ESP_PANEL_LCD_VENDOR_INIT_CMD() \
181+
{ \
182+
{0xFF, (uint8_t []){0x77, 0x01, 0x00, 0x00, 0x10}, 5, 0}, \
183+
{0xC0, (uint8_t []){0x3B, 0x00}, 2, 0}, \
184+
{0xC1, (uint8_t []){0x0D, 0x02}, 2, 0}, \
185+
{0x29, (uint8_t []){0x00}, 0, 120}, \
186+
or \
187+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xFF, {0x77, 0x01, 0x00, 0x00, 0x10}), \
188+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC0, {0x3B, 0x00}), \
189+
ESP_PANEL_LCD_CMD_WITH_8BIT_PARAM(0, 0xC1, {0x0D, 0x02}), \
190+
ESP_PANEL_LCD_CMD_WITH_NONE_PARAM(120, 0x29), \
191+
}
192+
*/
191193

192194
/* LCD Color Settings */
193195
/* LCD color depth in bits */
@@ -379,7 +381,7 @@
379381
*/
380382
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
381383
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 2
382-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 2
384+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 3
383385

384386
#endif /* ESP_PANEL_USE_CUSTOM_BOARD */
385387

examples/LVGL/v8/Rotation/ESP_Panel_Board_Supported.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
* - BOARD_ESP32_S3_BOX_LITE (ESP32-S3-Box-Lite): https://github.com/espressif/esp-box/tree/master
2727
* - BOARD_ESP32_S3_EYE (ESP32-S3-EYE): https://github.com/espressif/esp-who/blob/master/docs/en/get-started/ESP32-S3-EYE_Getting_Started_Guide.md
2828
* - BOARD_ESP32_S3_KORVO_2 (ESP32-S3-Korvo-2): https://docs.espressif.com/projects/esp-adf/en/latest/design-guide/dev-boards/user-guide-esp32-s3-korvo-2.html
29-
* - BOARD_ESP32_S3_LCD_EV_BOARD (ESP32-S3-LCD-EV-Board): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
29+
* - BOARD_ESP32_S3_LCD_EV_BOARD (ESP32-S3-LCD-EV-Board(v1.1-v1.4)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
3030
* - BOARD_ESP32_S3_LCD_EV_BOARD_V1_5 (ESP32-S3-LCD-EV-Board(v1.5)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html
31-
* - BOARD_ESP32_S3_LCD_EV_BOARD_2 (ESP32-S3-LCD-EV-Board-2)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
31+
* - BOARD_ESP32_S3_LCD_EV_BOARD_2 (ESP32-S3-LCD-EV-Board-2(v1.1-v1.4))): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide_v1.4.html
3232
* - BOARD_ESP32_S3_LCD_EV_BOARD_2_V1_5 (ESP32-S3-LCD-EV-Board-2(v1.5)): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html
3333
* - BOARD_ESP32_S3_USB_OTG (ESP32-S3-USB-OTG): https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-usb-otg/index.html
3434
*
@@ -56,9 +56,9 @@
5656
/*
5757
* M5Stack (https://m5stack.com/):
5858
*
59-
* - BOARD_M5STACK_M5CORE2 (M5STACK_M5CORE2): https://docs.m5stack.com/zh_CN/core/core2
60-
* - BOARD_M5STACK_M5DIAL (M5STACK_M5DIAL): https://docs.m5stack.com/zh_CN/core/M5Dial
61-
* - BOARD_M5STACK_M5CORES3 (M5STACK_M5CORES3): https://docs.m5stack.com/zh_CN/core/CoreS3
59+
* - BOARD_M5STACK_M5CORE2 (M5STACK_M5CORE2): https://docs.m5stack.com/en/core/core2
60+
* - BOARD_M5STACK_M5DIAL (M5STACK_M5DIAL): https://docs.m5stack.com/en/core/M5Dial
61+
* - BOARD_M5STACK_M5CORES3 (M5STACK_M5CORES3): https://docs.m5stack.com/en/core/CoreS3
6262
*/
6363
// #define BOARD_M5STACK_M5CORE2
6464
// #define BOARD_M5STACK_M5DIAL
@@ -102,6 +102,6 @@
102102
*/
103103
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
104104
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 5
105-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
105+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 1
106106

107107
#endif

0 commit comments

Comments
 (0)