From b31bafdc4b32d8295100a022b42c99f1d8e8340d Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 7 Jun 2023 21:18:52 +0200 Subject: [PATCH] Add missing note ports to the SysEx example --- plugins/examples/sysex/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) 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 = ();