Remove CLK and CLK/N from MIDI-CV module

We have better timing sources, let's use them and leave this
legacy MIDI pulses silliness behind.

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-18 22:36:59 +00:00
parent 2745482670
commit ef2058acee
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
3 changed files with 163 additions and 2 deletions

View file

@ -545,7 +545,7 @@ namespace core {
extern Model* modelAudio2;
extern Model* modelAudio8;
extern Model* modelAudio16;
extern Model* modelMIDI_CV;
extern Model* modelMIDI_CV_Cardinal;
extern Model* modelMIDICC_CV;
extern Model* modelMIDI_Gate;
extern Model* modelMIDIMap;
@ -648,7 +648,7 @@ static void initStatic__Core()
p->addModel(rack::core::modelAudio2);
p->addModel(rack::core::modelAudio8);
p->addModel(rack::core::modelAudio16);
p->addModel(rack::core::modelMIDI_CV);
p->addModel(rack::core::modelMIDI_CV_Cardinal);
p->addModel(rack::core::modelMIDICC_CV);
p->addModel(rack::core::modelMIDI_Gate);
p->addModel(rack::core::modelMIDIMap);