Merge branch 'fix/remove_c5_bypass_check' into 'master'

fix(esp32c5): Remove esp32c5 from bypass check test target list

See merge request espressif/esp-idf!43955
This commit is contained in:
C.S.M
2025-12-12 11:06:27 +08:00
2 changed files with 1 additions and 2 deletions

View File

@@ -12,7 +12,6 @@
bypass_check_test_targets:
- esp32h21
- esp32h4
- esp32c5
- esp32s31
#

View File

@@ -8,7 +8,7 @@ from pytest_embedded_idf.utils import idf_parametrize
@pytest.mark.generic
@idf_parametrize('target', ['esp32c6', 'esp32p4'], indirect=['target'])
@idf_parametrize('target', ['esp32c6', 'esp32p4', 'esp32c5'], indirect=['target'])
def test_lp_core_pcnt(dut: Dut) -> None:
res = dut.expect(r'ULP will wake up processor after every (\d+) pulses')
wakeup_limit = res.group(1).decode('utf-8')