mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-02 20:28:37 +08:00
commander params: Further clarify termination vs kill
This commit is contained in:
@@ -735,6 +735,8 @@ PARAM_DEFINE_INT32(COM_MOT_TEST_EN, 1);
|
|||||||
/**
|
/**
|
||||||
* Timeout value for disarming when kill switch is engaged
|
* Timeout value for disarming when kill switch is engaged
|
||||||
*
|
*
|
||||||
|
* Use RC_MAP_KILL_SW to map a kill switch.
|
||||||
|
*
|
||||||
* @group Commander
|
* @group Commander
|
||||||
* @unit s
|
* @unit s
|
||||||
* @min 0.0
|
* @min 0.0
|
||||||
|
|||||||
@@ -1416,6 +1416,10 @@ PARAM_DEFINE_INT32(RC_MAP_OFFB_SW, 0);
|
|||||||
/**
|
/**
|
||||||
* Emergency Kill switch channel
|
* Emergency Kill switch channel
|
||||||
*
|
*
|
||||||
|
* This channel immediately sets all outputs to their disarmed values, parachutes are NOT deployed.
|
||||||
|
* Unlike termination this can be undone. Quickly flipping the switch back restores control.
|
||||||
|
* System auto-disarms after COM_KILL_DISARM seconds, preflight checks and re-arming are then required.
|
||||||
|
*
|
||||||
* @min 0
|
* @min 0
|
||||||
* @max 18
|
* @max 18
|
||||||
* @group Radio Switches
|
* @group Radio Switches
|
||||||
@@ -1442,13 +1446,13 @@ PARAM_DEFINE_INT32(RC_MAP_OFFB_SW, 0);
|
|||||||
PARAM_DEFINE_INT32(RC_MAP_KILL_SW, 0);
|
PARAM_DEFINE_INT32(RC_MAP_KILL_SW, 0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Termination switch channel.
|
* Termination switch channel
|
||||||
*
|
*
|
||||||
* Use this channel to trigger flight termination. When flight termination is activated,
|
* This channel triggers irreversible flight termination:
|
||||||
* PX4 disables all controllers and sets all PWM outputs to their failsafe values.
|
* All outputs are disabled and set to their failsafe values (disarmed by default)
|
||||||
|
* and MAVLink parachutes are triggered.
|
||||||
*
|
*
|
||||||
* Note: Flight termination is irreversible—once triggered, it cannot be undone.
|
* Unlike a kill switch, this cannot be undone until system reboot. Use with caution.
|
||||||
* This is unlike a kill switch, which can be toggled back. Use with caution.
|
|
||||||
*
|
*
|
||||||
* @min 0
|
* @min 0
|
||||||
* @max 18
|
* @max 18
|
||||||
|
|||||||
Reference in New Issue
Block a user