Skip to content

Commit 2b943f3

Browse files
Update README to point to PX4 v1.16.0
1 parent f4e821a commit 2b943f3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Docker pulls](https://img.shields.io/docker/pulls/jonasvautherin/px4-gazebo-headless)](https://hub.docker.com/r/jonasvautherin/px4-gazebo-headless/)[![DockerHub version](https://img.shields.io/docker/v/jonasvautherin/px4-gazebo-headless/1.15.4)](https://hub.docker.com/r/jonasvautherin/px4-gazebo-headless/)
1+
[![Docker pulls](https://img.shields.io/docker/pulls/jonasvautherin/px4-gazebo-headless)](https://hub.docker.com/r/jonasvautherin/px4-gazebo-headless/)[![DockerHub version](https://img.shields.io/docker/v/jonasvautherin/px4-gazebo-headless/1.16.0)](https://hub.docker.com/r/jonasvautherin/px4-gazebo-headless/)
22

33

44
# PX4-Gazebo simulator (headless)
@@ -7,14 +7,14 @@
77

88
The Docker images resulting from this repo are available on [Docker Hub](https://hub.docker.com/r/jonasvautherin/px4-gazebo-headless/).
99

10-
Note that the following commands are referring to the latest supported release of PX4, which is currently v1.15.4.
10+
Note that the following commands are referring to the latest supported release of PX4, which is currently v1.16.0.
1111

1212
### Run in BROADCAST mode:
1313

1414
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).
1515

1616
```
17-
docker run --rm -it jonasvautherin/px4-gazebo-headless:1.15.4
17+
docker run --rm -it jonasvautherin/px4-gazebo-headless:1.16.0
1818
```
1919

2020
In this configuration, the container will send MAVLink to the host on ports 14550 (for QGC) and 14540 (for e.g. MAVSDK).
@@ -24,7 +24,7 @@ In this configuration, the container will send MAVLink to the host on ports 1455
2424
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).
2525

2626
```
27-
docker run --rm -it jonasvautherin/px4-gazebo-headless:1.15.4 192.168.0.12
27+
docker run --rm -it jonasvautherin/px4-gazebo-headless:1.16.0 192.168.0.12
2828
```
2929

3030
where `192.168.0.12` should be replaced by the IP listening on the API port 14540 (e.g. MAVSDK or MAVROS).
@@ -34,7 +34,7 @@ where `192.168.0.12` should be replaced by the IP listening on the API port 1454
3434
This mode is useful for running both QGroundControl and the offboard app (e.g. using MAVSDK) on another device than the one running docker.
3535

3636
```
37-
docker run --rm -it jonasvautherin/px4-gazebo-headless:1.15.4 192.168.0.10 10.0.0.12
37+
docker run --rm -it jonasvautherin/px4-gazebo-headless:1.16.0 192.168.0.10 10.0.0.12
3838
```
3939

4040
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).
@@ -44,7 +44,7 @@ where `192.168.0.10` should be replaced by the IP listening on the QGC port 1455
4444
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:
4545

4646
```
47-
docker run --rm -it -p 8554:8554 jonasvautherin/px4-gazebo-headless:1.15.4 -v typhoon_h480
47+
docker run --rm -it -p 8554:8554 jonasvautherin/px4-gazebo-headless:1.16.0 -v typhoon_h480
4848
```
4949

5050
### Run with another start location
@@ -58,12 +58,12 @@ The start location can be set when running the container by setting the followin
5858
For instance:
5959

6060
```
61-
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:1.15.4
61+
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:1.16.0
6262
```
6363

6464
## Manual build
6565

66-
Note that a clean build from the `master` branch will pull the latest upstream from the PX4 repository (as can be seen [here](https://github.com/JonasVautherin/px4-gazebo-headless/blob/master/Dockerfile#L26)). In order to build a stable version, change `master` for a tag (e.g. `v1.15.4`) in the following commands.
66+
Note that a clean build from the `master` branch will pull the latest upstream from the PX4 repository (as can be seen [here](https://github.com/JonasVautherin/px4-gazebo-headless/blob/master/Dockerfile#L26)). In order to build a stable version, change `master` for a tag (e.g. `v1.16.0`) in the following commands.
6767

6868
### Build the image from this git repository:
6969

0 commit comments

Comments
 (0)