Skip to content

This documentation will guide you on how to set up a SITL (Software in the loop) on UBUNTU 20.04 LTS with PX4-Autopilot, QGroundControl & a simulation software Gazebo11

License

Notifications You must be signed in to change notification settings

F-LAB-Systems/SITL_2021

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

SITL_2021 PX4-Autopilot + GAZEBO 11 + QGC

This documentation will guide you on how to set up a SITL (Software in the loop) on UBUNTU 20.04 LTS with PX4-Autopilot, QGroundControl paired with simulation software Gazebo 11.

F-lab

Let's get started by opening up the Terminal on your system and entering the following commands:

##YOUTUBE TUTORIAL

Step 1 - Install PX4 - Autopilot

cd ~
git clone https://github.com/PX4/PX4-Autopilot.git --recursive
bash ./Tools/setup/ubuntu.sh

Step 2 - Install Gazebo 11

cd ~
curl -sSL http://get.gazebosim.org | sh

Visit Gazebo website for Alternative installation

Step 3 - Run PX4 + Gazebo 11

Now cd into the PX4-Autopilot directory

cd PX4-Autopilot
make px4_sitl gazebo //QuadCopter

You can visit PX4 website for more models.

The terminal may prompt you to install some python modules during this installation,install it for example

pip3 install --user empy
pip3 install --user toml
pip3 install --user numpy
pip3 install --user jinja2

If you still get error and are not propmted to install any more dependencies, You have to install Gstreamer by entering this commands into Terminal

sudo apt install libgstreamer1.0-dev
sudo apt install gstreamer1.0-plugins-good
sudo apt install gstreamer1.0-plugins-bad
sudo apt install gstreamer1.0-plugins-ugly

It will take some time for the machine to open up Simulator for the first time.

Step 4 - Install QGroundControl

  1. Before installing QGroundControl Enter the following in Terminal
sudo usermod -a -G dialout $USER
sudo apt-get remove modemmanager -y
sudo apt install gstreamer1.0-plugins-bad gstreamer1.0-libav gstreamer1.0-gl -y
  1. Logout and Login again to enable the change to user permissions on your Ubuntu Machine

  2. Download QGroundControl

  3. cd into the folder where QGroundControl is saved and execute this commands:

cd ~
cd Documents
chmod +x ./QGroundControl.AppImage
./QGroundControl.AppImage  (or double click onto the file in documents)

About

This documentation will guide you on how to set up a SITL (Software in the loop) on UBUNTU 20.04 LTS with PX4-Autopilot, QGroundControl & a simulation software Gazebo11

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published