-
Notifications
You must be signed in to change notification settings - Fork 49
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
added a test for nrpn message #74
base: master
Are you sure you want to change the base?
Conversation
I think there are a few things to consider here. |
This is my first time dealing with MIDI in software so there's a lot of things I'm not familiar with yet. However, if there are MIDI implementations that can't deal with the shorter form, maybe there's no choice? For my specific use case I guess I can create a Also, I think you got the LSB controller wrong, you're using 0x38 where it should be decimal 38/ |
You are right about the value LSB being off. Thanks. I just did some testing with some other equipment (I dont have a Rev2) and monitored some midi logs, and it leads me to believe that I've "overinterpreted" the NRPN spec. |
expect(m.data[1], equals(0x63)); | ||
expect(m.data[2], equals(0x20)); | ||
|
||
expect(m.data[3], equals(0xb0)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With running status, these status bytes are omitted and should to be tested for.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feel free to update to match latest master
No description provided.