-
Notifications
You must be signed in to change notification settings - Fork 258
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 Beat Clock 0xF8 being forwarded from MIDI In to Out #101
Comments
Clock signals 0xF8 are meant to pass but if your circuit is treating the received midi messages with the library before sending out again you have to filter them your self. Otherwise you will allways have cycles and typical passed signals would produce panic (fill up the buffer ending in unexpected behaviour). |
@designerfuzzi is correct, at the moment there is no "smart thru" that allows per-type filtering, only channel-based messages (to avoid sending messages to the wrong device). Such a feature was proposed in #40. |
It would be great at least to disable it via some #define directive. |
The serial-buffer is not send out by default. Its just a buffer where you decide when to read and process data from with your callbacks. Not difficult to handle once you read about in the wiki under Callbacks. In the loop: Finally you can unset the callbacks or /and stop midi or repeat the loop |
Hello, I've been using this library and I think it is forwarding midi beat clock message from midi in to midi out. As I'm using the same device in midi in / out I'm getting a kind of feedback loop.
Is there some way of turning this off?
Thank you
The text was updated successfully, but these errors were encountered: