github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/avssuas/enum_storage_usage_flag.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 usage for a particular storage (see STORAGE_INFORMATION.storage_usage and MAV_CMD_SET_STORAGE_USAGE). 10 type STORAGE_USAGE_FLAG = common.STORAGE_USAGE_FLAG 11 12 const ( 13 // Always set to 1 (indicates STORAGE_INFORMATION.storage_usage is supported). 14 STORAGE_USAGE_FLAG_SET STORAGE_USAGE_FLAG = common.STORAGE_USAGE_FLAG_SET 15 // Storage for saving photos. 16 STORAGE_USAGE_FLAG_PHOTO STORAGE_USAGE_FLAG = common.STORAGE_USAGE_FLAG_PHOTO 17 // Storage for saving videos. 18 STORAGE_USAGE_FLAG_VIDEO STORAGE_USAGE_FLAG = common.STORAGE_USAGE_FLAG_VIDEO 19 // Storage for saving logs. 20 STORAGE_USAGE_FLAG_LOGS STORAGE_USAGE_FLAG = common.STORAGE_USAGE_FLAG_LOGS 21 )