CBRK_FLIGHTTERM: Does not affect takeoff failure safety detection (#14972)

* CBRK_FLIGHTTERM: Clarify does not affect takeoff failure safety detection

* FD_FAIL_P FD_FAIL_R - clarify apply on takeoff

* Improve param text

Co-authored-by: Mathieu Bresciani <brescianimathieu@gmail.com>
This commit is contained in:
Hamish Willee
2020-05-28 16:30:48 +10:00
committed by GitHub
parent 05856c1029
commit 14853539e3
2 changed files with 12 additions and 9 deletions
@@ -45,10 +45,11 @@
/**
* FailureDetector Max Roll
*
* Maximum roll angle before FailureDetector triggers the attitude_failure flag
* If flight termination is enabled (@CBRK_FLIGHTTERM set to 0), the autopilot
* will terminate the flight and set all the outputs to their failsafe value
* as soon as the attitude_failure flag is set.
* Maximum roll angle before FailureDetector triggers the attitude_failure flag.
* The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0),
* which sets outputs to their failsafe values.
* On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM),
* which disarms motors but does not set outputs to failsafe values.
*
* Setting this parameter to 0 disables the check
*
@@ -62,10 +63,11 @@ PARAM_DEFINE_INT32(FD_FAIL_R, 60);
/**
* FailureDetector Max Pitch
*
* Maximum pitch angle before FailureDetector triggers the attitude_failure flag
* If flight termination is enabled (@CBRK_FLIGHTTERM set to 0), the autopilot
* will terminate the flight and set all the outputs to their failsafe value
* as soon as the attitude_failure flag is set.
* Maximum pitch angle before FailureDetector triggers the attitude_failure flag.
* The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0),
* which sets outputs to their failsafe values.
* On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM),
* which disarms motors but does not set outputs to failsafe values.
*
* Setting this parameter to 0 disables the check
*