mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-13 04:42:01 +03:00
fix(dsi): test apps manifest error
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
@@ -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()')
|
||||
|
||||
Reference in New Issue
Block a user