Results 2 comments of Nick Carbone

It doesn't seem to have an effect. I have 5 delay channels and hooked them all up as you suggested. Inspecting the Transport._synchedSignals shows them connected. But no change to...

The last meaningful commit to syncSignal I think is here: [implement syncSignal](https://github.com/Tonejs/Tone.js/commit/ae2804fbc538b0e5cd2b75596b5de1dd7bba30a1#diff-4d3d60badd3649d824d8ac634cbb7401f201277c13ff430f948abf72516148c0) from: ``` ratio = signal.getValueAtTime(now) / this.bpm.getValueAtTime(now); ``` to: ``` const bpm = this.bpm.getValueAtTime(now); const computedFreq = 1...