arduino_midi_library icon indicating copy to clipboard operation
arduino_midi_library copied to clipboard

USB CDC

Open DerSep99 opened this issue 9 months ago • 0 comments

Hey guys, I have an ESP32-S3 ZERO which however can only build up serial communication vie USB CDC. To activate it, i need to enable "USB CDC on Boot". This library unfortunately does not support this type.

Errors:

  1. serialMIDI.h:107:61: error: no matching function for call to 'midi::SerialMIDI<HardwareSerial>::SerialMIDI(USBCDC&)'

  2. serialMIDI.h:43:7: note: no known conversion for argument 1 from 'USBCDC' to 'const midi::SerialMIDI<HardwareSerial>&'

  3. serialMIDI.h:43:7: note: candidate: 'constexpr midi::SerialMIDI<HardwareSerial>::SerialMIDI(midi::SerialMIDI<HardwareSerial>&&)'

  4. serialMIDI.h:43:7: note: no known conversion for argument 1 from 'USBCDC' to 'midi::SerialMIDI<HardwareSerial>&&'

Is there any chance of getting it to work?

DerSep99 avatar Feb 28 '25 20:02 DerSep99