Skip to content

Commit

Permalink
Update vendored message packages
Browse files Browse the repository at this point in the history
This updates the message packages vendored under the rclrs `vendor`
module. The vendor_interfaces.py script was used for reproducibility.

The existing packages – rcl_interfaces, rosgraph_msgs, and
builtin_interfaces – are only modified in that they now use the
std::ffi::c_void naming for c_void instead of the std::os::raw::c_void
alias and disable certain clippy lints.

The action_msgs and unique_identifier_msgs packages are newly added to
enable adding action support to rclrs. action_msgs is needed for
interaction with action goal info and statuses, and has a dependency on
unique_identifier_msgs.
  • Loading branch information
nwn committed Oct 27, 2024
1 parent 47f18a1 commit 7eaf213
Show file tree
Hide file tree
Showing 13 changed files with 1,054 additions and 77 deletions.
7 changes: 7 additions & 0 deletions rclrs/src/vendor/action_msgs/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#![allow(non_camel_case_types)]
#![allow(clippy::derive_partial_eq_without_eq)]
#![allow(clippy::upper_case_acronyms)]

pub mod msg;

pub mod srv;
Loading

0 comments on commit 7eaf213

Please sign in to comment.