Skip to content

Update of Readme

Latest
Compare
Choose a tag to compare
@wollewald wollewald released this 10 Apr 18:57
abd14d8

I added explanations to the blocking nature of the setCompareChannels() function and introduced the function setCompareChannels_nonblock().

Furthermore I changed the code for the delays when changing channels from

        delayAccToRate(rate);
        delayAccToRate(rate);

to

        for(int i=0; i<2; i++){ 
            delayAccToRate(rate);
        }    

because some people considered this to be copy/paste error.