lib/mixer_module: remove unused param MOT_SLEW_MAX

This commit is contained in:
Igor Mišić
2024-10-07 15:52:47 +02:00
committed by Beat Küng
parent dbba9adb14
commit b9942ad7e0
2 changed files with 0 additions and 17 deletions
-1
View File
@@ -295,7 +295,6 @@ private:
DEFINE_PARAMETERS(
(ParamInt<px4::params::MC_AIRMODE>) _param_mc_airmode, ///< multicopter air-mode
(ParamFloat<px4::params::MOT_SLEW_MAX>) _param_mot_slew_max,
(ParamFloat<px4::params::THR_MDL_FAC>) _param_thr_mdl_fac ///< thrust to motor control signal modelling factor
)
};
-16
View File
@@ -38,22 +38,6 @@
*
*/
/**
* Minimum motor rise time (slew rate limit).
*
* Minimum time allowed for the motor input signal to pass through
* a range of 1000 PWM units. A value x means that the motor signal
* can only go from 1000 to 2000 PWM in minimum x seconds.
*
* Zero means that slew rate limiting is disabled.
*
* @min 0.0
* @unit s/(1000*PWM)
* @group PWM Outputs
*/
PARAM_DEFINE_FLOAT(MOT_SLEW_MAX, 0.0f);
/**
* Thrust to motor control signal model parameter
*