JosephTang

Results 4 comments of JosephTang

https://github.com/espressif/esp-adf/blob/fe8e8404f8ad7a8e2d92558344f8c6729cffa1f3/examples/speech_recognition/wwe/main/main.c#L379 @Zhengqinze05 该example中是可以通过按键来唤醒的,详见上面的提供的连接。

Hi @mjhewitt1 , if you don't want to make any change of the esp-adf library, you can check the `gest_now` flag when `AUDIO_REC_WAKEUP_START` triggered in `rec_engine_cb`, then invoke `audio_recorder_trigger_stop` to...

Hi @Whiteliondnd8 If you can not find configuration such as `CONFIG_SPIRAM_BOOT_INIT` within the menuconfig, you can just type `/` within menuconfig and than type the keywords you want to search....

@welkinchan ## 数据读取 - 如果是KORVO2的板子,有两路麦克风和一路回采信号,所以需要三个channel的数据,从[原理图](https://dl.espressif.com/dl/schematics/SCH_ESP32-S3-KORVO-2_V3_0_20210918.pdf)中可以看到,实际上这三个channel是接到了7210的三个输入上 - 目前的 [wwe](https://github.com/espressif/esp-adf/tree/master/examples/speech_recognition/wwe) 和 [dueros](https://github.com/espressif/esp-adf/tree/master/examples/dueros) 中都是使用的 32bit ,2 ch 的方式将这三个channel的数据读上来的,也就是7210将4个通道的16bit的数据,组合成了 2个通道,每个通道32bit。 - 所以i2s的配置应该是2ch,32bit。 - 结合7210的文档,将 i2s 读上来的 2ch,32bit 认为是 4ch,16 bit的数据之后,实际上 ch0 是回采信号,ch1 和 ch3...