I'm working on a Teensy4 USB MIDI device, and I would to disable the SEREMU USB interface, but I'm not sure what's the best way to do this?
I've tried commenting out #define SEREMU_INTERFACE in the usb_desc.h file, but that will cause lots of errors like:
So any ideas on what's the best way to do this? There's been a couple of forum threads here about the same subject, but with no solution.
TIA
I've tried commenting out #define SEREMU_INTERFACE in the usb_desc.h file, but that will cause lots of errors like:
Code:
C:\arduino-1.8.19\hardware\teensy\avr\cores\teensy4\Print.cpp:95:50: error: 'Serial' was not declared in this scope; did you mean 'Serial7'?
95 | if (file >= 0 && file <= 2) file = (int)&Serial;
| ^~~~~~
| Serial7
So any ideas on what's the best way to do this? There's been a couple of forum threads here about the same subject, but with no solution.
TIA