2017-12-08 19:44:27 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2017 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.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/**
|
2017-12-24 16:02:50 +01:00
|
|
|
* @file FlightManualAltitude.cpp
|
2017-12-08 19:44:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "FlightTaskManualAltitude.hpp"
|
|
|
|
|
#include <float.h>
|
|
|
|
|
|
|
|
|
|
using namespace matrix;
|
|
|
|
|
|
2017-12-29 10:04:47 +01:00
|
|
|
void FlightTaskManualAltitude::_scaleSticks()
|
2017-12-08 19:44:27 +01:00
|
|
|
{
|
2017-12-29 10:04:47 +01:00
|
|
|
/* Reuse same scaling as for stabilized */
|
|
|
|
|
FlightTaskManualStabilized::_scaleSticks();
|
|
|
|
|
|
2018-01-04 17:48:39 +01:00
|
|
|
/* Scale horizontal velocity with expo curve stick input*/
|
2018-04-18 11:20:51 +02:00
|
|
|
const float vel_max_z = (_sticks(2) > 0.0f) ? _limits.speed_dn_max : _limits.speed_up_max;
|
2018-02-28 10:02:20 +01:00
|
|
|
_velocity_setpoint(2) = vel_max_z * _sticks_expo(2);
|
2017-12-09 13:36:03 +01:00
|
|
|
}
|
2017-12-08 19:44:27 +01:00
|
|
|
|
2018-01-05 10:43:13 +01:00
|
|
|
void FlightTaskManualAltitude::_updateAltitudeLock()
|
2017-12-09 13:36:03 +01:00
|
|
|
{
|
2018-01-05 10:43:13 +01:00
|
|
|
/* Depending on stick inputs and velocity, position is locked.
|
|
|
|
|
* If not locked, altitude setpoint is set to NAN.
|
2017-12-24 16:02:50 +01:00
|
|
|
*/
|
2017-12-22 09:36:46 +01:00
|
|
|
|
2017-12-29 10:04:47 +01:00
|
|
|
/* handle position and altitude hold */
|
2018-02-28 10:02:20 +01:00
|
|
|
const bool apply_brake_z = fabsf(_velocity_setpoint(2)) <= FLT_EPSILON;
|
2018-04-18 11:20:51 +02:00
|
|
|
const bool stopped_z = (MPC_HOLD_MAX_Z.get() < FLT_EPSILON || fabsf(_velocity(2)) < MPC_HOLD_MAX_Z.get());
|
2017-12-22 09:36:46 +01:00
|
|
|
|
2018-02-28 10:02:20 +01:00
|
|
|
if (apply_brake_z && stopped_z && !PX4_ISFINITE(_position_setpoint(2))) {
|
|
|
|
|
_position_setpoint(2) = _position(2);
|
2017-12-22 09:36:46 +01:00
|
|
|
|
2018-04-18 17:24:11 +02:00
|
|
|
if ((PX4_ISFINITE(_dist_to_bottom) && _dist_to_bottom < SENS_FLOW_MINRNG.get())) {
|
|
|
|
|
// if vehicle wants to keep altitude but is below minimum flow distance,
|
|
|
|
|
// increase altitude to minimum flow distance
|
|
|
|
|
_position_setpoint(2) = _position(2) - (SENS_FLOW_MINRNG.get() - _dist_to_bottom);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-05 11:06:29 +01:00
|
|
|
} else if (!apply_brake_z) {
|
2018-02-28 10:02:20 +01:00
|
|
|
_position_setpoint(2) = NAN;
|
2017-12-08 19:44:27 +01:00
|
|
|
}
|
2017-12-09 13:36:03 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-29 10:04:47 +01:00
|
|
|
void FlightTaskManualAltitude::_updateSetpoints()
|
2017-12-09 13:36:03 +01:00
|
|
|
{
|
2018-02-15 11:12:24 +01:00
|
|
|
FlightTaskManualStabilized::_updateSetpoints(); // get yaw and thrust setpoints
|
|
|
|
|
|
2018-02-28 10:02:20 +01:00
|
|
|
_thrust_setpoint *= NAN; // Don't need thrust setpoint from Stabilized mode.
|
2018-02-15 11:12:24 +01:00
|
|
|
|
2018-01-09 08:58:35 +01:00
|
|
|
/* Thrust in xy are extracted directly from stick inputs. A magnitude of
|
|
|
|
|
* 1 means that maximum thrust along xy is required. A magnitude of 0 means no
|
|
|
|
|
* thrust along xy is required. The maximum thrust along xy depends on the thrust
|
|
|
|
|
* setpoint along z-direction, which is computed in PositionControl.cpp.
|
|
|
|
|
*/
|
2018-02-22 08:33:48 +01:00
|
|
|
Vector2f sp{_sticks(0), _sticks(1)};
|
|
|
|
|
_rotateIntoHeadingFrame(sp);
|
2018-01-09 08:58:35 +01:00
|
|
|
|
|
|
|
|
if (sp.length() > 1.0f) {
|
|
|
|
|
sp.normalize();
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-28 10:02:20 +01:00
|
|
|
_thrust_setpoint(0) = sp(0);
|
|
|
|
|
_thrust_setpoint(1) = sp(1);
|
2018-01-09 08:58:35 +01:00
|
|
|
|
2018-02-15 11:12:24 +01:00
|
|
|
_updateAltitudeLock();
|
2017-12-08 19:44:27 +01:00
|
|
|
}
|