mROS-base / mros2

agent-less and lightweight communication library compatible with rclcpp for embedded devices
Apache License 2.0
162 stars 15 forks source link

mros2 node name cannot be observed from ROS 2 host #44

Open takasehideki opened 1 year ago

takasehideki commented 1 year ago

We cannot observe the name of mros2 nodes from ROS 2 host, e.g., by ros2 node list.

We think this is due to the functionality limitation of embeddedRTPS, which is employed as the RTPS layer for mROS 2. While topic names in ROS2 are realized using standard DDS functions, node names seem to be implemented as a unique feature in ROS2. Officially supported DDS for ROS 2 (e.g., FastDDS) seems to work with RCL and RMW to achieve node names. We think it is unrealistic to allow embeddedRTPS to handle node names as a feature, because it is just an RTPS stack used as the standalone software for the embedded devices. Therefore, we should realize this feature in the mROS 2 hierarchy to be able to handle node names because mROS 2 corresponds to RCL and RMW layers.

takasehideki commented 1 year ago

added as the limitation on README 6532fc1

takasehideki commented 1 year ago

The followings is the code space on ROS 2 implementation that may help us (I hope,,,;(