-
Notifications
You must be signed in to change notification settings - Fork 173
Change fake_sensor_commands->mock_sensor_commands #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: humble
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
<xacro:macro name="ur_ros2_control" params=" | ||
name | ||
use_fake_hardware:=false fake_sensor_commands:=false | ||
use_fake_hardware:=false mock_sensor_commands:=false | ||
sim_gazebo:=false | ||
sim_ignition:=false | ||
headless_mode:=false | ||
|
@@ -33,7 +33,7 @@ | |
</xacro:if> | ||
<xacro:if value="${use_fake_hardware}"> | ||
<plugin>mock_components/GenericSystem</plugin> | ||
<param name="fake_sensor_commands">${fake_sensor_commands}</param> | ||
<param name="mock_sensor_commands">${mock_sensor_commands}</param> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's definitively a change we can make. Though |
||
<param name="state_following_offset">0.0</param> | ||
<param name="calculate_dynamics">true</param> | ||
</xacro:if> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ | |
|
||
<!-- Simulation parameters --> | ||
<xacro:arg name="use_fake_hardware" default="false" /> | ||
<xacro:arg name="fake_sensor_commands" default="false" /> | ||
<xacro:arg name="mock_sensor_commands" default="false" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. public facing, so let's netter not change it. |
||
<xacro:arg name="sim_gazebo" default="false" /> | ||
<xacro:arg name="sim_ignition" default="false" /> | ||
<xacro:arg name="simulation_controllers" default="" /> | ||
|
@@ -99,7 +99,7 @@ | |
safety_pos_margin="$(arg safety_pos_margin)" | ||
safety_k_position="$(arg safety_k_position)" | ||
use_fake_hardware="$(arg use_fake_hardware)" | ||
fake_sensor_commands="$(arg fake_sensor_commands)" | ||
mock_sensor_commands="$(arg mock_sensor_commands)" | ||
sim_gazebo="$(arg sim_gazebo)" | ||
sim_ignition="$(arg sim_ignition)" | ||
headless_mode="$(arg headless_mode)" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,7 @@ | |
safety_pos_margin:=0.15 | ||
safety_k_position:=20 | ||
use_fake_hardware:=false | ||
fake_sensor_commands:=false | ||
mock_sensor_commands:=false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. public facing, so let's netter not change it. |
||
sim_gazebo:=false | ||
sim_ignition:=false | ||
headless_mode:=false | ||
|
@@ -113,7 +113,7 @@ | |
name="${name}" | ||
use_fake_hardware="${use_fake_hardware}" | ||
initial_positions="${initial_positions}" | ||
fake_sensor_commands="${fake_sensor_commands}" | ||
mock_sensor_commands="${mock_sensor_commands}" | ||
headless_mode="${headless_mode}" | ||
sim_gazebo="${sim_gazebo}" | ||
sim_ignition="${sim_ignition}" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would rather not change the public-facing parameters inside a running distribution.