You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In rosbag2, receiving topic messages of unknown types is achieved through type rclcpp::SerializedMessage, which is not effective in rust through type std_msgs::msg::ByteMultiArray. I hope to add support for type rclcpp::SerializedMessage, so that after specifying a topic, I can receive messages of any unknown type.
Hi all,
In rosbag2, receiving topic messages of unknown types is achieved through type
rclcpp::SerializedMessage
, which is not effective in rust through typestd_msgs::msg::ByteMultiArray
. I hope to add support for typerclcpp::SerializedMessage
, so that after specifying a topic, I can receive messages of any unknown type.example code:
then publish:
ros2 topic pub /odom std_msgs/String "{data: aabbcc}"
and then the node cannot received the message
The text was updated successfully, but these errors were encountered: