@@ -5,5 +5,5 @@ components/ulp/test_apps/ulp_fsm:
- if: SOC_ULP_SUPPORTED == 1
components/ulp/test_apps/ulp_riscv:
- enable:
- - if: SOC_RISCV_COPROC_SUPPORTED == 1
+ disable:
+ - if: SOC_RISCV_COPROC_SUPPORTED != 1
@@ -107,8 +107,8 @@ examples/peripherals/rmt/ir_nec_transceiver:
reason: lack of runners
examples/peripherals/rmt/musical_buzzer:
- - if: SOC_RMT_SUPPORT_TX_LOOP_COUNT == 1
+ - if: SOC_RMT_SUPPORT_TX_LOOP_COUNT != 1
examples/peripherals/rmt/onewire_ds18b20:
disable:
@@ -1,5 +1,5 @@
-| Supported Targets | ESP32-C3 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
-| ----------------- | -------- | -------- | -------- | -------- |
+| Supported Targets | ESP32-C3 | ESP32-S2 | ESP32-S3 |
+| ----------------- | -------- | -------- | -------- |
# RMT Transmit Loop Count Example -- Musical Buzzer
@@ -8,7 +8,7 @@ from pytest_embedded import Dut
@pytest.mark.esp32s2
@pytest.mark.esp32s3
@pytest.mark.esp32c3
-@pytest.mark.esp32h2
+# @pytest.mark.esp32h2 TODO: uncomment this when remove --preview for h2
@pytest.mark.generic
def test_musical_buzzer_example(dut: Dut) -> None:
dut.expect_exact('example: Create RMT TX channel')