re-enable riscv ulp gpio support and examples

Closes https://github.com/espressif/esp-idf/issues/8691
Closes https://github.com/espressif/esp-idf/issues/9094
This commit is contained in:
Marius Vikhammer
2022-05-26 11:30:31 +08:00
parent 9c4a12b11e
commit 6e79cc69f9
16 changed files with 62 additions and 58 deletions

View File

@@ -1,18 +1,24 @@
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import time
import pexpect
import pytest
from pytest_embedded import Dut
@pytest.mark.esp32s2
@pytest.mark.generic
@pytest.mark.esp32s3
@pytest.mark.deepsleep_temp_tag
def test_ulp_riscv_gpio(dut: Dut) -> None:
dut.expect_exact('Not a ULP-RISC-V wakeup, initializing it!')
dut.expect_exact('Entering in deep sleep')
# Give the chip time to enter deepsleep
time.sleep(1)
# Run two times to make sure device sleep
# and wake up properly
for i in range(0, 2):