diff --git a/firmware/controllers/actuators/gppwm/gppwm.cpp b/firmware/controllers/actuators/gppwm/gppwm.cpp index acd83386c7..8ed3b5a9cd 100644 --- a/firmware/controllers/actuators/gppwm/gppwm.cpp +++ b/firmware/controllers/actuators/gppwm/gppwm.cpp @@ -28,7 +28,9 @@ void initGpPwm(DECLARE_ENGINE_PARAMETER_SIGNATURE) { auto& cfg = CONFIG(gppwm)[i]; // If no pin, don't enable this channel. - if (cfg.pin == GPIO_UNASSIGNED) continue; + if (cfg.pin == GPIO_UNASSIGNED) { + continue; + } // Determine frequency and whether PWM is enabled float freq = cfg.pwmFrequency;