mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-27 10:17:45 +08:00
mc atune: add multicopter attitude auto-tuner module
This commit is contained in:
@@ -45,6 +45,7 @@ set(msg_files
|
|||||||
airspeed.msg
|
airspeed.msg
|
||||||
airspeed_validated.msg
|
airspeed_validated.msg
|
||||||
airspeed_wind.msg
|
airspeed_wind.msg
|
||||||
|
autotune_attitude_control_status.msg
|
||||||
battery_status.msg
|
battery_status.msg
|
||||||
camera_capture.msg
|
camera_capture.msg
|
||||||
camera_status.msg
|
camera_status.msg
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
uint64 timestamp # time since system start (microseconds)
|
||||||
|
|
||||||
|
float32[5] coeff # coefficients of the identified discrete-time model
|
||||||
|
float32[5] coeff_var # coefficients' variance of the identified discrete-time model
|
||||||
|
float32 fitness # fitness of the parameter estimate
|
||||||
|
float32 innov
|
||||||
|
float32 dt_model
|
||||||
|
|
||||||
|
float32 kc
|
||||||
|
float32 ki
|
||||||
|
float32 kd
|
||||||
|
float32 kff
|
||||||
|
float32 att_p
|
||||||
|
|
||||||
|
float32[3] rate_sp
|
||||||
|
|
||||||
|
float32 u_filt
|
||||||
|
float32 y_filt
|
||||||
|
|
||||||
|
uint8 STATE_IDLE = 0
|
||||||
|
uint8 STATE_INIT = 1
|
||||||
|
uint8 STATE_ROLL = 2
|
||||||
|
uint8 STATE_ROLL_PAUSE = 3
|
||||||
|
uint8 STATE_PITCH = 4
|
||||||
|
uint8 STATE_PITCH_PAUSE = 5
|
||||||
|
uint8 STATE_YAW = 6
|
||||||
|
uint8 STATE_YAW_PAUSE = 7
|
||||||
|
uint8 STATE_VERIFICATION = 8
|
||||||
|
uint8 STATE_APPLY = 9
|
||||||
|
uint8 STATE_TEST = 10
|
||||||
|
uint8 STATE_COMPLETE = 11
|
||||||
|
uint8 STATE_FAIL = 12
|
||||||
|
uint8 STATE_WAIT_FOR_DISARM = 13
|
||||||
|
|
||||||
|
uint8 state
|
||||||
@@ -55,6 +55,7 @@ void LoggedTopics::add_default_topics()
|
|||||||
add_topic("actuator_controls_status_0", 300);
|
add_topic("actuator_controls_status_0", 300);
|
||||||
add_topic("airspeed", 1000);
|
add_topic("airspeed", 1000);
|
||||||
add_topic("airspeed_validated", 200);
|
add_topic("airspeed_validated", 200);
|
||||||
|
add_topic("autotune_attitude_control_status", 100);
|
||||||
add_topic("camera_capture");
|
add_topic("camera_capture");
|
||||||
add_topic("camera_trigger");
|
add_topic("camera_trigger");
|
||||||
add_topic("cellular_status", 200);
|
add_topic("cellular_status", 200);
|
||||||
|
|||||||
@@ -0,0 +1,48 @@
|
|||||||
|
############################################################################
|
||||||
|
#
|
||||||
|
# Copyright (c) 2020-2021 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.
|
||||||
|
#
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
px4_add_module(
|
||||||
|
MODULE mc_autotune_attitude_control
|
||||||
|
MAIN mc_autotune_attitude_control
|
||||||
|
COMPILE_FLAGS
|
||||||
|
${MAX_CUSTOM_OPT_LEVEL}
|
||||||
|
SRCS
|
||||||
|
mc_autotune_attitude_control.cpp
|
||||||
|
mc_autotune_attitude_control.hpp
|
||||||
|
DEPENDS
|
||||||
|
hysteresis
|
||||||
|
mathlib
|
||||||
|
px4_work_queue
|
||||||
|
SystemIdentification
|
||||||
|
PidDesign
|
||||||
|
)
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,206 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020-2021 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file mc_autotune_attitude_control.hpp
|
||||||
|
*
|
||||||
|
* @author Mathieu Bresciani <mathieu@auterion.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <drivers/drv_hrt.h>
|
||||||
|
#include <lib/perf/perf_counter.h>
|
||||||
|
#include <lib/pid_design/pid_design.hpp>
|
||||||
|
#include <lib/system_identification/system_identification.hpp>
|
||||||
|
#include <px4_platform_common/defines.h>
|
||||||
|
#include <px4_platform_common/module.h>
|
||||||
|
#include <px4_platform_common/module_params.h>
|
||||||
|
#include <px4_platform_common/posix.h>
|
||||||
|
#include <px4_platform_common/px4_work_queue/WorkItem.hpp>
|
||||||
|
#include <uORB/Publication.hpp>
|
||||||
|
#include <uORB/Subscription.hpp>
|
||||||
|
#include <uORB/SubscriptionCallback.hpp>
|
||||||
|
#include <uORB/topics/actuator_controls.h>
|
||||||
|
#include <uORB/topics/actuator_controls_status.h>
|
||||||
|
#include <uORB/topics/manual_control_setpoint.h>
|
||||||
|
#include <uORB/topics/parameter_update.h>
|
||||||
|
#include <uORB/topics/autotune_attitude_control_status.h>
|
||||||
|
#include <uORB/topics/vehicle_angular_velocity.h>
|
||||||
|
#include <uORB/topics/vehicle_status.h>
|
||||||
|
#include <mathlib/mathlib.h>
|
||||||
|
|
||||||
|
using namespace time_literals;
|
||||||
|
|
||||||
|
class McAutotuneAttitudeControl : public ModuleBase<McAutotuneAttitudeControl>, public ModuleParams,
|
||||||
|
public px4::WorkItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
McAutotuneAttitudeControl();
|
||||||
|
~McAutotuneAttitudeControl() override;
|
||||||
|
|
||||||
|
/** @see ModuleBase */
|
||||||
|
static int task_spawn(int argc, char *argv[]);
|
||||||
|
|
||||||
|
/** @see ModuleBase */
|
||||||
|
static int custom_command(int argc, char *argv[]);
|
||||||
|
|
||||||
|
/** @see ModuleBase */
|
||||||
|
static int print_usage(const char *reason = nullptr);
|
||||||
|
|
||||||
|
bool init();
|
||||||
|
|
||||||
|
/** @see ModuleBase::print_status() */
|
||||||
|
int print_status() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void Run() override;
|
||||||
|
|
||||||
|
void reset();
|
||||||
|
|
||||||
|
void checkFilters();
|
||||||
|
|
||||||
|
void updateStateMachine(hrt_abstime now);
|
||||||
|
bool registerActuatorControlsCallback();
|
||||||
|
void stopAutotune();
|
||||||
|
bool areAllSmallerThan(const matrix::Vector<float, 5> &vect, float threshold) const;
|
||||||
|
void copyGains(int index);
|
||||||
|
bool areGainsGood() const;
|
||||||
|
void saveGainsToParams();
|
||||||
|
void backupAndSaveGainsToParams();
|
||||||
|
void revertParamGains();
|
||||||
|
|
||||||
|
const matrix::Vector3f getIdentificationSignal();
|
||||||
|
|
||||||
|
uORB::SubscriptionCallbackWorkItem _actuator_controls_sub{this, ORB_ID(actuator_controls_0)};
|
||||||
|
uORB::SubscriptionCallbackWorkItem _parameter_update_sub{this, ORB_ID(parameter_update)};
|
||||||
|
|
||||||
|
uORB::Subscription _actuator_controls_status_sub{ORB_ID(actuator_controls_status_0)};
|
||||||
|
uORB::Subscription _manual_control_setpoint_sub{ORB_ID(manual_control_setpoint)};
|
||||||
|
uORB::Subscription _vehicle_angular_velocity_sub{ORB_ID(vehicle_angular_velocity)};
|
||||||
|
uORB::Subscription _vehicle_status_sub{ORB_ID(vehicle_status)};
|
||||||
|
|
||||||
|
uORB::PublicationData<autotune_attitude_control_status_s> _autotune_attitude_control_status_pub{ORB_ID(autotune_attitude_control_status)};
|
||||||
|
|
||||||
|
SystemIdentification _sys_id;
|
||||||
|
|
||||||
|
enum class state {
|
||||||
|
idle = autotune_attitude_control_status_s::STATE_IDLE,
|
||||||
|
init = autotune_attitude_control_status_s::STATE_INIT,
|
||||||
|
roll = autotune_attitude_control_status_s::STATE_ROLL,
|
||||||
|
roll_pause = autotune_attitude_control_status_s::STATE_ROLL_PAUSE,
|
||||||
|
pitch = autotune_attitude_control_status_s::STATE_PITCH,
|
||||||
|
pitch_pause = autotune_attitude_control_status_s::STATE_PITCH_PAUSE,
|
||||||
|
yaw = autotune_attitude_control_status_s::STATE_YAW,
|
||||||
|
yaw_pause = autotune_attitude_control_status_s::STATE_YAW_PAUSE,
|
||||||
|
apply = autotune_attitude_control_status_s::STATE_APPLY,
|
||||||
|
test = autotune_attitude_control_status_s::STATE_TEST,
|
||||||
|
verification = autotune_attitude_control_status_s::STATE_VERIFICATION,
|
||||||
|
complete = autotune_attitude_control_status_s::STATE_COMPLETE,
|
||||||
|
fail = autotune_attitude_control_status_s::STATE_FAIL,
|
||||||
|
wait_for_disarm = autotune_attitude_control_status_s::STATE_WAIT_FOR_DISARM
|
||||||
|
} _state{state::idle};
|
||||||
|
|
||||||
|
hrt_abstime _state_start_time{0};
|
||||||
|
uint8_t _steps_counter{0};
|
||||||
|
uint8_t _max_steps{5};
|
||||||
|
int8_t _signal_sign{0};
|
||||||
|
|
||||||
|
bool _armed{false};
|
||||||
|
|
||||||
|
matrix::Vector3f _kid{};
|
||||||
|
matrix::Vector3f _rate_k{};
|
||||||
|
matrix::Vector3f _rate_i{};
|
||||||
|
matrix::Vector3f _rate_d{};
|
||||||
|
|
||||||
|
float _attitude_p{0.f};
|
||||||
|
matrix::Vector3f _att_p{};
|
||||||
|
|
||||||
|
matrix::Vector3f _control_power{};
|
||||||
|
|
||||||
|
bool _gains_backup_available{false}; // true if a backup of the parameters has been done
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scale factor applied to the input data to have the same input/output range
|
||||||
|
* When input and output scales are a lot different, some elements of the covariance
|
||||||
|
* matrix will collapse much faster than other ones, creating an ill-conditionned matrix
|
||||||
|
*/
|
||||||
|
float _input_scale{1.f};
|
||||||
|
|
||||||
|
hrt_abstime _last_run{0};
|
||||||
|
hrt_abstime _last_publish{0};
|
||||||
|
hrt_abstime _last_model_update{0};
|
||||||
|
|
||||||
|
float _interval_sum{0.f};
|
||||||
|
float _interval_count{0.f};
|
||||||
|
float _sample_interval_avg{0.01f};
|
||||||
|
float _filter_dt{0.01f};
|
||||||
|
bool _are_filters_initialized{false};
|
||||||
|
|
||||||
|
AlphaFilter<float> _signal_filter; ///< used to create a wash-out filter
|
||||||
|
|
||||||
|
static constexpr float _model_dt_min{2e-3f}; // 2ms = 500Hz
|
||||||
|
static constexpr float _model_dt_max{10e-3f}; // 10ms = 100Hz
|
||||||
|
int _model_update_scaler{1};
|
||||||
|
int _model_update_counter{0};
|
||||||
|
|
||||||
|
perf_counter_t _cycle_perf{perf_alloc(PC_ELAPSED, MODULE_NAME": cycle time")};
|
||||||
|
|
||||||
|
DEFINE_PARAMETERS(
|
||||||
|
(ParamBool<px4::params::MC_AT_START>) _param_mc_at_start,
|
||||||
|
(ParamFloat<px4::params::MC_AT_SYSID_AMP>) _param_mc_at_sysid_amp,
|
||||||
|
(ParamInt<px4::params::MC_AT_APPLY>) _param_mc_at_apply,
|
||||||
|
(ParamFloat<px4::params::MC_AT_RISE_TIME>) _param_mc_at_rise_time,
|
||||||
|
|
||||||
|
(ParamFloat<px4::params::IMU_GYRO_CUTOFF>) _param_imu_gyro_cutoff,
|
||||||
|
|
||||||
|
(ParamFloat<px4::params::MC_ROLLRATE_P>) _param_mc_rollrate_p,
|
||||||
|
(ParamFloat<px4::params::MC_ROLLRATE_K>) _param_mc_rollrate_k,
|
||||||
|
(ParamFloat<px4::params::MC_ROLLRATE_I>) _param_mc_rollrate_i,
|
||||||
|
(ParamFloat<px4::params::MC_ROLLRATE_D>) _param_mc_rollrate_d,
|
||||||
|
(ParamFloat<px4::params::MC_ROLL_P>) _param_mc_roll_p,
|
||||||
|
(ParamFloat<px4::params::MC_PITCHRATE_P>) _param_mc_pitchrate_p,
|
||||||
|
(ParamFloat<px4::params::MC_PITCHRATE_K>) _param_mc_pitchrate_k,
|
||||||
|
(ParamFloat<px4::params::MC_PITCHRATE_I>) _param_mc_pitchrate_i,
|
||||||
|
(ParamFloat<px4::params::MC_PITCHRATE_D>) _param_mc_pitchrate_d,
|
||||||
|
(ParamFloat<px4::params::MC_PITCH_P>) _param_mc_pitch_p,
|
||||||
|
(ParamFloat<px4::params::MC_YAWRATE_P>) _param_mc_yawrate_p,
|
||||||
|
(ParamFloat<px4::params::MC_YAWRATE_K>) _param_mc_yawrate_k,
|
||||||
|
(ParamFloat<px4::params::MC_YAWRATE_I>) _param_mc_yawrate_i,
|
||||||
|
(ParamFloat<px4::params::MC_YAWRATE_D>) _param_mc_yawrate_d,
|
||||||
|
(ParamFloat<px4::params::MC_YAW_P>) _param_mc_yaw_p
|
||||||
|
)
|
||||||
|
|
||||||
|
static constexpr float _publishing_dt_s = 100e-3f;
|
||||||
|
static constexpr hrt_abstime _publishing_dt_hrt = 100_ms;
|
||||||
|
};
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020-2021 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file autotune_attitude_control_params.c
|
||||||
|
*
|
||||||
|
* Parameters used by the attitude auto-tuner
|
||||||
|
*
|
||||||
|
* @author Mathieu Bresciani <mathieu@auterion.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Start the autotuning sequence
|
||||||
|
*
|
||||||
|
* WARNING: this will inject steps to the rate controller
|
||||||
|
* and can be dangerous. Only activate if you know what you
|
||||||
|
* are doing, and in a safe environment.
|
||||||
|
*
|
||||||
|
* Any motion of the remote stick will abord the signal
|
||||||
|
* injection and reset this parameter
|
||||||
|
* Best is to perform the identification in position or
|
||||||
|
* hold mode.
|
||||||
|
* Increase the amplitude of the injected signal using
|
||||||
|
* MC_AT_SYSID_AMP for more signal/noise ratio
|
||||||
|
*
|
||||||
|
* @boolean
|
||||||
|
* @group Autotune
|
||||||
|
*/
|
||||||
|
PARAM_DEFINE_INT32(MC_AT_START, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Amplitude of the injected signal
|
||||||
|
*
|
||||||
|
* @min 0.1
|
||||||
|
* @max 6.0
|
||||||
|
* @decimal 1
|
||||||
|
* @group Autotune
|
||||||
|
*/
|
||||||
|
PARAM_DEFINE_FLOAT(MC_AT_SYSID_AMP, 0.7);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controls when to apply the new gains
|
||||||
|
*
|
||||||
|
* After the auto-tuning sequence is completed,
|
||||||
|
* a new set of gains is available and can be applied
|
||||||
|
* immediately or after landing.
|
||||||
|
*
|
||||||
|
* WARNING Applying the gains in air is dangerous as there is no
|
||||||
|
* guarantee that those new gains will be able to stabilize
|
||||||
|
* the drone properly.
|
||||||
|
*
|
||||||
|
* @value 0 Do not apply the new gains (logging only)
|
||||||
|
* @value 1 Apply the new gains after disarm
|
||||||
|
* @value 2 WARNING Apply the new gains in air
|
||||||
|
* @group Autotune
|
||||||
|
*/
|
||||||
|
PARAM_DEFINE_INT32(MC_AT_APPLY, 1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Desired angular rate closed-loop rise time
|
||||||
|
*
|
||||||
|
* @min 0.01
|
||||||
|
* @max 0.5
|
||||||
|
* @decimal 2
|
||||||
|
* @unit s
|
||||||
|
* @group Autotune
|
||||||
|
*/
|
||||||
|
PARAM_DEFINE_FLOAT(MC_AT_RISE_TIME, 0.14);
|
||||||
Reference in New Issue
Block a user