I’m storing audio in an ftable in my UDO. I want to have a “clear” button that will zero it out if needed.
I have an approach that works, but I don’t really like it. Basically, I’ve created another ftable of the same size and use tablecopy:
tablecopy idelay_buf, idelay_clr
I don’t like it because the idelay_clr table is also big and tablecopy itself seems slow.
Is there a way to reinitialize the ftable instead?
Thank you!