forked from Archive/PX4-Autopilot
PositionControl: make it self contained library
This commit is contained in:
parent
549fb0d5de
commit
ad60f6d786
|
@ -32,6 +32,7 @@
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
add_subdirectory(Takeoff)
|
add_subdirectory(Takeoff)
|
||||||
|
add_subdirectory(PositionControl)
|
||||||
|
|
||||||
px4_add_module(
|
px4_add_module(
|
||||||
MODULE modules__mc_pos_control
|
MODULE modules__mc_pos_control
|
||||||
|
@ -40,9 +41,8 @@ px4_add_module(
|
||||||
-Wno-implicit-fallthrough # TODO: fix and remove
|
-Wno-implicit-fallthrough # TODO: fix and remove
|
||||||
SRCS
|
SRCS
|
||||||
mc_pos_control_main.cpp
|
mc_pos_control_main.cpp
|
||||||
PositionControl.cpp
|
|
||||||
Utility/ControlMath.cpp
|
|
||||||
DEPENDS
|
DEPENDS
|
||||||
|
PositionControl
|
||||||
controllib
|
controllib
|
||||||
FlightTasks
|
FlightTasks
|
||||||
git_ecl
|
git_ecl
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
############################################################################
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 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_library(PositionControl
|
||||||
|
PositionControl.cpp
|
||||||
|
ControlMath.cpp
|
||||||
|
)
|
||||||
|
target_include_directories(PositionControl
|
||||||
|
PUBLIC
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
)
|
|
@ -38,7 +38,7 @@
|
||||||
#include "PositionControl.hpp"
|
#include "PositionControl.hpp"
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
#include <mathlib/mathlib.h>
|
#include <mathlib/mathlib.h>
|
||||||
#include "Utility/ControlMath.hpp"
|
#include <ControlMath.hpp>
|
||||||
#include <px4_defines.h>
|
#include <px4_defines.h>
|
||||||
|
|
||||||
using namespace matrix;
|
using namespace matrix;
|
|
@ -1,6 +1,6 @@
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
*
|
*
|
||||||
* Copyright (c) 2013 - 2017 PX4 Development Team. All rights reserved.
|
* Copyright (c) 2013 - 2019 PX4 Development Team. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
#include <uORB/topics/vehicle_trajectory_waypoint.h>
|
#include <uORB/topics/vehicle_trajectory_waypoint.h>
|
||||||
|
|
||||||
#include "PositionControl.hpp"
|
#include "PositionControl.hpp"
|
||||||
#include "Utility/ControlMath.hpp"
|
#include "PositionControl/ControlMath.hpp"
|
||||||
#include "Takeoff.hpp"
|
#include "Takeoff.hpp"
|
||||||
|
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <unit_test.h>
|
#include <unit_test.h>
|
||||||
#include <mc_pos_control/Utility/ControlMath.hpp>
|
#include <mc_pos_control/PositionControl/ControlMath.hpp>
|
||||||
#include <mathlib/mathlib.h>
|
#include <mathlib/mathlib.h>
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue