Skip to content

Commit

Permalink
fw_att_control set default yaw rate max and update parameter descript…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
dagar authored and LorenzMeier committed May 13, 2018
1 parent a323339 commit e33da0a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/modules/fw_att_control/fw_att_control_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ PARAM_DEFINE_FLOAT(FW_PR_I, 0.02f);
* Maximum positive / up pitch rate.
*
* This limits the maximum pitch up angular rate the controller will output (in
* degrees per second). Setting a value of zero disables the limit.
* degrees per second).
*
* @unit deg/s
* @min 0.0
Expand All @@ -130,7 +130,7 @@ PARAM_DEFINE_FLOAT(FW_P_RMAX_POS, 60.0f);
* Maximum negative / down pitch rate.
*
* This limits the maximum pitch down up angular rate the controller will
* output (in degrees per second). Setting a value of zero disables the limit.
* output (in degrees per second).
*
* @unit deg/s
* @min 0.0
Expand Down Expand Up @@ -202,7 +202,7 @@ PARAM_DEFINE_FLOAT(FW_RR_IMAX, 0.2f);
* Maximum roll rate
*
* This limits the maximum roll rate the controller will output (in degrees per
* second). Setting a value of zero disables the limit.
* second).
*
* @unit deg/s
* @min 0.0
Expand Down Expand Up @@ -241,7 +241,7 @@ PARAM_DEFINE_FLOAT(FW_YR_P, 0.05f);
* @increment 0.5
* @group FW Attitude Control
*/
PARAM_DEFINE_FLOAT(FW_YR_I, 0.0f);
PARAM_DEFINE_FLOAT(FW_YR_I, 0.01f);

/**
* Yaw rate integrator limit
Expand All @@ -261,7 +261,7 @@ PARAM_DEFINE_FLOAT(FW_YR_IMAX, 0.2f);
* Maximum yaw rate
*
* This limits the maximum yaw rate the controller will output (in degrees per
* second). Setting a value of zero disables the limit.
* second).
*
* @unit deg/s
* @min 0.0
Expand All @@ -270,7 +270,7 @@ PARAM_DEFINE_FLOAT(FW_YR_IMAX, 0.2f);
* @increment 0.5
* @group FW Attitude Control
*/
PARAM_DEFINE_FLOAT(FW_Y_RMAX, 0.0f);
PARAM_DEFINE_FLOAT(FW_Y_RMAX, 50.0f);

/**
* Roll control to yaw control feedforward gain.
Expand Down Expand Up @@ -344,7 +344,7 @@ PARAM_DEFINE_FLOAT(FW_WR_IMAX, 1.0f);
* Maximum wheel steering rate
*
* This limits the maximum wheel steering rate the controller will output (in degrees per
* second). Setting a value of zero disables the limit.
* second).
*
* @unit deg/s
* @min 0.0
Expand All @@ -353,7 +353,7 @@ PARAM_DEFINE_FLOAT(FW_WR_IMAX, 1.0f);
* @increment 0.5
* @group FW Attitude Control
*/
PARAM_DEFINE_FLOAT(FW_W_RMAX, 0.0f);
PARAM_DEFINE_FLOAT(FW_W_RMAX, 30.0f);

/**
* Roll rate feed forward
Expand Down

0 comments on commit e33da0a

Please sign in to comment.