v1.6.8: Move partition CSV files into a folder

This commit is contained in:
Terrence
2025-06-04 12:11:41 +08:00
parent 16ec95f6d5
commit f41210577b
41 changed files with 53 additions and 44 deletions

View File

@@ -41,5 +41,5 @@ bool NoWakeWord::GetWakeWordOpus(std::vector<uint8_t>& opus) {
}
const std::string& NoWakeWord::GetLastDetectedWakeWord() const {
return ""; // No wake word detected
return last_detected_wake_word_;
}

View File

@@ -26,6 +26,7 @@ public:
private:
AudioCodec* codec_ = nullptr;
std::string last_detected_wake_word_;
};
#endif