mirror of https://github.com/ArduPilot/ardupilot
Plane: Log D gain limit cycle gain scaler
Used by roll and pitch loops in APM_Control
This commit is contained in:
parent
0cf70fe961
commit
585a6a6967
|
@ -386,6 +386,7 @@ const struct LogStructure Plane::log_structure[] = {
|
|||
// @Field: I: integral part of PID
|
||||
// @Field: D: derivative part of PID
|
||||
// @Field: FF: controller feed-forward portion of response
|
||||
// @Field: Dmod: scaler applied to D gain to reduce limit cycling
|
||||
{ LOG_PIQR_MSG, sizeof(log_PID),
|
||||
"PIQR", PID_FMT, PID_LABELS, PID_UNITS, PID_MULTS },
|
||||
{ LOG_PIQP_MSG, sizeof(log_PID),
|
||||
|
@ -405,6 +406,7 @@ const struct LogStructure Plane::log_structure[] = {
|
|||
// @Field: I: integral part of PID
|
||||
// @Field: D: derivative part of PID
|
||||
// @Field: FF: controller feed-forward portion of response
|
||||
// @Field: Dmod: scaler applied to D gain to reduce limit cycling
|
||||
{ LOG_PIDG_MSG, sizeof(log_PID),
|
||||
"PIDG", PID_FMT, PID_LABELS, PID_UNITS, PID_MULTS },
|
||||
|
||||
|
|
Loading…
Reference in New Issue