github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/pythonarraytest/enum_mav_odid_status.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  type MAV_ODID_STATUS = common.MAV_ODID_STATUS
    10  
    11  const (
    12  	// The status of the (UA) Unmanned Aircraft is undefined.
    13  	MAV_ODID_STATUS_UNDECLARED MAV_ODID_STATUS = common.MAV_ODID_STATUS_UNDECLARED
    14  	// The UA is on the ground.
    15  	MAV_ODID_STATUS_GROUND MAV_ODID_STATUS = common.MAV_ODID_STATUS_GROUND
    16  	// The UA is in the air.
    17  	MAV_ODID_STATUS_AIRBORNE MAV_ODID_STATUS = common.MAV_ODID_STATUS_AIRBORNE
    18  	// The UA is having an emergency.
    19  	MAV_ODID_STATUS_EMERGENCY MAV_ODID_STATUS = common.MAV_ODID_STATUS_EMERGENCY
    20  	// The remote ID system is failing or unreliable in some way.
    21  	MAV_ODID_STATUS_REMOTE_ID_SYSTEM_FAILURE MAV_ODID_STATUS = common.MAV_ODID_STATUS_REMOTE_ID_SYSTEM_FAILURE
    22  )