From daf9a45efddb93f0884103b13f2b71026148088e Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 26 Jul 2016 15:35:15 +1000 Subject: [PATCH] AP_TECS: correct parameter metadata Correct incomplete Description of LAND_PDAMP Add DisplayName for LAND_PDAMP --- libraries/AP_TECS/AP_TECS.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/AP_TECS/AP_TECS.cpp b/libraries/AP_TECS/AP_TECS.cpp index b7dbb3c358..84283f627a 100644 --- a/libraries/AP_TECS/AP_TECS.cpp +++ b/libraries/AP_TECS/AP_TECS.cpp @@ -19,7 +19,7 @@ const AP_Param::GroupInfo AP_TECS::var_info[] = { // @Description: This is the best climb rate that the aircraft can achieve with the throttle set to THR_MAX and the airspeed set to the default value. For electric aircraft make sure this number can be achieved towards the end of flight when the battery voltage has reduced. The setting of this parameter can be checked by commanding a positive altitude change of 100m in loiter, RTL or guided mode. If the throttle required to climb is close to THR_MAX and the aircraft is maintaining airspeed, then this parameter is set correctly. If the airspeed starts to reduce, then the parameter is set to high, and if the throttle demand require to climb and maintain speed is noticeably less than THR_MAX, then either CLMB_MAX should be increased or THR_MAX reduced. // @Increment: 0.1 // @Range: 0.1 20.0 - // @User: User + // @User: Standard AP_GROUPINFO("CLMB_MAX", 0, AP_TECS, _maxClimbRate, 5.0f), // @Param: SINK_MIN @@ -27,7 +27,7 @@ const AP_Param::GroupInfo AP_TECS::var_info[] = { // @Description: This is the sink rate of the aircraft with the throttle set to THR_MIN and the same airspeed as used to measure CLMB_MAX. // @Increment: 0.1 // @Range: 0.1 10.0 - // @User: User + // @User: Standard AP_GROUPINFO("SINK_MIN", 1, AP_TECS, _minSinkRate, 2.0f), // @Param: TIME_CONST @@ -225,8 +225,8 @@ const AP_Param::GroupInfo AP_TECS::var_info[] = { AP_GROUPINFO("TKOFF_IGAIN", 25, AP_TECS, _integGain_takeoff, 0), // @Param: LAND_PDAMP - // @DisplayName: Pitch damping gain - // @Description: This is the damping gain for the pitch demand loop. Increase to add damping to correct for oscillations in speed and height. If set to 0 then TECS_PTCH_DAMP will be used instead. + // @DisplayName: Pitch damping gain when landing + // @Description: This is the damping gain for the pitch demand loop during landing. Increase to add damping to correct for oscillations in speed and height. If set to 0 then TECS_PTCH_DAMP will be used instead. // @Range: 0.1 1.0 // @Increment: 0.1 // @User: Advanced