ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The RMW Implementation used when executing a ROS2 application is chosen according to the value of the following environment variable:
echo $RMW_IMPLEMENTATION
You can set different RMW in the following way:
export RMW_IMPLEMENTATION=rmw_fastrtps_cpp
export RMW_IMPLEMENTATION=rmw_opensplice_cpp
export RMW_IMPLEMENTATION=rmw_connext_cpp
2 | No.2 Revision |
The RMW Implementation used when executing a ROS2 application is chosen according to the value of the following environment variable:
echo $RMW_IMPLEMENTATION
You can set different RMW in the following way:
export RMW_IMPLEMENTATION=rmw_fastrtps_cpp
export RMW_IMPLEMENTATION=rmw_opensplice_cpp
export RMW_IMPLEMENTATION=rmw_connext_cpp
In any case, by default it will point to Fast-RTPS
DDS library (open source and always installed together with ROS2).