fix(dsi): test apps manifest error

This commit is contained in:
morris
2025-11-18 18:56:46 +08:00
parent 7a20c6535b
commit c7a4cec36e
6 changed files with 8 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ components/esp_lcd/test_apps/mipi_dsi_lcd:
depends_components:
- esp_lcd
disable:
- if: SOC_LCD_MIPI_DSI_SUPPORTED != 1
- if: SOC_MIPI_DSI_SUPPORTED != 1
disable_test:
- if: IDF_TARGET == "esp32p4"
temporary: true

View File

@@ -14,5 +14,6 @@ from pytest_embedded import Dut
],
indirect=True,
)
@pytest.mark.temp_skip_ci(targets=['esp32p4'], reason='no runner')
def test_dsi_lcd(dut: Dut) -> None:
dut.run_all_single_board_cases()

View File

@@ -45,7 +45,8 @@ typedef enum {
RESET_REASON_CORE_USB_JTAG = 0x16, // USB Serial/JTAG controller's JTAG resets the digital core
RESET_REASON_CORE_USB_UART = 0x17, // USB Serial/JTAG controller's UART resets the digital core
RESET_REASON_CPU_JTAG = 0x18, // Triggered when a reset command from JTAG is received
RESET_REASON_CPU_LOCKUP = 0x1A, // Triggered when the CPU enters lockup (exception inside the execption handler would cause this)
RESET_REASON_CPU_LOCKUP = 0x1A, // Triggered when the CPU enters lockup (exception inside the exception handler would cause this)
RESET_REASON_SYS_PSDET = 0x1B, // Power supply detect a glitch (>50ns)
} soc_reset_reason_t;

View File

@@ -177,7 +177,7 @@ examples/peripherals/lcd/i80_controller:
examples/peripherals/lcd/mipi_dsi:
disable:
- if: SOC_LCD_MIPI_DSI_SUPPORTED != 1
- if: SOC_MIPI_DSI_SUPPORTED != 1
depends_components:
- esp_lcd

View File

@@ -15,7 +15,7 @@ menu "Example Configuration"
choice
prompt "Select MIPI LCD model"
default EXAMPLE_LCD_EK79007_SUPPORT
default EXAMPLE_LCD_USE_EK79007
help
Select LCD controller model.

View File

@@ -6,5 +6,5 @@ from pytest_embedded import Dut
@pytest.mark.esp32p4
@pytest.mark.generic
def test_rgb_lcd_lvgl(dut: Dut) -> None:
dut.expect_exact('example: Install MIPI DSI LCD control panel')
def test_mipi_dsi_lcd_lvgl(dut: Dut) -> None:
dut.expect_exact('Calling app_main()')