Skip to content

Commit

Permalink
format files
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksander Szymański <bitterisland6@gmail.com>
  • Loading branch information
Bitterisland6 committed Sep 26, 2024
1 parent 7fe1822 commit 789b917
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions imu_complementary_filter/src/complementary_filter_ros.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ ComplementaryFilterROS::ComplementaryFilterROS()

auto qos = rclcpp::QoS(rclcpp::KeepLast(10), rmw_qos_profile_default);

imu_subscriber_.reset(new ImuSubscriber(this, "imu/data_raw",
qos, sub_opts));
imu_subscriber_.reset(
new ImuSubscriber(this, "imu/data_raw", qos, sub_opts));

// Register magnetic data subscriber.
if (use_mag_)
{
mag_subscriber_.reset(new MagSubscriber(
this, "imu/mag", qos, sub_opts));
mag_subscriber_.reset(
new MagSubscriber(this, "imu/mag", qos, sub_opts));

sync_.reset(new Synchronizer(SyncPolicy(queue_size), *imu_subscriber_,
*mag_subscriber_));
Expand Down

0 comments on commit 789b917

Please sign in to comment.