-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Roland PG-1000: Added internal layout and complete driver implementation #14127
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
base: master
Are you sure you want to change the base?
Conversation
felipesanches
commented
Sep 6, 2025

5b4f5aa
to
efbe742
Compare
It is possible I missed some detail, but your first commit seems to emulate all 4 midi ports correctly, based on the linked schematic and documentation. However, the MIDI_PORT declarations can be simplified a bit. Try |
It seems to me that using |
I've done the bulk of the work developing this driver and layout and it is now looking beautiful and working almost perfectly. The only one thing that still does not work are the MIDI ports (which is kind of essential for it to be useful, LOL) and I have no idea what's still missing to make it work. Not sure if I made some mistake in the MIDI description on the driver, or if the serial port support in the UPD78C10 core is not implemented correctly. I inspected a bit of it and it looks reasonable, though... I would appreciate if someone could take a look at it and give it the final touch to make it work, in case it is something simple. Otherwise, it would be wiser to simply merge it as is and then someday we'll end up figuring out how to fix it. But I personally feel that I have nothing else to add to it at this moment. Owners' manual explains that all messages received on its MIDI IN are replicated in its MIDI OUT and any parameter adjustments made on the sliders are also sent over MIDI OUT as sysex messages. So I tried The method of using |
I can't speak to the approach that uses separate Once that's set up, you could run your test, but log midi thru instead of midi out. If that works, then you at least know that the MIDI_PORT setup for midi in and thru, and your testing strategy, are sound. Edit: Also, consider initializing |
The LCD colors were originally picked from a photo and indeed the text was a bit washed out.
(MACHINE_NOT_WORKING due to incomplete MIDI implementation)
…lints on buttons and on slider knobs
… of directly on the knob
20fe1a1
to
8896838
Compare
Surely the more general solution would be to create a |
For now, I made it |
I've just fixed MIDI IN. Now every message received on MIDI IN is repeated to MIDI OUT, as the service manual describes as the expected normal behavior. |
8001e61
to
6c5f2c4
Compare
@cuavas, I believe this is now ready for your code-review. |