From 297f5ba2af85075e5dfb4e88cff288507b582b60 Mon Sep 17 00:00:00 2001 From: blckmn Date: Fri, 3 Feb 2017 14:51:25 +1100 Subject: [PATCH] Typo. Restriction should be if greater than 400. --- src/main/fc/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/fc/config.c b/src/main/fc/config.c index 9acb623d4..4b06396ad 100755 --- a/src/main/fc/config.c +++ b/src/main/fc/config.c @@ -941,7 +941,7 @@ void validateAndFixConfig(void) motorConfigMutable()->mincommand = 1000; } - if((motorConfig()->motorPwmProtocol == PWM_TYPE_STANDARD) && (motorConfig()->motorPwmRate > 900)) { + if((motorConfig()->motorPwmProtocol == PWM_TYPE_STANDARD) && (motorConfig()->motorPwmRate > 400)) { motorConfig()->motorPwmRate = 400; }