# 낙하산

PX4 can be configured to trigger a parachute during flight termination.

The parachute can be connected to a free PWM output or via MAVLink.

Note

During flight termination PX4 turns off all controllers and sets all PWM outputs to their failsafe values (including those connected to PWM outputs) and triggers any connected MAVLink parachutes.

You can therefore use this feature to activate multiple complementary safety devices connected to different outputs. 자세한 내용은 비행 종료 설정을 참고하십시오.

# 낙하산 사용법

Below are a few considerations when using parachutes:

  • A parachute does not guarantee that the vehicle will not be destroyed or cause harm! You must always fly with safety in mind.
  • Parachutes require careful usage to be effective. For example, they must be folded correctly.
  • 낙하산에는 최소 유효 고도가 있습니다.
  • 기체가 뒤집힌 상태에서 낙하산이 작동할 수 있습니다. This will increase the time required to slow, and may result in the drone collapsing the parachute.
  • The parachute will only deploy if the flight controller is powered and PX4 is running properly (unless it is triggered independently of PX4). It will not deploy if something causes the flight stack to crash.

# 낙하산 설정

Flight termination (and hence parachute deployment) may be triggered by safety checks such as RC Loss, geofence violation, and so on, from attitude triggers and other failure detector checks, or by a command from a ground station. During flight termination PX4 sets PWM outputs to their "failsafe" values (failsafe values turn off motors, but may be used to turn on/trigger the parachute). If a MAVLink parachute is connected and healthy, a command will be sent to activate it.

Parachute setup therefore involves:

  • Configuring flight termination as the appropriate action for those safety and failure cases where the parachute should be deployed.
  • Configure PX4 to deploy the parachute during flight termination (set PWM output levels appropriately or send the MAVLink parachute deploy command).
  • Configure PX4 output levels to disable motors on failsafe. This is the default so usually nothing is required (for servos it's the center value).

# Enable Flight Termination

To enable flight termination:

  • Set Safety action to Flight termination for checks where you want the parachute to trigger.
  • Set Failure Detector pitch angles, roll angles and time triggers for crash/flip detection, and disable the failure/IMU timeout circuit breaker (i.e. set CBRK_FLIGHTTERM=0).

Note

You can also configure an external Automatic Trigger System (ATS) for failure detection.

# Parachute Output Bus Setup

If the parachute is triggered by a PWM or CAN output then it must first be connected to an unused output (for the purpose of this example, below we assume AUX PWM output 6 is used). You will probably also need to separately power the parachute servo. This is might be done by connecting a 5V BEC to the Flight Controller servo rail, and powering the parachute from it.

You then need to ensure that the parachute pin will be set to a value that will trigger the parachute when a failsafe occurs.

In PX4 v1.13 (by default) and earlier:

  • Set PWM_AUX_DIS6 to PWM value for parachute "OFF" position (usually between 700 and 1000ms)
  • Set PWM_AUX_DIS6 to PWM value for parachute "ON" position (usually between 1800 and 2200ms)

Note

The above values would be suitable for this spring-loaded launcher from Fruity Chutes (opens new window). You will need to use values appropriate for your parachute.

If dynamic control allocation is enabled (SYS_CTRL_ALLOC=1):

  • Open Actuators in QGroundControl

  • Assign the Parachute function to the AUX6 output:

    Actuators - Parachute (QGC)

  • Set appropriate PWM values. The output is automatically set to the maximum PWM value when a failsafe is triggered.

PX4 will trigger a connected and healthy parachute on failsafe by sending the command MAV_CMD_DO_PARACHUTE (opens new window) with the PARACHUTE_RELEASE (opens new window) action.

MAVLink parachute support is enabled by setting the parameter COM_PARACHUTE=1. PX4 will then indicate parachute status using the MAV_SYS_STATUS_RECOVERY_SYSTEM (opens new window) bit in the SYS_STATUS (opens new window) extended onboard control sensors fields:

  • SYS_STATUS.onboard_control_sensors_present_extended: MAVLink parachute present (based on heartbeat detection).
  • SYS_STATUS.onboard_control_sensors_enabled_extended: ?
  • SYS_STATUS.onboard_control_sensors_health_extended: MAVLink parachute healthy (based on heartbeat detection).

A MAVLink parachute is required to emit a HEARTBEAT (opens new window) with HEARTBEAT.type of MAV_TYPE_PARACHUTE (opens new window).

# 낙하산 시험

WARNING

For the first test, try on the bench, without the props and with an unloaded parachute device!

Note

There is no way to recover from a Termination state! You will need to reboot/power cycle the vehicle for subsequent tests.

The parachute will trigger during flight termination.

The easiest way to test a (real) parachute is to enable the failure detector attitude trigger and tip the vehicle over.

You can also simulate a parachute/flight termination in Gazebo: Development > Simulation > Gazebo > Simulated Parachute/Flight Termination.