Path: blob/master/Tools/ros2/ardupilot_sitl/launch/micro_ros_agent.launch.py
9785 views
# Copyright 2023 ArduPilot.org.1#2# This program is free software: you can redistribute it and/or modify3# it under the terms of the GNU General Public License as published by4# the Free Software Foundation, either version 3 of the License, or5# (at your option) any later version.6#7# This program is distributed in the hope that it will be useful,8# but WITHOUT ANY WARRANTY; without even the implied warranty of9# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the10# GNU General Public License for more details.11#12# You should have received a copy of the GNU General Public License13# along with this program. If not, see <https://www.gnu.org/licenses/>.1415"""16Launch the microROS DDS agent.1718Run with default arguments:1920ros2 launch ardupilot_sitl micro_ros_agent.launch.py21"""22from launch import LaunchDescription23from ardupilot_sitl.launch import MicroRosAgentLaunch242526def generate_launch_description() -> LaunchDescription:27"""Generate a launch description for the micro_ros_agent."""28return MicroRosAgentLaunch.generate_launch_description()293031