Compare commits

...

8 Commits

Author SHA1 Message Date
Oleg Kalachev
024a7280a9 Fix 2022-07-12 16:47:15 +03:00
Oleg Kalachev
5ccd5cf2ba Fix 2022-07-12 15:31:29 +03:00
Oleg Kalachev
c034418de0 Fix 2022-07-12 14:56:24 +03:00
Oleg Kalachev
b04ffbe41d Fix 2022-07-12 13:46:05 +03:00
Oleg Kalachev
47913a88a7 Fix 2022-07-12 13:44:12 +03:00
Oleg Kalachev
7997e219e3 Try to fix 2022-07-05 16:39:55 +03:00
Oleg Kalachev
c570ba4bac Fix 2022-07-05 14:42:22 +03:00
Oleg Kalachev
811d2e89e7 Update PX4 to v1.13.0 2022-07-05 14:38:04 +03:00

View File

@@ -55,10 +55,11 @@ echo "--- Installing Clover's Python dependencies"
sudo -E sh -c '/usr/bin/python3 -m pip install -r ~/catkin_ws/src/clover/clover/requirements.txt'
echo "--- Downloading PX4"
git clone --recursive --depth 1 --branch v1.12.3 https://github.com/PX4/PX4-Autopilot.git ~/PX4-Autopilot
git clone --recursive --depth 1 --branch v1.13.0 https://github.com/PX4/PX4-Autopilot.git ~/PX4-Autopilot
ln -s ~/PX4-Autopilot ~/catkin_ws/src/
ln -s ~/PX4-Autopilot/Tools/sitl_gazebo ~/catkin_ws/src/
ln -s ~/PX4-Autopilot/mavlink ~/catkin_ws/src/
#ln -s ~/PX4-Autopilot/src/modules/mavlink/mavlink ~/catkin_ws/src/
#git clone --depth 1 https://github.com/mavlink/c_library_v2.git ~/catkin_ws/src/mavlink/ # FIXME:
echo "--- Installing PX4 dependencies"
~/PX4-Autopilot/Tools/setup/ubuntu.sh
@@ -80,9 +81,14 @@ ln -s ~/catkin_ws/src/clover/clover_simulation/airframes/* ~/PX4-Autopilot/ROMFS
echo "--- Installing geographiclib datasets"
sudo -E sh -c '/opt/ros/noetic/lib/mavros/install_geographiclib_datasets.sh'
echo "--- Building the workspace"
echo "--- Build mavlink and fix issues"
cd ~/catkin_ws
catkin_make
catkin_make mavlink_c_generate
ln -s "." build/mavlink/mavlink
rm build/CMakeCache.txt
echo "--- Building the workspace"
catkin_make --force-cmake
echo "--- Installing Visual Studio Code"
sudo -E sh -c 'apt-get update; apt-get install -y curl'