https://github.com/astuff/pacmod2_msgs
Hybrid ROS1/ROS2 messages for the PACMod 2 ROS driver
https://github.com/astuff/pacmod2_msgs
Last synced: 4 months ago
JSON representation
Hybrid ROS1/ROS2 messages for the PACMod 2 ROS driver
- Host: GitHub
- URL: https://github.com/astuff/pacmod2_msgs
- Owner: astuff
- License: mit
- Created: 2023-04-21T17:26:30.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-25T16:16:02.000Z (about 3 years ago)
- Last Synced: 2025-10-03T23:57:46.711Z (9 months ago)
- Language: CMake
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.rst
- License: LICENSE
Awesome Lists containing this project
README
# pacmod2_msgs
A set of ROS messages for use with the [PACMod 2 ROS driver](https://github.com/astuff/pacmod2).
This package is a hybrid ROS1/ROS2 package which means the version history will be the same on both ROS versions.
## Installation
Install pacmod2_msgs using our debian repository:
```sh
sudo apt install apt-transport-https
sudo sh -c 'echo "deb [trusted=yes] https://s3.amazonaws.com/autonomoustuff-repo/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/autonomoustuff-public.list'
sudo apt update
sudo apt install ros-$ROS_DISTRO-pacmod2-msgs
```
## Versioning
Since ROS msgs are not typical software libraries, a modified version of [semver](https://semver.org) will be used to version this repo:
Given a version number MAJOR.MINOR.PATCH, increment the:
1. MAJOR version when an existing message type/name changes or is removed, OR any time an existing field in a message changes or is removed (something that could require code changes by dependent packages).
2. MINOR version when the md5sum of any existing message changes, but no dependent code changes are needed. For example, adding new fields or new message types could only require re-compilation by dependent packages, but no code changes.
3. PATCH version when there is no change to the md5sum of any existing messages. For example adding a new message type or adding comment-only changes to existing messages. No code changes or re-compilation is needed by any dependent packages.