-
Notifications
You must be signed in to change notification settings - Fork 993
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
make Simple launch file #1747
make Simple launch file #1747
Conversation
Ryujiyasu
commented
May 17, 2022
- separate param file from launch folder
- delete ros launch files
- make simple launch file
@vooon |
|
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.
Please rebase PR.
<description>@brief Wind estimation plugin. | ||
@plugin wind_estimation</description> | ||
@plugin mavros/wind_estimation</description> |
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.
No! You should not do that! Each plugin is subnode to mavros::uas::UAS
, so if you start it with different name, you'll get different prefix.
@@ -4,138 +4,138 @@ import mavros_cog | |||
|
|||
mavros_cog.outl_plugins_xml('src/plugins', 'mavros_plugins') | |||
]]] --> | |||
<library path="mavros_plugins"> | |||
<library path="mavros/mavros_plugins"> |
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.
Actually, this breaks whole thing and nothing works 😆
So use just:
<library path="mavros_plugins">
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.
That file should not be changed at all.
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.
Confirmed, I successfully launched ros2 launch mavros node.launch.py
with unchanged mavros_plugins.xml so the changes for this file can be removed/not applied.
Tested with SITL ArduCopter V4.2.3-rc2
Replaced by #1834 |