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

Don't work when MIDI Device re-plug #16

Open
oujianshen opened this issue Apr 13, 2024 · 4 comments
Open

Don't work when MIDI Device re-plug #16

oujianshen opened this issue Apr 13, 2024 · 4 comments

Comments

@oujianshen
Copy link

This is a great project, I can run it and all the functions are normal

When the MIDI Device is reinserted, it cannot be automatically recognized and needs to be restarted to function properly again
I see that the new device is defined in the function in usbhelp.hpp as void _cliend_event_callback (const usbhost_cliend_event_msg_t * event_msg, void * arg)
I guess this function was not called during the second insertion But my ability is limited and I can't change this code well Who can help fix this issue of reinsertion and rediscovery?
Thank you very much

@fastfourier666
Copy link

I made a hackjob fix here

The original does not do any cleanup when the device is unplugged - either in the sketch or the ESP USB Host library. I added a callback so usbhelp.hpp can call a function in the main sketch when the device is "gone".

I'm sure it is pretty janky, would love to hear some improvements. I know next to nothing about USB. Cheers.

@qa2080639
Copy link

~~ I spent a whole day looking for this problem and finally found the reason.

use usb_host_interface_release,usb_host_device_close can fix it
example code usbhhelp.hpp

case USB_HOST_CLIENT_EVENT_DEV_GONE:
    ESP_LOGI("", "Device Gone handle: %x", event_msg->dev_gone.dev_hdl);
    err = usb_host_interface_release(Client_Handle, event_msg->dev_gone.dev_hdl, 0);
    if (err != ESP_OK)
      ESP_LOGI("", "usb_host_interface_release: %x", err);
    err = usb_host_device_close(Client_Handle, event_msg->dev_gone.dev_hdl);
    if (err != ESP_OK)
      ESP_LOGI("", "usb_host_device_close: %x", err);
    break;

@01GOD
Copy link

01GOD commented Aug 20, 2024

case USB_HOST_CLIENT_EVENT_DEV_GONE:
ESP_LOGI("", "Device Gone handle: %x", event_msg->dev_gone.dev_hdl);
err = usb_host_interface_release(Client_Handle, event_msg->dev_gone.dev_hdl, 0);
if (err != ESP_OK)
ESP_LOGI("", "usb_host_interface_release: %x", err);
err = usb_host_device_close(Client_Handle, event_msg->dev_gone.dev_hdl);
if (err != ESP_OK)
ESP_LOGI("", "usb_host_device_close: %x", err);
break;

Can explain how? I tried it and I know of a skilled embedded engineer that also tried it.

When I flashed an ESP32-S3 dev kit clone with that in verbose mode, it simply flashes it and the transmit LED turns on, but no serial monitor messages sadly.

Recommended solutions? Thanks in advance!

@EParisot
Copy link

@fastfourier666 You did a great job thank you for sharing !

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

5 participants