Skip to content

Commit

Permalink
Decrease planning scene update rate
Browse files Browse the repository at this point in the history
  • Loading branch information
sjahr committed Mar 24, 2023
1 parent 68a854e commit c7ad8ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ bool LocalPlannerComponent::initialize()

// Start state and scene monitors
// Set frequency faster than local planner frequency (If we don't call this it would default to 100Hz)
planning_scene_monitor_->setStateUpdateFrequency(2.0 * config_.local_planning_frequency);
planning_scene_monitor_->setStateUpdateFrequency(1.1 * config_.local_planning_frequency);
planning_scene_monitor_->startSceneMonitor(config_.monitored_planning_scene_topic);
planning_scene_monitor_->startWorldGeometryMonitor(config_.collision_object_topic);
planning_scene_monitor_->startStateMonitor(config_.joint_states_topic, "/attached_collision_object");
Expand Down

0 comments on commit c7ad8ca

Please sign in to comment.