-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MIDI out sending double clocks when unit itself is receiving MIDI clocks #164
Comments
I think this is something we should handle, and it should be a fairly quick change. |
After a closer look, the reason we're seeing this is because the I think we have two options with different downsides: 1. Disable MIDI thru 2. Conditionally handle MIDI output The question is what is currently the expected behaviour. The way the firmware is written, it feels like the MIDI thru functionality is unexpected and unwanted. |
MIDI passthrough is actually quite handy, as it allows the DUO to be used as a MIDI interface. Having the MIDI Thru mode configurable over Sysex might be a nice future upgrade, but for now there is a third option to solve double clocks that might be more pragmatic: 3. Don't output own MIDI realtime messages when receiving MIDI clock |
@DavidMenting Yeah, that was what I meant as option 2. But, then we need to decide if we still want to output |
A receiving DUO synced to a sending DUO which itself is receiving MIDI clock will put out double MIDI clocks: the ones it's receiving are passed on to the output and the ones it generates are also sent out of the output. This probably also applies to other manufacturers' devices.
The quick workaround is to connect the second DUO with a sync cable
The text was updated successfully, but these errors were encountered: