multinet wakeword (#927)

Co-authored-by: zk <982145@qq.com>
This commit is contained in:
ZhouKe
2025-07-18 01:18:40 +08:00
committed by GitHub
parent be46cf1731
commit 1aea59a472
6 changed files with 344 additions and 1 deletions

View File

@@ -230,6 +230,8 @@ if(CONFIG_USE_AFE_WAKE_WORD)
list(APPEND SOURCES "audio_processing/afe_wake_word.cc")
elseif(CONFIG_USE_ESP_WAKE_WORD)
list(APPEND SOURCES "audio_processing/esp_wake_word.cc")
elseif(CONFIG_USE_CUSTOM_WAKE_WORD)
list(APPEND SOURCES "audio_processing/custom_wake_word.cc")
else()
list(APPEND SOURCES "audio_processing/no_wake_word.cc")
endif()