Skip to content

Commit 64dde7e

Browse files
committed
Fix timer frequency to 20 Hz
1 parent 72b7b48 commit 64dde7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pcl_merger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ namespace merger
4747
initPointCloudPtrList();
4848

4949
// subscriber and publisher declarations
50-
timer_pub = this->create_wall_timer(50ms, std::bind(&OusterPCLMerger::mergedPCLPubCallback, this));
50+
timer_pub = this->create_wall_timer(50ms, std::bind(&OusterPCLMerger::mergedPCLPubCallback, this)); // TODO: this is fix 20 hz, make it param https://github.com/jkk-research/lexus_bringup/issues/15
5151
initSubscribers();
5252
this->merged_pcl_pub = this->create_publisher<sensor_msgs::msg::PointCloud2>(pub_topic_name, 1);
5353
}

0 commit comments

Comments
 (0)