I want to change the parameters of the audio playback state layout.
Is there any difference in behavior other than the CRC check for the following two methods?
A) Set the TuningPacket with awe_packetProcess().
B)Set the coefficients directly with awe_ctrlSetValue().
If there are any differences that implementers need to follow, please let me know.
For example, different timing when parameters are applied, etc.
Thanks Naomichi
3:32pm
Hi Naomichi-san,
These processes can be considered equivalent. Generally speaking, customers use the tuning interface during development, then shut this off to use the control interface on the deployed product. In both cases, the commands are queued onto the lower-priority thread to prevent any interruption of audio processing. Depending on the CPU load and amount of commands awaiting deferred processing, the amount of time that passes between a command being issued and it actually taking effect can vary.
Thanks,
Gary
1:30am
Thank you Gary
I understood very well.
I will incorporate awe_ctrlSetValue() into my design.
Thanks.