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
We are working on a solution which utilizes micro-ROS. Currently we do not want to use any publishers, subsribers etc. but only messages serialization and deserialization.
The idea is to serialize ROS 2 message e.g. std_msgs/msg/Float32 on the board, send it (but not using ROS 2 or micro-ROS) and deserialize on the other side using rclcpp::Serialization<T>.
I explored the codebase and found function which is responsible for publishing the data (rmw_publish).
There is the logic for something which resemble serialization but I could not figure out how to extract it and use as standalone function.
The text was updated successfully, but these errors were encountered:
Type support de/serialization in micro-ROS and ROS 2 is a kind of complex procedure that involves code generation. If you are familiar with it, take a look at the XRCE type support.
Hi,
We are working on a solution which utilizes micro-ROS. Currently we do not want to use any publishers, subsribers etc. but only messages serialization and deserialization.
The idea is to serialize ROS 2 message e.g.
std_msgs/msg/Float32
on the board, send it (but not using ROS 2 or micro-ROS) and deserialize on the other side usingrclcpp::Serialization<T>
.I explored the codebase and found function which is responsible for publishing the data (rmw_publish).
There is the logic for something which resemble serialization but I could not figure out how to extract it and use as standalone function.
The text was updated successfully, but these errors were encountered: