@@ -47,14 +47,14 @@ def generate_launch_description():
4747 description = 'Start robot in Gazebo simulation.' ,
4848 ),
4949 DeclareLaunchArgument (
50- 'use_fake_hardware ' ,
50+ 'use_mock_hardware ' ,
5151 default_value = 'false' ,
52- description = 'Use fake hardware mirroring command.' ,
52+ description = 'Use mock hardware mirroring command.' ,
5353 ),
5454 DeclareLaunchArgument (
55- 'fake_sensor_commands ' ,
55+ 'mock_sensor_commands ' ,
5656 default_value = 'false' ,
57- description = 'Enable fake sensor commands.' ,
57+ description = 'Enable mock sensor commands.' ,
5858 ),
5959 DeclareLaunchArgument (
6060 'init_position' ,
@@ -77,8 +77,8 @@ def generate_launch_description():
7777 start_rviz = LaunchConfiguration ('start_rviz' )
7878 prefix = LaunchConfiguration ('prefix' )
7979 use_sim = LaunchConfiguration ('use_sim' )
80- use_fake_hardware = LaunchConfiguration ('use_fake_hardware ' )
81- fake_sensor_commands = LaunchConfiguration ('fake_sensor_commands ' )
80+ use_mock_hardware = LaunchConfiguration ('use_mock_hardware ' )
81+ mock_sensor_commands = LaunchConfiguration ('mock_sensor_commands ' )
8282 init_position = LaunchConfiguration ('init_position' )
8383 ros2_control_type = LaunchConfiguration ('ros2_control_type' )
8484 init_position_file = LaunchConfiguration ('init_position_file' )
@@ -100,11 +100,11 @@ def generate_launch_description():
100100 'use_sim:=' ,
101101 use_sim ,
102102 ' ' ,
103- 'use_fake_hardware :=' ,
104- use_fake_hardware ,
103+ 'use_mock_hardware :=' ,
104+ use_mock_hardware ,
105105 ' ' ,
106- 'fake_sensor_commands :=' ,
107- fake_sensor_commands ,
106+ 'mock_sensor_commands :=' ,
107+ mock_sensor_commands ,
108108 ' ' ,
109109 'ros2_control_type:=' ,
110110 ros2_control_type ,
0 commit comments