Skip to content
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

POD HD Desktop Support #57

Open
pablooku opened this issue Sep 25, 2024 · 1 comment
Open

POD HD Desktop Support #57

pablooku opened this issue Sep 25, 2024 · 1 comment

Comments

@pablooku
Copy link

Hi,

Recently purchased a POD HD Desktop, the "black bean" one, and I tried to use the program with no luck.

So the main question is:

How can i Help?

I'm software developer, but never worked with Rust.
Tried to clone the mod-xt module as base code, but don't know how to continue.

I can provide you any device data you can need.

Thanks in advance!!

@arteme
Copy link
Owner

arteme commented Sep 25, 2024

Dear @pablooku ,

POD HD family is a whole different beast, I'm afraid. POD HD is not mentioned in the MIDI controls reference nor is there any mention of MIDI in the user manual, which makes me think that it is controlled in a different way over USB.

That in itself is not the biggest challenge, typically, it is still commands with parameters framed in a certain way. The bigger challenge is figuring out this protocol. There is "POD HD edit" app, if I remember correctly. One would have to connect the POD to a computer running "POD HD edit" and try tweaking controls one-by-one while recording USB traffic.

Wireshark is a great tool for protocol capture and analysis and it works with USB traffic in Linux, macOS and sometimes in Windows.

Once you figure out the basic control change messages, you'll need to figure out the buffer dumps. In early PODs MIDI CC indices have noting to do with the position of the same data within the dump. In PODxt, MIDI CC indices are offsets into the dump buffer - the data is laid out exactly how the CC indices go. With POD HD, you'd have to figure this out.

Some controls, like amp and cab change trigger a "get edit buffer" request and "edit buffer data" reply - that is because amps have their own presets, which kick in when the amp is selected and override some of the previously selected settings.

Whether this will all fit into the structure of pod-ui, I do not know, but I'm sure it is possible to hack it into a pod-hd-ui with enough time. All in all, this would be a long, but fun project, I think ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants