You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The definition of the VoiceAssistant::micro_wake_word_ private property is properly guarded using #ifdef USE_MICRO_WAKE_WORD (which the micro_wake_word components sets).
However, in the implementation there are multiple places where this->micro_wake_word_ is unguarded (one, two), which causes errors at compile time if the config does not define micro_wake_word.
The text was updated successfully, but these errors were encountered:
The definition of the
VoiceAssistant::micro_wake_word_
private property is properly guarded using#ifdef USE_MICRO_WAKE_WORD
(which themicro_wake_word
components sets).However, in the implementation there are multiple places where
this->micro_wake_word_
is unguarded (one, two), which causes errors at compile time if the config does not definemicro_wake_word
.The text was updated successfully, but these errors were encountered: