-
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 commentThe 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 |
||
<arg name="extra_gazebo_args" value="-s libgazebo_ros_force_system.so --ros-args -r gazebo:__ns:=/gazebo"/> | ||
</include> | ||
|
||
<include file="$(find-pkg-share uuv_assistants)/launch/publish_world_ned_frame.launch"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. Reinstated |
||
<arg name="set_timeout" default="false"/> | ||
<arg name="timeout" default="0.0"/> | ||
<arg name="use_sim_time" default="true"/> | ||
|
@@ -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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. Reverted |
||
<arg name="verbose" value="true"/> | ||
<!-- TODO Remove force_system in foxy, as it will be loaded by default --> | ||
<!-- Also investigate why /gazebo ns has a strong bad perf impact--> | ||
<arg name="extra_gazebo_args" value="-s libgazebo_ros_force_system.so --ros-args -r gazebo:__ns:=/gazebo"/> | ||
</include> | ||
|
||
<include file="$(find-pkg-share uuv_assistants)/launch/publish_world_ned_frame.launch"> | ||
|
@@ -38,6 +37,14 @@ | |
<param from="$(find-pkg-share uuv_gazebo_worlds)/config/ocean_waves.yaml"/> | ||
</node> | ||
|
||
<!-- <plugin name="gazebo_factory" filename="libgazebo_ros_factory.so"> --> | ||
<!-- NB: omitting <ros> element, the namespace is still correctly read, | ||
but is it an intended behaviour ?--> | ||
<!-- <ros> | ||
<namespace>/vehicle</namespace> | ||
</ros> --> | ||
<!-- </plugin> --> | ||
|
||
<group if="$(var set_timeout)"> | ||
<include file="$(find-pkg-share uuv_assistants)/launch/set_simulation_timer.launch"> | ||
<arg name="timeout" value="$(var timeout)"/> | ||
|
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