Skip to content

Commit

Permalink
removed printout
Browse files Browse the repository at this point in the history
  • Loading branch information
oscjoha committed Mar 1, 2023
1 parent 3fb753c commit d981726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oxts_ins/src/conversions/wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ geometry_msgs::msg::TwistStamped velocity_vehicle(const NComRxC *nrx,
auto veh_v = tf2::Vector3(nrx->mIsoVoX, nrx->mIsoVoY, nrx->mIsoVoZ);
auto veh_w = tf2::Vector3(nrx->mIsoWoX, nrx->mIsoWoY, nrx->mIsoWoZ);

std::cout << "veh_w = " << veh_w.getX() << ", " << veh_w.getY() << ", " << veh_w.getZ() << std::endl;
// std::cout << "veh_w = " << veh_w.getX() << ", " << veh_w.getY() << ", " << veh_w.getZ() << std::endl;
msg.twist.linear.x = veh_v.getX();
msg.twist.linear.y = veh_v.getY();
msg.twist.linear.z = veh_v.getZ();
Expand Down

0 comments on commit d981726

Please sign in to comment.