gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 4295c6b56720e02a23e89961ba2b29353ca729e1
parent 95cc77191969c85e260efbf099c4c8b107dc1d1c
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Tue, 22 Mar 2022 19:47:01 +0100

define quarter frame midi byte

Diffstat:
Msource/synthLib/midiTypes.h | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/source/synthLib/midiTypes.h b/source/synthLib/midiTypes.h @@ -17,17 +17,18 @@ namespace synthLib M_PITCHBEND = 0xe0, // single status bytes + M_STARTOFSYSEX = 0xf0, + M_QUARTERFRAME = 0xf1, M_SONGPOSITION = 0xf2, M_SONGSELECT = 0xf3, M_TUNEREQUEST = 0xf5, - M_SYSTEMRESET = 0xff, + M_ENDOFSYSEX = 0xf7, M_TIMINGCLOCK = 0xf8, M_START = 0xfa, M_CONTINUE = 0xfb, M_STOP = 0xfc, M_ACTIVESENSING = 0xfe, - M_STARTOFSYSEX = 0xf0, - M_ENDOFSYSEX = 0xf7, + M_SYSTEMRESET = 0xff, // send as data byte 1 for control changes M_LOCALOFF = 0x7a,