github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/avssuas/enum_storage_status.go (about)

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll,dupl,gocritic
     3  package avssuas
     4  
     5  import (
     6  	"github.com/bluenviron/gomavlib/v2/pkg/dialects/common"
     7  )
     8  
     9  // Flags to indicate the status of camera storage.
    10  type STORAGE_STATUS = common.STORAGE_STATUS
    11  
    12  const (
    13  	// Storage is missing (no microSD card loaded for example.)
    14  	STORAGE_STATUS_EMPTY STORAGE_STATUS = common.STORAGE_STATUS_EMPTY
    15  	// Storage present but unformatted.
    16  	STORAGE_STATUS_UNFORMATTED STORAGE_STATUS = common.STORAGE_STATUS_UNFORMATTED
    17  	// Storage present and ready.
    18  	STORAGE_STATUS_READY STORAGE_STATUS = common.STORAGE_STATUS_READY
    19  	// Camera does not supply storage status information. Capacity information in STORAGE_INFORMATION fields will be ignored.
    20  	STORAGE_STATUS_NOT_SUPPORTED STORAGE_STATUS = common.STORAGE_STATUS_NOT_SUPPORTED
    21  )