feat(ppa): add PPA driver support for ESP32P4

This commit is contained in:
Song Ruo Jing
2024-02-05 22:04:37 +08:00
parent 3f632df143
commit 1b1005a1d8
41 changed files with 2926 additions and 169 deletions

View File

@@ -0,0 +1,17 @@
# SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: CC0-1.0
import pytest
from pytest_embedded import Dut
@pytest.mark.esp32p4
@pytest.mark.generic
@pytest.mark.parametrize(
'config',
[
'release',
],
indirect=True,
)
def test_ppa(dut: Dut) -> None:
dut.run_all_single_board_cases()