Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_collision_manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
dogs_project
iri_collision_manager
Commits
96be74ff
Commit
96be74ff
authored
3 years ago
by
Alejandro Lopez Gestoso
Browse files
Options
Downloads
Patches
Plain Diff
Added general diagnostic agregator
parent
c0e6cbee
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-0
1 addition, 0 deletions
README.md
config/collision_analyzers.yaml
+20
-0
20 additions, 0 deletions
config/collision_analyzers.yaml
launch/collisions.launch
+12
-2
12 additions, 2 deletions
launch/collisions.launch
with
33 additions
and
2 deletions
README.md
+
1
−
0
View file @
96be74ff
...
...
@@ -198,6 +198,7 @@ This node provides the following launch files:
-
*launch_prefix*
: Ros node launch launch-prefix's parameter.
-
*dr*
: Boolean to launch rqt_reconfigure.
-
*diagnostics*
: Flag to launch diagnostics agregator.
-
*diagnostics_agregator_config_file*
: Diagnostic agregator config file.
-
*sim_time*
: Boolean to set
*/use_sim_time*
parameter.
-
*imu_driver*
: Boolean to launch the IMU driver.
...
...
This diff is collapsed.
Click to expand it.
config/collision_analyzers.yaml
0 → 100644
+
20
−
0
View file @
96be74ff
pub_rate
:
1.0
analyzers
:
collision_detection
:
type
:
diagnostic_aggregator/GenericAnalyzer
path
:
collision_detection
contains
:
[
'
imu'
,
'
collision'
,
'
odom'
]
ICP_check
:
type
:
diagnostic_aggregator/GenericAnalyzer
path
:
icp_check
contains
:
[
'
odom'
,
'
laser'
]
bias_filter
:
type
:
diagnostic_aggregator/GenericAnalyzer
path
:
bias_filter
contains
:
[
'
bias'
]
This diff is collapsed.
Click to expand it.
launch/collisions.launch
+
12
−
2
View file @
96be74ff
...
...
@@ -8,6 +8,7 @@
<param
name=
"/use_sim_time"
value=
"$(arg sim_time)"
/>
<arg
name=
"imu_driver"
default=
"true"
/>
<arg
name=
"diagnostics"
default=
"true"
/>
<arg
name=
"diagnostics_agregator_config_file"
default=
"$(find iri_collision_manager)/config/collision_analyzers.yaml"
/>
<!-- IMU driver parameters -->
<arg
name=
"imu_config_file"
default=
"$(find iri_collision_manager)/config/bno055.yaml"
/>
...
...
@@ -47,7 +48,7 @@
<arg
name=
"imu_topic_out"
value=
"$(arg imu_filtered_topic)"
/>
<arg
name=
"odom_topic"
value=
"$(arg odom_topic)"
/>
<arg
name=
"update_bias_ns"
value=
"$(arg update_bias_ns)"
/>
<arg
name=
"diagnostics"
value=
"
$(arg diagnostics)
"
/>
<arg
name=
"diagnostics"
value=
"
false
"
/>
</include>
<include
file=
"$(find iri_laser_scan_icp)/launch/node.launch"
>
...
...
@@ -68,7 +69,7 @@
<arg
name=
"rear_laser_topic"
value=
"$(arg rear_laser_topic)"
/>
<arg
name=
"icp_service_name"
value=
"$(arg icp_service_name)"
/>
<arg
name=
"odom_topic"
value=
"$(arg odom_topic)"
/>
<arg
name=
"diagnostics"
value=
"
$(arg diagnostics)
"
/>
<arg
name=
"diagnostics"
value=
"
false
"
/>
</include>
...
...
@@ -79,4 +80,13 @@
args=
"iri_collision_manager"
>
</node>
<node
pkg=
"diagnostic_aggregator"
type=
"aggregator_node"
name=
"collision_diagnostic_aggregator"
if =
"$(arg diagnostics)"
>
<!-- Load the file you made above -->
<rosparam
command=
"load"
file=
"$(find iri_collision_manager)/config/collision_analyzers.yaml"
/>
</node>
</launch>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment