2022-07-15 04:52:44 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from pytest_embedded import Dut
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.esp32
|
|
|
|
@pytest.mark.esp32s2
|
|
|
|
@pytest.mark.esp32s3
|
2022-09-13 03:35:13 +00:00
|
|
|
@pytest.mark.esp32c3
|
2022-12-05 08:01:34 +00:00
|
|
|
@pytest.mark.esp32c6
|
2023-02-02 06:46:44 +00:00
|
|
|
@pytest.mark.esp32h2
|
2022-09-13 03:35:13 +00:00
|
|
|
@pytest.mark.adc
|
2022-07-15 04:52:44 +00:00
|
|
|
@pytest.mark.parametrize('config', [
|
|
|
|
'iram_safe',
|
|
|
|
'release',
|
2023-02-28 03:22:01 +00:00
|
|
|
'pm_enable'
|
2022-07-15 04:52:44 +00:00
|
|
|
], indirect=True)
|
|
|
|
def test_adc(dut: Dut) -> None:
|
2023-03-27 09:42:23 +00:00
|
|
|
dut.run_all_single_board_cases(timeout=120)
|
2022-10-17 03:09:56 +00:00
|
|
|
|
|
|
|
|
2023-02-28 03:22:01 +00:00
|
|
|
# No PM test, as C2 doesn't support ADC continuous mode
|
2022-10-17 03:09:56 +00:00
|
|
|
@pytest.mark.esp32c2
|
|
|
|
@pytest.mark.adc
|
2022-12-20 13:11:17 +00:00
|
|
|
@pytest.mark.xtal_26mhz
|
2022-10-17 03:09:56 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'config, baud',
|
|
|
|
[
|
|
|
|
('esp32c2_xtal26m_iram_safe', '74880'),
|
|
|
|
('esp32c2_xtal26m_release', '74880'),
|
|
|
|
],
|
|
|
|
indirect=True,
|
|
|
|
)
|
|
|
|
def test_adc_esp32c2_xtal_26mhz(dut: Dut) -> None:
|
2023-03-27 09:42:23 +00:00
|
|
|
dut.run_all_single_board_cases(timeout=120)
|