mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-03-24 02:24:09 +08:00
* FWModeManager: add option to set flag for disabling actuators during launch Signed-off-by: Silvan <silvan@auterion.com> * Allocation: add option to each control surface to be locked for launch Signed-off-by: Silvan <silvan@auterion.com> * FW rate control: reset integral while control surfaces are locked Signed-off-by: Silvan <silvan@auterion.com> --------- Signed-off-by: Silvan <silvan@auterion.com> Co-authored-by: mahima-yoga <mahima@auterion.com>
12 lines
605 B
Plaintext
12 lines
605 B
Plaintext
# Status of the launch detection state machine (fixed-wing only)
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
uint8 STATE_WAITING_FOR_LAUNCH = 0 # waiting for launch
|
|
uint8 STATE_LAUNCH_DETECTED_DISABLED_MOTOR = 1 # launch detected, but keep motor(s) disabled (e.g. because it can't spin freely while on catapult)
|
|
uint8 STATE_FLYING = 2 # launch detected, use normal takeoff/flying configuration
|
|
|
|
uint8 launch_detection_state
|
|
|
|
bool selected_control_surface_disarmed # [-] flag indicating whether selected actuators should kept disarmed (have to be configured in control allocation)
|