Skip to content

ctu-mrs/mrs_uav_autostart

Repository files navigation

MRS UAV Autostart

General description

The ROS package for automating takeoff routine for UAVs. The Autostart checks the availability of essential parts of the system and validity of received data. Once all modules and data are available, it waits for the UAV to be armed and switched to offboard mode. Then, after a safety timeout, it initiates the takeoff procedure. During the safety timeout period, takeoff can be aborted by switching the mode back to manual or by disarming the UAV.

The Autostart performs following checks:

  • availability of UAV Manager,
  • availability of Control Manager,
  • availability of Estimation Manager,
  • connection to HW Api,
  • validity of current position of the UAV (takeoff outside safety area is not allowed),
  • limit on current maximum estimated speed (UAV should be static before takeoff),
  • the UAV height (if available) needs to suggest that the UAV is on the ground,
  • the gyro rates (if available) needs to be near zero,
  • availability of data on additional user-specified topics.

Configuration and use

Custom topics check

The Autostart node allows the user to specify additional topics that have to be available before initiating takeoff procedure. If this check is enabled and the latest message received on one of the specified topics is older than timeout, the takeoff of the UAV will not be allowed.

preflight_check:
  topic_check:
    enabled: true
    timeout: 5.0 # [s]
    topics: [
      "estimation_manager/uav_state",
      "/mission_controller/diagnostics"
    ]

Dependencies