computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 07e2f6128ef1d590346ad42bd4695e5d1e762c1a
parent c82c4ea046c700b26a6a05427afa0240fef5f310
Author: Adam M <[email protected]>
Date:   Sat,  3 Nov 2018 16:47:28 -0500

reversing sample and hold idea for debug

Diffstat:
Msrc/ComputerscareDebug.cpp | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/src/ComputerscareDebug.cpp b/src/ComputerscareDebug.cpp @@ -13,14 +13,12 @@ struct ComputerscareDebug : Module { PITCH_PARAM, MANUAL_TRIGGER, MANUAL_CLEAR_TRIGGER, - MANUAL_FORWARD_TRIGGER, NUM_PARAMS }; enum InputIds { VAL_INPUT, TRG_INPUT, CLR_INPUT, - FORWARD_INPUT, NUM_INPUTS }; enum OutputIds { @@ -41,11 +39,8 @@ struct ComputerscareDebug : Module { SchmittTrigger clockTrigger; SchmittTrigger clearTrigger; - SchmittTrigger forwardTrigger; - SchmittTrigger manualClockTrigger; SchmittTrigger manualClearTrigger; - SchmittTrigger manualForwardTrigger; ComputerscareDebug() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {} void step() override;