Skip to content

Commit f73cf48

Browse files
RomanBapstJaeyoung-Lim
authored andcommitted
FixedWingPosControlL1: added target climb and sink rate parameters
Signed-off-by: RomanBapst <[email protected]>
1 parent 8d864f6 commit f73cf48

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/modules/fw_pos_control_l1/fw_pos_control_l1_params.c

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -950,3 +950,36 @@ PARAM_DEFINE_FLOAT(FW_T_TAS_R_TC, 0.2f);
950950
* @group FW TECS
951951
*/
952952
PARAM_DEFINE_FLOAT(FW_T_SEB_R_FF, 1.0f);
953+
954+
/**
955+
* Default target climbrate.
956+
*
957+
*
958+
* The default rate at which the vehicle will climb in autonomous modes to achieve altitude setpoints.
959+
* In manual modes this defines the maximum rate at which the altitude setpoint can be increased.
960+
*
961+
*
962+
* @unit m/s
963+
* @min 0.5
964+
* @max 15
965+
* @decimal 2
966+
* @increment 0.01
967+
* @group FW TECS
968+
*/
969+
PARAM_DEFINE_FLOAT(FW_T_CLIMB_R_SP, 3.0f);
970+
971+
/**
972+
* Default target sinkrate.
973+
*
974+
*
975+
* The default rate at which the vehicle will sink in autonomous modes to achieve altitude setpoints.
976+
* In manual modes this defines the maximum rate at which the altitude setpoint can be decreased.
977+
*
978+
* @unit m/s
979+
* @min 0.5
980+
* @max 15
981+
* @decimal 2
982+
* @increment 0.01
983+
* @group FW TECS
984+
*/
985+
PARAM_DEFINE_FLOAT(FW_T_SINK_R_SP, 2.0f);

0 commit comments

Comments
 (0)