From 9730f9ee16ba645c157d3fdf0a02784ac4f99b2d Mon Sep 17 00:00:00 2001 From: Ivan Efimov Date: Mon, 15 Jul 2024 09:55:47 -0500 Subject: [PATCH] rename fix: smoothStepUpTransition (#13768) smoothStepUpTransition rename fix --- src/main/common/maths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/common/maths.h b/src/main/common/maths.h index bf6b7039dda..9e60099339f 100644 --- a/src/main/common/maths.h +++ b/src/main/common/maths.h @@ -156,7 +156,7 @@ int16_t qPercent(fix12_t q); int16_t qMultiply(fix12_t q, int16_t input); fix12_t qConstruct(int16_t num, int16_t den); -float smoothStepDownTransition(const float x, const float center, const float width); +float smoothStepUpTransition(const float x, const float center, const float width); static inline int constrain(int amt, int low, int high) {