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

fix: virtual traffic light/suppress launch #1536

Closed
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
93abafd
feat(elevation_map_loader): add error handling for std::runtime_error…
h-ohta Jul 14, 2023
f252dc4
feat(plannig_error_monitor): update error sharp angle threshold (#681)
sfukuta Aug 16, 2023
66f333e
fix(detection_area): search collision index only in lanelet (#695)
h-ohta Aug 25, 2023
3d6ee3a
fix(system_monitor): extend command line to display (backport #4553) …
h-ohta Aug 28, 2023
6e26a1f
fix(system_monitor): disable gpu_monitor (backport #770) (#774)
mergify[bot] Aug 28, 2023
c01ba62
fix(system_monitor): high-memory process are not provided in MEM orde…
h-ohta Aug 29, 2023
05a6073
feat(behavior_path_planner): resample output path (backport #1604) (#…
h-ohta Sep 19, 2023
1b107a0
ci: add dispatch-push-event workflow (#803)
KeisukeShima Sep 8, 2023
f675bc9
Merge pull request #873 from tier4/ci/backport-add-dispatch-push-event
KeisukeShima Sep 26, 2023
1b231f3
fix(autoware_auto_tf2): remove tf2 geometry function duplicated in tf…
h-ohta Sep 27, 2023
2199f69
fix(ntp_monitor): move chronyc command execution to a timer (backport…
h-ohta Sep 27, 2023
a7a49db
feat(ad_service_state_monitor): change configs name (#876)
asa-naki Sep 28, 2023
73cb811
feat(system_error_monitor): manual modules (#793)
asa-naki Sep 28, 2023
56027b6
feat(imu_corrector): add gyro_bias_validator (backport #4729) (#856)
asa-naki Sep 29, 2023
bd8b4c6
feat(system_error_monitor): add ignore_until_waiting_for_route module…
asa-naki Sep 29, 2023
1485bf7
feat(imu_corrector): add gyro bias log (#918)
asa-naki Oct 6, 2023
c80c986
fix(behavior_path): only apply spline interpolation for its output, n…
h-ohta Oct 10, 2023
ea62ea3
fix(detection_area): fix overline function (#930)
h-ohta Oct 13, 2023
84497a7
fix(behavior_path): fix base points vanishing and inconsistent lane_i…
h-ohta Oct 13, 2023
368e66f
fix: add error handling when path is invalid (#934)
h-ohta Oct 13, 2023
3c22be0
feat(system_error_monitor): add ignore hartbeat timeout in initializi…
asa-naki Oct 23, 2023
a2cbf8c
fix(route_handler): fix threshold for removing overlapping points (ba…
mergify[bot] Nov 22, 2023
861c01e
fix(system_monitor): fix program command line reading (backport #5191…
h-ohta Dec 13, 2023
65e903c
feat(obstacle_stop): upd obstacle hunting (#1068)
sfukuta Dec 19, 2023
751ad2b
fix(pre-commit): add flake8-ros (#1291)
sfukuta May 14, 2024
39fe090
fix(obstacle_avoidance_planner): add empty check (#1285)
sfukuta Jun 5, 2024
35e1dde
fix(virtual traffic light): suppress lauch (#1290)
yuki-takagi-66 Jun 7, 2024
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
Prev Previous commit
Next Next commit
feat(imu_corrector): add gyro bias log (#918)
add gyro_bias log

Signed-off-by: asa-naki <akihisa.nagata@tier4.jp>
asa-naki authored Oct 6, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 1485bf72c77e255f148bce1cf6a55bdd3cd0108f
5 changes: 5 additions & 0 deletions sensing/imu_corrector/src/gyro_bias_estimator.cpp
Original file line number Diff line number Diff line change
@@ -105,6 +105,11 @@ void GyroBiasEstimator::update_diagnostics(diagnostic_updater::DiagnosticStatusW
"Gyro bias may be incorrect. Please calibrate IMU and reflect the result in "
"imu_corrector. You may also use the output of gyro_bias_estimator.");
stat.summary(diagnostic_msgs::msg::DiagnosticStatus::WARN, "WARN");
RCLCPP_WARN(
get_logger(), "gyro_bias_x: %lf, gyro_bias_y: %lf, gyro_bias_z: %lf",
(gyro_bias_.value().x - angular_velocity_offset_x_),
(gyro_bias_.value().y - angular_velocity_offset_y_),
(gyro_bias_.value().z - angular_velocity_offset_z_));
}
}
}