From 6eca767db00f6f6a0efdeb5a13d598229a7c9c92 Mon Sep 17 00:00:00 2001 From: Leonard Hall Date: Mon, 30 Nov 2015 11:21:40 +0900 Subject: [PATCH] Copter: reduce autotune min D param default to 0.001 --- ArduCopter/Parameters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArduCopter/Parameters.cpp b/ArduCopter/Parameters.cpp index 6106326fe1..719b9bd6a1 100644 --- a/ArduCopter/Parameters.cpp +++ b/ArduCopter/Parameters.cpp @@ -1111,7 +1111,7 @@ const AP_Param::Info Copter::var_info[] = { // @Description: Defines the minimum D gain // @Range: 0.001 0.006 // @User: Standard - GSCALAR(autotune_min_d, "AUTOTUNE_MIN_D", 0.004f), + GSCALAR(autotune_min_d, "AUTOTUNE_MIN_D", 0.001f), AP_VAREND };