Browse Source

Merge remote-tracking branch 'origin/v2' into v2

# Conflicts:
#	plugin.json
tags/v2.1.0
hemmer 3 years ago
parent
commit
4ee3422c38
2 changed files with 3 additions and 0 deletions
  1. +2
    -0
      src/DualAtenuverter.cpp
  2. +1
    -0
      src/SlewLimiter.cpp

+ 2
- 0
src/DualAtenuverter.cpp View File

@@ -30,6 +30,8 @@ struct DualAtenuverter : Module {
configParam(OFFSET1_PARAM, -10.0, 10.0, 0.0, "Ch 1 offset", " V");
configParam(ATEN2_PARAM, -1.0, 1.0, 0.0, "Ch 2 gain");
configParam(OFFSET2_PARAM, -10.0, 10.0, 0.0, "Ch 2 offset", " V");
configBypass(IN1_INPUT, OUT1_OUTPUT);
configBypass(IN2_INPUT, OUT2_OUTPUT);
}

void process(const ProcessArgs& args) override {


+ 1
- 0
src/SlewLimiter.cpp View File

@@ -27,6 +27,7 @@ struct SlewLimiter : Module {
configParam(SHAPE_PARAM, 0.0, 1.0, 0.0, "Shape");
configParam(RISE_PARAM, 0.0, 1.0, 0.0, "Rise time");
configParam(FALL_PARAM, 0.0, 1.0, 0.0, "Fall time");
configBypass(IN_INPUT, OUT_OUTPUT);
}

void process(const ProcessArgs& args) override {


Loading…
Cancel
Save