Skip to content
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

feat: add gyro_bias_estimator to diagnostics_aggregator #192

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions aip_x1_launch/config/diagnostic_aggregator/sensor_kit.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,17 @@
# path: time_sync
# contains: [": livox_time_sync"]
# timeout: 3.0

imu:
type: diagnostic_aggregator/AnalyzerGroup
path: imu
analyzers:
bias_monitoring:
type: diagnostic_aggregator/AnalyzerGroup
path: bias_monitoring
analyzers:
gyro_bias_validator:
type: diagnostic_aggregator/GenericAnalyzer
path: gyro_bias_validator
contains: [": gyro_bias_estimator"]
timeout: 1.0
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@
livox_motor_status: default
livox_service_life: default
livox_temperature: default

# imu
gyro_bias_estimator: default
13 changes: 13 additions & 0 deletions aip_x2_launch/config/diagnostic_aggregator/sensor_kit.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,19 @@
gnss:
type: diagnostic_aggregator/GenericAnalyzer
path: gnss
startswith: ["gnss"]

Check warning on line 85 in aip_x2_launch/config/diagnostic_aggregator/sensor_kit.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (startswith)
contains: [": gnss"]
timeout: 5.0
imu:
type: diagnostic_aggregator/AnalyzerGroup
path: imu
analyzers:
bias_monitoring:
type: diagnostic_aggregator/AnalyzerGroup
path: bias_monitoring
analyzers:
gyro_bias_validator:
type: diagnostic_aggregator/GenericAnalyzer
path: gyro_bias_validator
contains: [": gyro_bias_estimator"]
timeout: 1.0
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@
concat_status: default

sensing_topic_status: default

# imu
gyro_bias_estimator: default
14 changes: 14 additions & 0 deletions aip_xx1_launch/config/diagnostic_aggregator/sensor_kit.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,17 @@
path: fix_topic_status
contains: [": fix topic status"]
timeout: 3.0

imu:
type: diagnostic_aggregator/AnalyzerGroup
path: imu
analyzers:
bias_monitoring:
type: diagnostic_aggregator/AnalyzerGroup
path: bias_monitoring
analyzers:
gyro_bias_validator:
type: diagnostic_aggregator/GenericAnalyzer
path: gyro_bias_validator
contains: [": gyro_bias_estimator"]
timeout: 1.0
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@
velodyne_connection: default
velodyne_temperature: default
velodyne_rpm: default

# imu
gyro_bias_estimator: default
Loading