forked from ros-industrial/abb_robot_driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathegm_hardware_interface.launch
15 lines (13 loc) · 1003 Bytes
/
egm_hardware_interface.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0"?>
<launch>
<arg name="base_config_file" default="$(find abb_egm_hardware_interface)/config/base_configs_example.yaml" doc="General configurations"/>
<arg name="egm_config_file" default="$(find abb_egm_hardware_interface)/config/egm_single_mech_unit_example.yaml" doc="EGM related configurations"/>
<arg name="output" default="log" doc="Specifies where the stdout/stderr streams are directed (i.e. 'log' or 'screen')"/>
<node pkg="abb_egm_hardware_interface" type="egm_hardware_interface" name="egm_hardware_interface" output="$(arg output)">
<rosparam file="$(arg base_config_file)" command="load"/>
<rosparam file="$(arg egm_config_file)" command="load"/>
</node>
<node pkg="abb_egm_hardware_interface" type="egm_controller_stopper" name="egm_controller_stopper" output="$(arg output)">
<rosparam file="$(arg base_config_file)" command="load"/>
</node>
</launch>