mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-16 08:37:38 +08:00
126 lines
4.9 KiB
C++
126 lines
4.9 KiB
C++
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2025 PX4 Development Team. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include "AckermannActControl.hpp"
|
|
|
|
using namespace time_literals;
|
|
|
|
AckermannActControl::AckermannActControl(ModuleParams *parent) : ModuleParams(parent)
|
|
{
|
|
updateParams();
|
|
}
|
|
|
|
void AckermannActControl::updateParams()
|
|
{
|
|
ModuleParams::updateParams();
|
|
|
|
if (_param_ra_str_rate_limit.get() > FLT_EPSILON && _param_ra_max_str_ang.get() > FLT_EPSILON) {
|
|
_servo_setpoint.setSlewRate((M_DEG_TO_RAD_F * _param_ra_str_rate_limit.get()) / _param_ra_max_str_ang.get());
|
|
}
|
|
|
|
if (_param_ro_accel_limit.get() > FLT_EPSILON && _param_ro_max_thr_speed.get() > FLT_EPSILON) {
|
|
_motor_setpoint.setSlewRate(_param_ro_accel_limit.get() / _param_ro_max_thr_speed.get());
|
|
}
|
|
}
|
|
|
|
void AckermannActControl::updateActControl()
|
|
{
|
|
const hrt_abstime timestamp_prev = _timestamp;
|
|
_timestamp = hrt_absolute_time();
|
|
const float dt = math::constrain(_timestamp - timestamp_prev, 1_ms, 10_ms) * 1e-6f;
|
|
|
|
// Motor control
|
|
if (_surface_vehicle_throttle_setpoint_sub.updated()) {
|
|
surface_vehicle_throttle_setpoint_s surface_vehicle_throttle_setpoint{};
|
|
_surface_vehicle_throttle_setpoint_sub.copy(&surface_vehicle_throttle_setpoint);
|
|
_throttle_setpoint = surface_vehicle_throttle_setpoint.throttle_body_x;
|
|
}
|
|
|
|
if (PX4_ISFINITE(_throttle_setpoint)) {
|
|
actuator_motors_s actuator_motors_sub{};
|
|
_actuator_motors_sub.copy(&actuator_motors_sub);
|
|
actuator_motors_s actuator_motors{};
|
|
actuator_motors.reversible_flags = _param_r_rev.get();
|
|
actuator_motors.control[0] = RoverControl::throttleControl(_motor_setpoint,
|
|
_throttle_setpoint, actuator_motors_sub.control[0], _param_ro_accel_limit.get(),
|
|
_param_ro_decel_limit.get(), _param_ro_max_thr_speed.get(), dt);
|
|
actuator_motors.timestamp = _timestamp;
|
|
_actuator_motors_pub.publish(actuator_motors);
|
|
|
|
}
|
|
|
|
// Servo control
|
|
if (_surface_vehicle_steering_setpoint_sub.updated()) {
|
|
surface_vehicle_steering_setpoint_s surface_vehicle_steering_setpoint{};
|
|
_surface_vehicle_steering_setpoint_sub.copy(&surface_vehicle_steering_setpoint);
|
|
_steering_setpoint = surface_vehicle_steering_setpoint.normalized_steering_setpoint;
|
|
}
|
|
|
|
if (PX4_ISFINITE(_steering_setpoint)) {
|
|
actuator_servos_s actuator_servos_sub{};
|
|
_actuator_servos_sub.copy(&actuator_servos_sub);
|
|
|
|
if (_param_ra_str_rate_limit.get() > FLT_EPSILON
|
|
&& _param_ra_max_str_ang.get() > FLT_EPSILON) { // Apply slew rate if configured
|
|
if (fabsf(_servo_setpoint.getState() - actuator_servos_sub.control[0]) > fabsf(
|
|
_steering_setpoint -
|
|
actuator_servos_sub.control[0])) {
|
|
_servo_setpoint.setForcedValue(actuator_servos_sub.control[0]);
|
|
}
|
|
|
|
_servo_setpoint.update(_steering_setpoint, dt);
|
|
|
|
} else {
|
|
_servo_setpoint.setForcedValue(_steering_setpoint);
|
|
}
|
|
|
|
actuator_servos_s actuator_servos{};
|
|
actuator_servos.control[0] = _servo_setpoint.getState();
|
|
actuator_servos.timestamp = _timestamp;
|
|
_actuator_servos_pub.publish(actuator_servos);
|
|
}
|
|
}
|
|
|
|
void AckermannActControl::stopVehicle()
|
|
{
|
|
actuator_motors_s actuator_motors{};
|
|
actuator_motors.reversible_flags = _param_r_rev.get();
|
|
actuator_motors.control[0] = 0.f;
|
|
actuator_motors.timestamp = _timestamp;
|
|
_actuator_motors_pub.publish(actuator_motors);
|
|
actuator_servos_s actuator_servos{};
|
|
actuator_servos.control[0] = 0.f;
|
|
actuator_servos.timestamp = _timestamp;
|
|
_actuator_servos_pub.publish(actuator_servos);
|
|
}
|