Skip to content
Snippets Groups Projects
Commit 8b3ea27b authored by stmoon's avatar stmoon Committed by Lorenz Meier
Browse files

correct coding style

parent eec1ead2
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ BlockLocalPositionEstimator::BlockLocalPositionEstimator() :
// print fusion settings to console
printf("[lpe] fuse gps: %d, flow: %d, vis_pos: %d, "
"vis_yaw: %d, land: %d, pub_agl_z: %d, flow_gyro: %d, "
"baro: %d, landing_target: %d, mocap: %d, lidar: %d, sonar: %d\n",
"baro: %d, landing_target: %d, mocap: %d, lidar: %d, sonar: %d\n",
(_fusion.get() & FUSE_GPS) != 0,
(_fusion.get() & FUSE_FLOW) != 0,
(_fusion.get() & FUSE_VIS_POS) != 0,
......@@ -189,11 +189,11 @@ BlockLocalPositionEstimator::BlockLocalPositionEstimator() :
(_fusion.get() & FUSE_LAND) != 0,
(_fusion.get() & FUSE_PUB_AGL_Z) != 0,
(_fusion.get() & FUSE_FLOW_GYRO_COMP) != 0,
(_fusion.get() & FUSE_BARO) != 0,
(_fusion.get() & FUSE_LAND_TARGET) != 0,
(_fusion.get() & FUSE_MOCAP) != 0,
(_fusion.get() & FUSE_LIDAR) != 0,
(_fusion.get() & FUSE_SONAR) != 0);
(_fusion.get() & FUSE_BARO) != 0,
(_fusion.get() & FUSE_LAND_TARGET) != 0,
(_fusion.get() & FUSE_MOCAP) != 0,
(_fusion.get() & FUSE_LIDAR) != 0,
(_fusion.get() & FUSE_SONAR) != 0);
}
BlockLocalPositionEstimator::~BlockLocalPositionEstimator()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment