MCUdude / SigmaDSP

A versatile Arduino library for interfacing with the ADAU1401, ADAU1701 and ADAU1702 audio DSPs
GNU Lesser General Public License v3.0
165 stars 33 forks source link

Control mono envelope peak? #10

Closed yentzee closed 4 years ago

yentzee commented 4 years ago

Hi, is there any way to control the mono envelope peak block? There isnt any function for ot I believe. Cheers, Jens

MCUdude commented 4 years ago

You can control whatever block you like, even though this library doesn't support the block directly.

Figure out how the block works in the SigmaStudio capture window, and use dsp.safeload_write(startMemoryAddress, data1, data2, ..., dataN);

safeload_write is template-based, so you can have as few or as many parameters as you want.

yentzee commented 4 years ago

Awesome, thanks for your help and the fast response 👍