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

Add ros parameter for bond timeout #473

Merged
merged 2 commits into from
Feb 17, 2025
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
2 changes: 2 additions & 0 deletions beluga_amcl/src/amcl_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,9 @@ void AmclNode::map_callback(nav_msgs::msg::OccupancyGrid::SharedPtr map) {

if (!particle_filter_) {
try {
RCLCPP_INFO(get_logger(), "Initializing particle filter instance");
particle_filter_ = make_particle_filter(std::move(map));
RCLCPP_INFO(get_logger(), "Particle filter initialization completed");
} catch (const std::invalid_argument& error) {
RCLCPP_ERROR(get_logger(), "Could not initialize particle filter: %s", error.what());
return;
Expand Down
33 changes: 30 additions & 3 deletions beluga_amcl/src/ros2_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,12 @@ BaseAMCLNode::BaseAMCLNode(
this->declare_parameter("autostart_delay", 0.0, descriptor);
}

{
auto descriptor = rcl_interfaces::msg::ParameterDescriptor();
descriptor.description = "Heartbeat timeout value for the bond connection.";
this->declare_parameter("bond_timeout", 4.0, descriptor);
}

common_callback_group_ = create_callback_group(rclcpp::CallbackGroupType::MutuallyExclusive);
common_subscription_options_ = rclcpp::SubscriptionOptions{};
common_subscription_options_.callback_group = common_callback_group_;
Expand Down Expand Up @@ -451,25 +457,45 @@ rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn BaseAM
particle_cloud_pub_->on_activate();
particle_markers_pub_->on_activate();
pose_pub_->on_activate();

{
initial_pose_sub_ = create_subscription<geometry_msgs::msg::PoseWithCovarianceStamped>(
get_parameter("initial_pose_topic").as_string(), rclcpp::SystemDefaultsQoS(),
std::bind(&BaseAMCLNode::initial_pose_callback, this, std::placeholders::_1), common_subscription_options_);
RCLCPP_INFO(get_logger(), "Subscribed to initial_pose_topic: %s", initial_pose_sub_->get_topic_name());
}

{
using namespace std::chrono_literals;
// TODO(alon): create a parameter for the timer rate?
timer_ = create_wall_timer(200ms, std::bind(&BaseAMCLNode::periodic_timer_callback, this), common_callback_group_);
}

{
bond_ = std::make_unique<bond::Bond>("bond", get_name(), shared_from_this());
auto on_bond_formed_callback = [this]() {
RCLCPP_INFO(get_logger(), "The bond connection to the lifecycle manager is now fully formed");
};
auto on_bond_broken_callback = [this]() {
RCLCPP_ERROR(get_logger(), "The bond connection to the lifecycle manager has been broken");
};
bond_ = std::make_unique<bond::Bond>(
"bond", get_name(), shared_from_this(), on_bond_broken_callback, on_bond_formed_callback);
bond_->setHeartbeatPeriod(0.10);
bond_->setHeartbeatTimeout(4.0);
const auto heartbeat_timeout_value = get_parameter("bond_timeout").as_double();
// We don't want to shorten the default connection timeout, but we want to be able to
// make it longer because it can fail while building the likelihood map for large maps
// just like the heartbeat timeout does
const auto connect_timeout_value =
std::max(heartbeat_timeout_value, static_cast<double>(bond::msg::Constants::DEFAULT_CONNECT_TIMEOUT));
bond_->setConnectTimeout(connect_timeout_value);
bond_->setHeartbeatTimeout(heartbeat_timeout_value);
bond_->start();
RCLCPP_INFO(get_logger(), "Created bond (%s) to lifecycle manager", get_name());
RCLCPP_INFO(
get_logger(),
"The bond (%s) connection to the lifecycle manager has been started (heartbeat timeout: %.2lf seconds)",
get_name(), heartbeat_timeout_value);
}

{
tf_buffer_ = std::make_unique<tf2_ros::Buffer>(get_clock());
tf_buffer_->setCreateTimerInterface(
Expand All @@ -479,6 +505,7 @@ rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn BaseAM
*tf_buffer_, this,
false); // avoid using dedicated tf thread
}

do_activate(state);
return CallbackReturn::SUCCESS;
}
Expand Down
Loading