diff --git a/components/esp-sr b/components/esp-sr index ffcd6953..394aae67 160000 --- a/components/esp-sr +++ b/components/esp-sr @@ -1 +1 @@ -Subproject commit ffcd69533f238e128300b64be4a9e886022c39ef +Subproject commit 394aae67b578cf45ed13dad9c2e0c428f5d599f0 diff --git a/examples/advanced_examples/algorithm/main/algorithm_examples.c b/examples/advanced_examples/algorithm/main/algorithm_examples.c index fc4f8a99..c83cc264 100644 --- a/examples/advanced_examples/algorithm/main/algorithm_examples.c +++ b/examples/advanced_examples/algorithm/main/algorithm_examples.c @@ -126,7 +126,7 @@ void app_main() audio_board_handle_t board_handle = audio_board_init(); audio_hal_ctrl_codec(board_handle->audio_hal, AUDIO_HAL_CODEC_MODE_BOTH, AUDIO_HAL_CTRL_START); - audio_hal_set_volume(board_handle->audio_hal, 60); + audio_hal_set_volume(board_handle->audio_hal, 80); #if CONFIG_ESP32_S3_KORVO2_V3_BOARD es7210_adc_set_gain(ES7210_INPUT_MIC3, GAIN_0DB); #endif /* CONFIG_ESP32_S3_KORVO2_V3_BOARD */ diff --git a/examples/advanced_examples/algorithm/sdkconfig.defaults.esp32s3 b/examples/advanced_examples/algorithm/sdkconfig.defaults.esp32s3 index 6efa0717..6dba9ff6 100644 --- a/examples/advanced_examples/algorithm/sdkconfig.defaults.esp32s3 +++ b/examples/advanced_examples/algorithm/sdkconfig.defaults.esp32s3 @@ -51,6 +51,8 @@ CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 CONFIG_MODEL_IN_FLASH=y CONFIG_USE_AFE=y CONFIG_AFE_INTERFACE_V1=y +CONFIG_USE_NSNET=y +CONFIG_SR_NSN_NSNET2=y CONFIG_USE_WAKENET=y CONFIG_SR_WN_WN9_HILEXIN=y CONFIG_USE_MULTINET=y diff --git a/examples/cli/pytest_cli.py b/examples/cli/pytest_cli.py index e03e45a9..7b89f9d2 100644 --- a/examples/cli/pytest_cli.py +++ b/examples/cli/pytest_cli.py @@ -10,6 +10,7 @@ ''' import os +import time import pytest from pytest_embedded import Dut @@ -17,6 +18,7 @@ @pytest.mark.esp32s2 @pytest.mark.esp32s3 @pytest.mark.ADF_EXAMPLE_GENERIC +@pytest.mark.flaky(reruns=1, reruns_delay=5) def test_cli(dut: Dut)-> None: dut.expect(r'ESP_AUDIO_CTRL', timeout=5) @@ -41,8 +43,10 @@ def test_cli(dut: Dut)-> None: dut.write('play https://audiofile.espressif.cn/103_44100_2_320138_188.mp3') dut.expect(r'ESP_AUDIO status is AEL_STATUS_STATE_RUNNING, 0, src:0, is_stopping:0', timeout=100) + time.sleep(2) dut.write('pause') dut.expect(r'esp_auido status:2,err:0') + time.sleep(2) dut.write('resume') dut.expect(r'esp_auido status:1,err:0')