Browse Source

Clean up port names on MIDI-CV and CV-MIDI.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
8859eac75c
2 changed files with 7 additions and 7 deletions
  1. +4
    -4
      src/core/CV_MIDI.cpp
  2. +3
    -3
      src/core/MIDI_CV.cpp

+ 4
- 4
src/core/CV_MIDI.cpp View File

@@ -48,7 +48,7 @@ struct CV_MIDI : Module {

CV_MIDI() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configInput(PITCH_INPUT, "V/oct");
configInput(PITCH_INPUT, "Pitch (1V/oct)");
configInput(GATE_INPUT, "Gate");
configInput(VEL_INPUT, "Velocity");
configInput(AFT_INPUT, "Aftertouch");
@@ -57,9 +57,9 @@ struct CV_MIDI : Module {
configInput(CLK_INPUT, "Clock");
configInput(VOL_INPUT, "Volume");
configInput(PAN_INPUT, "Pan");
configInput(START_INPUT, "Start");
configInput(STOP_INPUT, "Stop");
configInput(CONTINUE_INPUT, "Continue");
configInput(START_INPUT, "Start trigger");
configInput(STOP_INPUT, "Stop trigger");
configInput(CONTINUE_INPUT, "Continue trigger");
onReset();
}



+ 3
- 3
src/core/MIDI_CV.cpp View File

@@ -87,9 +87,9 @@ struct MIDI_CV : Module {
configOutput(RETRIGGER_OUTPUT, "Retrigger");
configOutput(CLOCK_OUTPUT, "Clock");
configOutput(CLOCK_DIV_OUTPUT, "Clock divider");
configOutput(START_OUTPUT, "Start");
configOutput(STOP_OUTPUT, "Stop");
configOutput(CONTINUE_OUTPUT, "Continue");
configOutput(START_OUTPUT, "Start trigger");
configOutput(STOP_OUTPUT, "Stop trigger");
configOutput(CONTINUE_OUTPUT, "Continue trigger");
heldNotes.reserve(128);
for (int c = 0; c < 16; c++) {
pwFilters[c].setTau(1 / 30.f);


Loading…
Cancel
Save