mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-17 03:27:34 +08:00
95 lines
4.1 KiB
C++
95 lines
4.1 KiB
C++
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2018 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 FlightTaskAuto.hpp
|
|
*
|
|
* Map from global triplet to local quadruple.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "FlightTask.hpp"
|
|
#include <uORB/topics/position_setpoint_triplet.h>
|
|
#include <uORB/topics/position_setpoint.h>
|
|
#include <lib/geo/geo.h>
|
|
|
|
/* This enum has to agree with position_setpoint_s type definition
|
|
* The only reason for not using the struct position_setpoint is because
|
|
* of the size */
|
|
enum class WaypointType : int {
|
|
position = 0,
|
|
velocity,
|
|
loiter,
|
|
takeoff,
|
|
land,
|
|
idle
|
|
};
|
|
|
|
class FlightTaskAuto : public FlightTask
|
|
{
|
|
public:
|
|
FlightTaskAuto(control::SuperBlock *parent, const char *name);
|
|
|
|
virtual ~FlightTaskAuto() = default;
|
|
|
|
bool initializeSubscriptions(SubscriptionArray &subscription_array) override;
|
|
|
|
bool activate() override;
|
|
|
|
bool updateInitialize() override;
|
|
|
|
protected:
|
|
matrix::Vector3f _prev_prev_wp{}; /**< Pre-previous waypoint (local frame). This will be used for smoothing trajectories -> not used yet. */
|
|
matrix::Vector3f _prev_wp{}; /**< Previous waypoint (local frame). If no previous triplet is available, the prev_wp is set to current position. */
|
|
matrix::Vector3f _target{}; /**< Target waypoint (local frame).*/
|
|
matrix::Vector3f _next_wp{}; /**< The next waypoint after target (local frame). If no next setpoint is available, next is set to target. */
|
|
float _yaw_wp{0.0f}; /**< Triplet yaw waypoint. Currently it is not a yaw-waypoint, but rather a yaw setpoint at each time stamp. */
|
|
float _mc_cruise_speed{0.0f}; /**< Requested cruise speed. If not valid, default cruise speed is used. */
|
|
WaypointType _type{WaypointType::idle}; /**< Type of current target triplet. */
|
|
|
|
private:
|
|
control::BlockParamFloat _mc_cruise_default; /**< Default mc cruise speed.*/
|
|
map_projection_reference_s _reference; /**< Reference frame from global to local. */
|
|
uORB::Subscription<position_setpoint_triplet_s> *_sub_triplet_setpoint{nullptr};
|
|
map_projection_reference_s _reference_position{}; /**< Structure used to project lat/lon setpoint into local frame. */
|
|
float _reference_altitude = 0.0f; /**< Altitude relative to ground. */
|
|
hrt_abstime _time_stamp_reference = 0; /**< time stamp when last reference update occured. */
|
|
|
|
bool _evaluateTriplets(); /**< Checks and sets triplets. */
|
|
bool _isFinite(const position_setpoint_s sp); /**< Checks if all waypoint triplets are finite. */
|
|
void _updateReference(); /**< Updates the local reference. */
|
|
void _evaluateVehicleGlobalPosition(); /**< Checks if global position is valid. */
|
|
};
|