brett-lynnes
brett-lynnes
adding this line in PreviewAlexaClient seems to get it to work (after forcing it to re-send capabilities?) `auto dnd = manufactory->get();`
[W](main-thread) 14:51:02.7206 RSBS createAnimation: [blinkCycle|min 0|max 1|500000000] [W](main-thread) 14:51:03.7242 RSBS createAnimation: [blinkCycle|min 0|max 1|500000000] 2022-04-05 21:51:04.059 [ 1c] 9 KeywordObserver:computeStartOfSpeechTimestamp:timeSinceStartOfWW=720 [I](140005901055744) 14:51:04.0598 2022-04-05 21:51:04.059 [ 6] I AudioInputProcessor:Create audio attachment...
found this which does a better job of explaining the problem: https://www.dr-lex.be/info-stuff/volumecontrols.html
ah yes, sorry about the formatting (our codebases don't match well at all, and i auto-formatted portions of GGK accidentally a long time ago). i will submit another request later...
I was able to fix this on our devices by replacing line 224 of SpeakerManager.cpp ``` if (!executeInitializeSpeakerSettings(type)) { ACSDK_ERROR(LX("executeInitializeSpeakerSettings failed")); } ``` with this line ``` updateChannelSettings(type); ``` which...
i also had to change the call to executeInitializeSpeakerSettings(...) in updateChannelSettings(...) to executeSetSpeakerSettings(...) since the "settings" in Initialize was not formed correctly at that point