How to launch master_sync_fkie from the launch file?
The Multimaster FKIE package provides this node master_sync
that sets topics to synchronize among multiple ROS masters. When I launch it from the terminal, I use command
rosrun master_sync_fkie master_sync _ignore_nodes:=[/gazebo*,/gazebo_gui*,/panda*]
so I'm passing this list to it. Now if I want to launch it from launch file, I would need to launch the node like this
<node name="my_master_sync_fkie" pkg="master_sync_fkie" type="master_sync" ... />
and then somehow put those list arguments to it. How can I do that?