Path: blob/master/Tools/ros2/ardupilot_sitl/launch/mavproxy.launch.py
9720 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 a non-interactive instance of MAVProxy.1718Run with default arguments:1920ros2 launch ardupilot_sitl mavproxy.launch.py2122Show launch arguments:2324ros2 launch ardupilot_sitl mavproxy.launch.py --show-args25"""26from launch import LaunchDescription27from ardupilot_sitl.launch import MAVProxyLaunch282930def generate_launch_description() -> LaunchDescription:31"""Generate a launch description for MAVProxy."""32return MAVProxyLaunch.generate_launch_description()333435