The Virus TI2 desktop made me sell all my synths

no, as I said, this is raw usb.
as I said, the TI starts up as a ‘vendor specific’ USB Device, so you have to talk to it as such, once you send these bytes… then it switches to be a usb midi device.

I can do better, I can point you to the axoloti code I wrote to do this :slight_smile:

basically, its this :

   static uint8_t seq[] = { 0x4e, 0x73, 0x52, 0x01 }; 
   USBH_BulkSendData(phost, seq, sizeof(seq), MIDI_Handle->OutPipe,false);
5 Likes