命令行获取ros的launch文件arg标签下doc备注内容

本文介绍了如何在ROS(RobotOperatingSystem)的launch文件中使用`arg`标签定义参数,并通过`--ros-args`命令行选项获取参数的文档注释。着重展示了test.launch文件中的参数配置和命令行使用方法。
摘要由CSDN通过智能技术生成

举例,有一个roslaunch文件test.launch如下:

<launch>
  <arg name="project" default="" doc="The project name."/>
  <arg name="config1" default="1" doc="The first configuration file."/>
  <arg name="config2" default="hello" doc="The second configuration file."/>
  <arg name="config3" default="3.0" doc="The third configuration file."/>

  <node name="test_node"
        pkg="test_node"
        type="test_node"
        args="$(arg config1) $(arg config2) $(arg config3)"
        output="screen"/>
</launch>

在arg标签下的每个参数都做了备注,写在doc中。如果想在命令行得到这些备注信息,可以通过–ros-args获取:

roslaunch test_node test.launch --ros-args 

返回的结果:
在这里插入图片描述
参考资料:
http://wiki.ros.org/roslaunch/Commandline%20Tools

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值