T
Reaction score
0

Latest activity Postings About

    • T
      Yes, I have had no issues connecting multiple USB devices using USB hubs, but only if the hub only has USB ports. If it has other features like HDMI or SD card reader then I can't get it to work.
    • T
      tyzjames replied to the thread USB Host Library MIDI hanging.
      Yes, I managed to fix this. The issue is that the code is getting stuck in the while loop in the write_packed function. Here is my fix: I added a condition so the code can exit the loop Then I determined that the issue was due to the SysEx...
    • T
      tyzjames replied to the thread USB Host Library MIDI hanging.
      Just did more tests and unfortunately, the above solution does not work when sending SysEx messages from the USBHost. The case where tx2 >= tx_max && tx1 >= tx_max is not handled in the function above, which leads to an infinite loop. Hopefully...
    • T
      tyzjames replied to the thread USB Host Library MIDI hanging.
      After further troubleshooting, I have narrowed it down to this code being stuck in a loop in this function in midi.cpp, where tx2 == tx_max == 16, and hence it was not matching any of the conditions. void MIDIDeviceBase::write_packed(uint32_t...
    • T
      I'm testing a basic code sending MIDI via usbHost on a Teensy 4.1 (lets call this the controller). // Simple test of USB Host // // This example is in the public domain #include "USBHost_t36.h" USBHost myusb; USBHub hub1(myusb); USBHub...
  • Loading…
  • Loading…
Back
Top