diff --git a/plugins/examples/sysex/src/lib.rs b/plugins/examples/sysex/src/lib.rs index 975ca2fa..3884ff30 100644 --- a/plugins/examples/sysex/src/lib.rs +++ b/plugins/examples/sysex/src/lib.rs @@ -56,6 +56,10 @@ impl Plugin for SysEx { const SAMPLE_ACCURATE_AUTOMATION: bool = true; + // The plugin needs to be have a note port to be able to send SysEx + const MIDI_INPUT: MidiConfig = MidiConfig::Basic; + const MIDI_OUTPUT: MidiConfig = MidiConfig::Basic; + type SysExMessage = CoolSysExMessage; type BackgroundTask = ();