esp-adf examples advanced_examples algorithm示例无法得到ES7210第三个麦克风的数据 (AUD-6110)
258 2025-02-22 22:41
Environment
- Audio development kit: ESP32-S3-Korvo-2
- Audio kit version (ESP32-S3-Korvo-2): v3
- [Required] Module or chip used: ESP32-S3-WROOM-1
- [Required] IDF version (run
git describe --tags
in $IDF_PATH folder to find it):
v5.3.1 - [Required] ADF version (run
git describe --tags
in $ADF_PATH folder to find it):
v2.7-51-g60054d26 - Build system: idf.py
- [Required] Running log: All logs from power-on to problem recurrence
- Compiler version (run
xtensa-esp32-elf-gcc --version
in your project folder to find it):
esp-13.2.0_20240530 - Operating system: Windows10
- (Windows only) Environment type: PowerShell
- Using an IDE?: Yes (vscode)
- Power supply: USB
Problem Description
打开algorithm调试模式后,获得的/sdcard/aec_in.wav双声道只有麦克风的声音(在其中一个声道),没有参考信号的声音(在其中另一个声道)。
Expected Behavior
双声道数据是为了提供给algorithm算法进行AEC,只有具备第三个麦克风的参考信号,才能够消除。
Actual Behavior
缺失了第三个麦克风的参考信号
Steps to Reproduce
- 打开调试模式
- 插入sdcard
- 上电等待音乐播放完,过程中可随意对麦克风吟诵
经过尝试,更改了如下代码
Code to Reproduce This Issue
algo_config.algo_mask = ALGORITHM_STREAM_USE_AEC; #define I2S_R_CHANNELS I2S_CHANNEL_FMT_MULTIPLE 自己添加了掩码, es7210_mic_select(ES7210_INPUT_MIC1 | ES7210_INPUT_MIC3); i2s_r_cfg.std_cfg.slot_cfg.slot_bit_width = 32; audio_element_set_music_info(element_algo, I2S_SAMPLE_RATE, 1, ALGORITHM_STREAM_DEFAULT_SAMPLE_BIT);
按照ES7210 TDM模式下16位4通道,转换成I2S32位2通道,自己修改了idf以及adf相关 I2S_CHANNEL_FMT_MULTIPLE 的部分,用掩码获取不到第三个麦克风的数据。
全部评论