No version for distro humble showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro jazzy showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro kilted showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro ardent showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro bouncy showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro crystal showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro eloquent showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro dashing showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro galactic showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro foxy showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro iron showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro lunar showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro jade showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro indigo showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro hydro showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
kinetic

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version ros1
Last Updated 2025-05-08
Dev Status MAINTAINED
Released RELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 1.0.0

README

px4_msgs

GitHub license Build Status

This package contains the ROS(1) message definitions of the PX4 Pro ecosystem. Building this package generates all the required interfaces to interface ROS nodes with the PX4 autopilot internals, which use the uORB messaging API. Currently the messages of this package represent a dependency to px4_ros_com package ros1 branch. The interface with PX4 is only possible using the ros1_bridge and px4_ros_com, which bridges the ROS topics with the ROS2 topics.

uORB message definitions

The uORB message definitions, which represent the counter-part of these ROS messages found in this package, can be found on the PX4 Firmware repository.

How are these messsage definitions generated?

The PX4 Firmware Jenkins-based CI/CD deploys new messages or modifications to the current definitions with each build of the master branch of the PX4 Firmware. A future improvement will also include tagging and releasing this repository according to the tags/releases of the PX4 Firmware, for a more tide coupling between the message definitions.

Install, build and usage

Check this section of the ROS tutorials in order to understand how to create and build msg and srv files. Check the RTPS/ROS2 Interface section on the PX4 Devguide for further details on how this integrates with the px4_ros_com package.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the #messaging PX4 Slack channel: Slack

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
melodic

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version ros1
Last Updated 2025-05-08
Dev Status MAINTAINED
Released RELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 1.0.0

README

px4_msgs

GitHub license Build Status

This package contains the ROS(1) message definitions of the PX4 Pro ecosystem. Building this package generates all the required interfaces to interface ROS nodes with the PX4 autopilot internals, which use the uORB messaging API. Currently the messages of this package represent a dependency to px4_ros_com package ros1 branch. The interface with PX4 is only possible using the ros1_bridge and px4_ros_com, which bridges the ROS topics with the ROS2 topics.

uORB message definitions

The uORB message definitions, which represent the counter-part of these ROS messages found in this package, can be found on the PX4 Firmware repository.

How are these messsage definitions generated?

The PX4 Firmware Jenkins-based CI/CD deploys new messages or modifications to the current definitions with each build of the master branch of the PX4 Firmware. A future improvement will also include tagging and releasing this repository according to the tags/releases of the PX4 Firmware, for a more tide coupling between the message definitions.

Install, build and usage

Check this section of the ROS tutorials in order to understand how to create and build msg and srv files. Check the RTPS/ROS2 Interface section on the PX4 Devguide for further details on how this integrates with the px4_ros_com package.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the #messaging PX4 Slack channel: Slack

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.
No version for distro noetic showing rolling. Known supported distros are highlighted in the buttons above.
Repo symbol

px4_msgs repository

px4_msgs

ROS Distro
rolling

Repository Summary

Checkout URI https://github.com/PX4/px4_msgs.git
VCS Type git
VCS Version main
Last Updated 2025-10-27
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
px4_msgs 2.0.1

README

px4_msgs

GitHub license Build package

Discord Shield

ROS 2 message definitions for the PX4 Autopilot project.

Building this package generates all the required interfaces to interface ROS 2 nodes with the PX4 internals.

Supported versions and compatibility

Depending on the PX4 and ROS versions you want to use, you need to checkout the appropriate branch of this package:

PX4 ROS 2 Ubuntu branch
v1.13 Foxy Ubuntu 20.04 release/1.13
v1.14 Foxy Ubuntu 20.04 release/1.14
v1.14 Humble Ubuntu 22.04 release/1.14
v1.14 Rolling Ubuntu 22.04 release/1.14
v1.15 Foxy Ubuntu 20.04 release/1.15
v1.15 Humble Ubuntu 22.04 release/1.15
v1.15 Rolling Ubuntu 22.04 release/1.15
main Foxy Ubuntu 22.04 main
main Humble Ubuntu 22.04 main
main Rolling Ubuntu 22.04 main

Messages Sync from PX4

When PX4 message definitions in the main branch of PX4 Autopilot change, a CI/CD pipeline automatically copies and pushes updated ROS message definitions to this repository. This ensures that this repository main branch and the PX4-Autopilot main branch are always up to date. However, if you are using a custom PX4 version and you modified existing messages or created new one, then you have to manually synchronize them in this repository:

Manual Message Sync

  • Checkout the correct branch associated to the PX4 version from which you detached you custom version.
  • Delete all *.msg and *.srv files in msg/ and srv/.
  • Copy all *.msg and *.srv files from PX4-Autopilot/msg/ and PX4-Autopilot/srv/ in msg/ and srv/, respectively. Assuming that this repository and the PX4-Autopilot repository are placed in your home folder, you can run:
  rm -f ~/px4_msgs/msg/*.msg
  rm -f ~/px4_msgs/srv/*.srv
  cp ~/PX4-Autopilot/msg/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/msg/versioned/*.msg ~/px4_msgs/msg/
  cp ~/PX4-Autopilot/srv/*.srv ~/px4_msgs/srv/
  

Note: The ROS 2 message generation pipeline requires all messages to be directly under msg/ and doesn’t support sub-directories.

Install, build and usage

Check Using colcon to build packages to understand how this can be built inside a workspace. Check the PX4 ROS 2 User Guide section on the PX4 documentation for further details on how this integrates PX4 and how to exchange messages with the autopilot.

Bug tracking and feature requests

Use the Issues section to create a new issue. Report your issue or feature request here.

Questions and troubleshooting

Reach the PX4 development team on the PX4 Discord Server.

CONTRIBUTING

Contributing

Do not commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the uORB msg definitions on the PX4 Firmware repository. Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage.

Contributing to the PX4 Firmware repository (or to this repository, not including message definitions)

Follow the Contributing guide from the PX4 Firmware repo.

# Contributing *Do not* commit changes directly to this repository that change the message definitions. All the message definitions are directly generated from the [uORB msg definitions](https://github.com/PX4/Firmware/tree/master/msg) on the [PX4 Firmware repository](https://github.com/PX4/Firmware). Any fixes or improvements one finds suitable to apply to the message definitions should be directly done on the uORB message files. The deployment of these are taken care by a Jenkins CI/CD stage. ### Contributing to the PX4 Firmware repository (or to this repository, not including message definitions) Follow the [`Contributing` guide](https://github.com/PX4/Firmware/blob/master/CONTRIBUTING.md) from the PX4 Firmware repo.