px4-firmware/Tools/ros/px4_workspace_setup.sh

35 lines
700 B
Bash
Raw Normal View History

2015-01-07 08:48:20 -04:00
#!/bin/sh
# run this script from the root of your catkin_ws
source devel/setup.bash
cd src
# PX4 Firmware
git clone https://github.com/PX4/Firmware.git
cd Firmware
git checkout ros
cd ..
# euroc simulator
git clone https://github.com/PX4/euroc_simulator.git
cd euroc_simulator
git checkout px4_nodes
cd ..
# mav comm
2015-01-07 08:48:20 -04:00
git clone https://github.com/PX4/mav_comm.git
2015-01-16 10:18:53 -04:00
# glog catkin
git clone https://github.com/ethz-asl/glog_catkin.git
# catkin simple
git clone https://github.com/catkin/catkin_simple.git
2015-01-16 10:18:53 -04:00
# drcsim (for scenery and models)
hg clone https://bitbucket.org/osrf/osrf-common
hg clone https://bitbucket.org/osrf/sandia-hand
hg clone https://bitbucket.org/osrf/drcsim
2015-01-07 08:48:20 -04:00
cd ..
catkin_make