You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
670 B
20 lines
670 B
#! /bin/bash |
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) |
|
PX4_SRC_DIR=${DIR}/.. |
|
|
|
source /opt/ros/${ROS_DISTRO:-kinetic}/setup.bash |
|
mkdir -p ${PX4_SRC_DIR}/catkin_ws/src |
|
cd ${PX4_SRC_DIR}/catkin_ws/ |
|
git clone -b 0.3.0 --single-branch --depth 1 https://github.com/PX4/avoidance.git src/avoidance |
|
|
|
catkin init |
|
catkin build local_planner safe_landing_planner --cmake-args -DCMAKE_BUILD_TYPE=Release |
|
|
|
source ${PX4_SRC_DIR}/catkin_ws/devel/setup.bash |
|
source /usr/share/gazebo/setup.sh |
|
|
|
export CATKIN_SETUP_UTIL_ARGS=--extend |
|
export GAZEBO_MODEL_PATH=$GAZEBO_MODEL_PATH:${PX4_SRC_DIR}/catkin_ws/src/avoidance/avoidance/sim/models |
|
|
|
source $DIR/rostest_px4_run.sh "$@"
|
|
|