Firmware
FlightTaskManual.hpp
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * Copyright (c) 2018 PX4 Development Team. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  * 3. Neither the name PX4 nor the names of its contributors may be
16  * used to endorse or promote products derived from this software
17  * without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  *
32  ****************************************************************************/
33 
41 #pragma once
42 
43 #include "FlightTask.hpp"
44 #include <uORB/topics/manual_control_setpoint.h>
45 
47 {
48 public:
49  FlightTaskManual() = default;
50 
51  virtual ~FlightTaskManual() = default;
52 
53  bool initializeSubscriptions(SubscriptionArray &subscription_array) override;
54  bool applyCommandParameters(const vehicle_command_s &command) override { return FlightTask::applyCommandParameters(command); };
55  bool updateInitialize() override;
56 
57 protected:
58 
59  bool _sticks_data_required = true;
60  matrix::Vector<float, 4> _sticks;
61  matrix::Vector<float, 4> _sticks_expo;
62  int _gear_switch_old = manual_control_setpoint_s::SWITCH_POS_NONE;
64  float stickDeadzone() const { return _param_mpc_hold_dz.get(); }
65 
66 private:
67 
68  bool _evaluateSticks();
69  void _applyGearSwitch(uint8_t gswitch);
71  uORB::Subscription<manual_control_setpoint_s> *_sub_manual_control_setpoint{nullptr};
72 
73  DEFINE_PARAMETERS_CUSTOM_PARENT(FlightTask,
74  (ParamFloat<px4::params::MPC_HOLD_DZ>) _param_mpc_hold_dz,
76  _param_mpc_xy_man_expo,
78  _param_mpc_z_man_expo,
80  _param_mpc_yaw_expo,
81  (ParamFloat<px4::params::COM_RC_LOSS_T>) _param_com_rc_loss_t
82  )
83 };
int _gear_switch_old
old switch state
Definition: FlightTaskManual.hpp:62
Definition: FlightTask.hpp:58
matrix::Vector< float, 4 > _sticks_expo
modified manual sticks using expo function
Definition: FlightTaskManual.hpp:61
virtual bool applyCommandParameters(const vehicle_command_s &command)
To be called to adopt parameters from an arrived vehicle command.
Definition: FlightTask.hpp:93
bool initializeSubscriptions(SubscriptionArray &subscription_array) override
Initialize the uORB subscriptions using an array.
Definition: FlightTaskManual.cpp:45
Definition: px4_param.h:318
Abstract base class for different advanced flight tasks like orbit, follow me, ...
matrix::Vector< float, 4 > _sticks
unmodified manual stick inputs
Definition: FlightTaskManual.hpp:60
bool applyCommandParameters(const vehicle_command_s &command) override
To be called to adopt parameters from an arrived vehicle command.
Definition: FlightTaskManual.hpp:54
Definition: SubscriptionArray.hpp:46
bool updateInitialize() override
Call before activate() or update() to initialize time and input data.
Definition: FlightTaskManual.cpp:58
Definition: FlightTaskManual.hpp:46
bool _sticks_data_required
let inherited task-class define if it depends on stick data
Definition: FlightTaskManual.hpp:59