From 9060aff46c3909fa992e4293c07f925f05550b51 Mon Sep 17 00:00:00 2001 From: rusefi Date: Wed, 21 Oct 2020 22:13:18 -0400 Subject: [PATCH] code style --- firmware/controllers/actuators/gppwm/gppwm.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;