-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed missing imports. #2
Fixed missing imports. #2
Conversation
Fixed error with teleop re gain vector length
uuv_assistants/src/message_to_tf.cpp
Outdated
out = Vector3(msgIn.x, msgIn.y, msgIn.z); | ||
} | ||
} | ||
// namespace tf2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check if this section is needed or if it can be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fromMsg function causes a compilation error. Ros humble defines the same function in /opt/ros/humble/include/tf2_geometry_msgs/tf2_geometry_msgs/tf2_geometry_msgs.hpp.
From this, I believe it is correct to remove it, as the functionality is not lost, and keeping it in fact causes errors. I shall delete that function
@@ -26,7 +26,6 @@ Underwater environment with the ODE physics engine configured for vehicles using | |||
<arg name="debug" value="false"/> | |||
<arg name="verbose" value="true"/> | |||
<!-- TODO Remove force_system in foxy, as it will be loaded by default --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will remove the corresponding comment from the other launch files as well
<launch> | ||
<arg name="gui" default="true"/> | ||
<arg name="paused" default="false"/> | ||
<arg name="debug" default="false"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check how this could be reinstated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reinstated
@@ -20,11 +20,10 @@ | |||
<arg name="use_sim_time" value="$(var use_sim_time)"/> | |||
<arg name="gui" value="$(var gui)"/> | |||
<arg name="headless" value="false"/> | |||
<arg name="debug" value="$(var debug)"/> | |||
<arg name="debug" value="false"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to revert this change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted
Fixed error with teleop re gain vector length by creating custom function to convert list of str to int.
Also removed imports and functions which were causing issues