From cb6b1b9d814625276b7dde752d3ba6f34ad5149d Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 6 Jan 2026 03:55:31 -0500 Subject: [PATCH] VCO: Increase maximum frequency to around 21,000 Hz. --- src/VCO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VCO.cpp b/src/VCO.cpp index d858967..51811fa 100644 --- a/src/VCO.cpp +++ b/src/VCO.cpp @@ -667,7 +667,7 @@ struct VCO : Module { config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); configSwitch(LINEAR_PARAM, 0.f, 1.f, 0.f, "FM mode", {"1V/octave", "Linear"}); configSwitch(SYNC_PARAM, 0.f, 1.f, 1.f, "Sync mode", {"Soft", "Hard"}); - configParam(FREQ_PARAM, -75.f, 75.f, 0.f, "Frequency", " Hz", dsp::FREQ_SEMITONE, dsp::FREQ_C4); + configParam(FREQ_PARAM, -76.f, 76.f, 0.f, "Frequency", " Hz", dsp::FREQ_SEMITONE, dsp::FREQ_C4); configParam(FM_PARAM, -1.f, 1.f, 0.f, "Frequency modulation", "%", 0.f, 100.f); getParamQuantity(FM_PARAM)->randomizeEnabled = false; configParam(PW_PARAM, 0.01f, 0.99f, 0.5f, "Pulse width", "%", 0.f, 100.f);