github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/storm32/enum_limits_state.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll,dupl,gocritic 3 package storm32 4 5 import ( 6 "github.com/bluenviron/gomavlib/v2/pkg/dialects/ardupilotmega" 7 ) 8 9 type LIMITS_STATE = ardupilotmega.LIMITS_STATE 10 11 const ( 12 // Pre-initialization. 13 LIMITS_INIT LIMITS_STATE = ardupilotmega.LIMITS_INIT 14 // Disabled. 15 LIMITS_DISABLED LIMITS_STATE = ardupilotmega.LIMITS_DISABLED 16 // Checking limits. 17 LIMITS_ENABLED LIMITS_STATE = ardupilotmega.LIMITS_ENABLED 18 // A limit has been breached. 19 LIMITS_TRIGGERED LIMITS_STATE = ardupilotmega.LIMITS_TRIGGERED 20 // Taking action e.g. Return/RTL. 21 LIMITS_RECOVERING LIMITS_STATE = ardupilotmega.LIMITS_RECOVERING 22 // We're no longer in breach of a limit. 23 LIMITS_RECOVERED LIMITS_STATE = ardupilotmega.LIMITS_RECOVERED 24 )