Skip to content

An unofficial Ubuntu-based container building and running PX4 SITL (Software In The Loop) through gazebo.

License

Notifications You must be signed in to change notification settings

Aer041/px4-gazebo-headless

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Actions StatusDocker pullsDockerHub version

Aero41 setup

HITL

Installation

To cross build and push on docker hub, first run qemu multiarch docker

docker run --rm --privileged multiarch/qemu-user-static --reset -p yes

And then build the containers with the name of the version

git checkout origin/a41-px4-hitl
docker buildx build . --platform=linux/amd64,linux/arm64,linux/arm/v7 -t aero41/px4-gazebo-headless:hitl-<tag-name> --push

Run

To run the docker on your host machine in HITL. First plug the Pixhawk 4 already set in HITL mode. Then run the command below:

docker run --network host --rm --device /dev/ttyACM0:/dev/ttyACM0 -it aero41/px4-gazebo-headless:hitl-<tag-name>

Firmware builder

TODO

git checkout origin/a41_px4_builder

PX4-Gazebo simulator (headless)

Quickstart

The Docker images resulting from this repo are available on Docker Hub.

Note that the following commands are referring to the latest supported release of PX4, which is currently v1.12.1.

Run in BROADCAST mode:

In this mode, the simulator will be available from your host (e.g. run the following command, and QGroundControl running on your computer will connect automatically).

docker run --rm -it jonasvautherin/px4-gazebo-headless:1.12.1

In this configuration, the container will send MAVLink to the host on ports 14550 (for QGC) and 14540 (for e.g. MAVSDK).

Run with a custom IP for the second MAVLink interface

This mode is useful for running QGroundControl on the computer running docker, and the offboard app (e.g. using MAVSDK) on another device (e.g. a phone).

docker run --rm -it jonasvautherin/px4-gazebo-headless:1.12.1 192.168.0.12

where 192.168.0.12 should be replaced by the IP listening on the API port 14540 (e.g. MAVSDK or MAVROS).

Run with custom IP for both MAVLink interfaces

This mode is useful for running both QGroundControl and the offboard app (e.g. using MAVSDK) on another device than the one running docker.

docker run --rm -it jonasvautherin/px4-gazebo-headless:1.12.1 192.168.0.10 10.0.0.12

where 192.168.0.10 should be replaced by the IP listening on the QGC port 14550 (e.g. QGroundControl) and 10.0.0.12 should be replaced by the IP listening on the API port 14540 (e.g. MAVSDK or MAVROS).

Exposing a video stream

When running with the Typhoon H480 vehicle (with -v typhoon_h480), a video stream will be available. Expose it with e.g. -p 8554:8554, like so:

docker run --rm -it -p 8554:8554 jonasvautherin/px4-gazebo-headless:1.12.1 -v typhoon_h480

Run with another start location

The start location can be set when running the container by setting the following environment variables:

  • PX4_HOME_LAT: starting latitude of the drone.
  • PX4_HOME_LON: starting longitude of the drone.
  • PX4_HOME_ALT: starting altitude of the drone.

For instance:

docker run --rm -it --env PX4_HOME_LAT=47.397742 --env PX4_HOME_LON=8.545594 --env PX4_HOME_ALT=488.0 jonasvautherin/px4-gazebo-headless:v1.12.1

Manual build

Note that a clean build from the master branch will pull the latest upstream from the PX4 repository (as can be seen here). In order to build a stable version, change master for a tag (e.g. v1.12.1) in the following commands.

Build the image from this git repository:

docker build https://github.com/JonasVautherin/px4-gazebo-headless.git#master -t px4-gazebo-headless

The starting location of the drone can be set at build time using build arguments (by default the drone is in Zuerich). The possible build arguments are:

  • HOME_LAT: starting latitude of the drone (defaults to 47.397742).
  • HOME_LON: starting longitude of the drone (defaults to 8.545594).
  • HOME_ALT: starting altitude of the drone (defaults to 488.0).

Build arguments can be added to the above command line as follows:

docker build https://github.com/JonasVautherin/px4-gazebo-headless.git#master --build-arg HOME_LAT=37.873350 --build-arg HOME_LON=-122.302525 --build-arg HOME_ALT=20 -t px4-gazebo-headless

Troubleshooting

I cannot build the image

Problem:

Building the image fails with the following error:

c++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-5/README.Bugs> for instructions.

Possible solution:

If running on Docker for Mac, try to increase the memory in Preferences > Advanced > Memory. Increasing from 2GB to 4GB solved the problem for me.

If running on Docker for Windows, you can do it by right clicking on the Docker icon on the task bar and going into Settings > Resources > Advanced > Memory.

It doesn't work with Docker Toolbox

Problem:

Using Docker Toolbox (instead of Docker for Windows/Mac, for instance on Windows 10 Home), px4-gazebo-headless is not detected by QGroundControl running on the host.

Solution:

The container automatically detects if it is running inside Docker for Windows/Mac, but not if it is inside Docker Toolbox (let me know if you have a way to detect this). However, it seems that in Docker Toolbox, the host is assigned 10.0.2.2 by default (I am guessing this default is coming from VirtualBox). Therefore it works to redirect to this IP, as described above. For instance:

docker run --rm -it jonasvautherin/px4-gazebo-headless:1.12.1 10.0.2.2 10.0.2.2

About

An unofficial Ubuntu-based container building and running PX4 SITL (Software In The Loop) through gazebo.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 50.4%
  • Dockerfile 29.8%
  • C++ 13.4%
  • CMake 6.4%