-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added parametrisation of watchdog duration time
added parametrisation of topic for subscription name
- Loading branch information
1 parent
44a537f
commit 0615e30
Showing
3 changed files
with
43 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
<launch> | ||
<node pkg="cmd_vel_watchdog" type="cmd_vel_watchdog" respawn="true" name="cmd_vel_watchdog" output="screen"> | ||
|
||
<arg name="velocity_topic" default="cmd_vel"/> | ||
<node pkg="cmd_vel_watchdog" | ||
type="cmd_vel_watchdog" | ||
respawn="true" | ||
name="cmd_vel_watchdog" | ||
output="screen"> | ||
<remap from="cmd_vel" to="$(arg velocity_topic)"/> | ||
</node> | ||
<!--<remap from="cmd_vel" to="$(arg cmd_vel_topic)"/>--> | ||
<!--TODO add remapping--> | ||
<param name="watchdog_patience" value="10.0" type="double"/> | ||
</launch> | ||
<!--TODO parametrise node--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters