Skip to content

Commit

Permalink
Revert "feat(imu_corrector): change subscription reliability to best_…
Browse files Browse the repository at this point in the history
…effort"

This reverts commit 8fbe203.
  • Loading branch information
h-ohta committed Jan 5, 2024
1 parent e219c8e commit dc96471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sensing/imu_corrector/src/imu_corrector_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ ImuCorrector::ImuCorrector()
accel_stddev_imu_link_ = declare_parameter<double>("acceleration_stddev", 10000.0);

imu_sub_ = create_subscription<sensor_msgs::msg::Imu>(
"input", rclcpp::SensorDataQoS().keep_last(1), std::bind(&ImuCorrector::callbackImu, this, std::placeholders::_1));
"input", rclcpp::QoS{1}, std::bind(&ImuCorrector::callbackImu, this, std::placeholders::_1));

imu_pub_ = create_publisher<sensor_msgs::msg::Imu>("output", rclcpp::QoS{10});
}
Expand Down

0 comments on commit dc96471

Please sign in to comment.