github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/pythonarraytest/enum_parachute_action.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll,dupl,gocritic 3 package pythonarraytest 4 5 import ( 6 "github.com/bluenviron/gomavlib/v2/pkg/dialects/common" 7 ) 8 9 // Parachute actions. Trigger release and enable/disable auto-release. 10 type PARACHUTE_ACTION = common.PARACHUTE_ACTION 11 12 const ( 13 // Disable auto-release of parachute (i.e. release triggered by crash detectors). 14 PARACHUTE_DISABLE PARACHUTE_ACTION = common.PARACHUTE_DISABLE 15 // Enable auto-release of parachute. 16 PARACHUTE_ENABLE PARACHUTE_ACTION = common.PARACHUTE_ENABLE 17 // Release parachute and kill motors. 18 PARACHUTE_RELEASE PARACHUTE_ACTION = common.PARACHUTE_RELEASE 19 )