File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
src/modules/fw_pos_control_l1 Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -950,3 +950,36 @@ PARAM_DEFINE_FLOAT(FW_T_TAS_R_TC, 0.2f);
950
950
* @group FW TECS
951
951
*/
952
952
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 );
You can’t perform that action at this time.
0 commit comments