Skip to content

Commit

Permalink
update nodes names (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
KmakD authored Jul 24, 2023
1 parent a042380 commit d98207d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion panther_bringup/launch/ekf.launch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<launch>

<node pkg="robot_localization" type="ekf_localization_node" name="panther_ekf" clear_params="true">
<node pkg="robot_localization" type="ekf_localization_node" name="ekf_node" clear_params="true">
<rosparam command="load" file="$(find panther_bringup)/config/ekf_config.yaml" />
</node>

Expand Down
2 changes: 1 addition & 1 deletion panther_driver/launch/driver.launch
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<arg name="panther_common_config_file" />
<arg name="wheel_config_file" />

<node pkg="panther_driver" type="driver_node.py" name="panther_driver" output="screen" required="true">
<node pkg="panther_driver" type="driver_node.py" name="driver_node" output="screen" required="true">
<rosparam command="load" file="$(arg panther_common_config_file)" />
<rosparam command="load" file="$(arg wheel_config_file)" />
<param name="use_pdo" value="false" unless="$(eval panther_version >= 1.2)" />
Expand Down
4 changes: 2 additions & 2 deletions panther_power_control/launch/power_control.launch
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<arg name="panther_version" />

<group unless="$(eval panther_version >= 1.2)">
<node pkg="panther_power_control" type="relays_node.py" name="power_control" required="true" output="screen" />
<node pkg="panther_power_control" type="relays_node.py" name="power_control_node" required="true" output="screen" />
</group>

<group if="$(eval panther_version >= 1.2)">
<node pkg="panther_power_control" type="power_board_node.py" name="power_control" required="true" output="screen" />
<node pkg="panther_power_control" type="power_board_node.py" name="power_control_node" required="true" output="screen" />
</group>

</launch>

0 comments on commit d98207d

Please sign in to comment.