forked from tier4/autoware.universe
-
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.
feat(topic_state_monitor): support transform topic check (tier4#1586)
Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
- Loading branch information
1 parent
68d9520
commit 5487f9f
Showing
5 changed files
with
77 additions
and
15 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
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
26 changes: 26 additions & 0 deletions
26
system/topic_state_monitor/launch/topic_state_monitor_tf.launch.xml
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<launch> | ||
<arg name="node_name_suffix" description="node name suffix"/> | ||
<arg name="topic" description="transform topic name"/> | ||
<arg name="frame_id" description="parent frame id"/> | ||
<arg name="child_frame_id" description="child frame id"/> | ||
<arg name="transient_local" default="false" description="add transient_local option to subscriber or not"/> | ||
<arg name="best_effort" default="false" description="add best_effort option to subscriber or not"/> | ||
<arg name="diag_name" description="diag name"/> | ||
<arg name="warn_rate" description="warn rate[Hz]"/> | ||
<arg name="error_rate" description="error rate[Hz]"/> | ||
<arg name="timeout" description="timeout period[s]"/> | ||
<arg name="window_size" default="10" description="window size"/> | ||
|
||
<node pkg="topic_state_monitor" exec="topic_state_monitor_node" name="topic_state_monitor_$(var node_name_suffix)" output="screen"> | ||
<param name="topic" value="$(var topic)"/> | ||
<param name="frame_id" value="$(var frame_id)"/> | ||
<param name="child_frame_id" value="$(var child_frame_id)"/> | ||
<param name="transient_local" value="$(var transient_local)"/> | ||
<param name="best_effort" value="$(var best_effort)"/> | ||
<param name="diag_name" value="$(var diag_name)"/> | ||
<param name="warn_rate" value="$(var warn_rate)"/> | ||
<param name="error_rate" value="$(var error_rate)"/> | ||
<param name="timeout" value="$(var timeout)"/> | ||
<param name="window_size" value="$(var window_size)"/> | ||
</node> | ||
</launch> |
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