github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/all/enum_camera_feedback_flags.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll,dupl,gocritic 3 package all 4 5 import ( 6 "github.com/bluenviron/gomavlib/v2/pkg/dialects/ardupilotmega" 7 ) 8 9 type CAMERA_FEEDBACK_FLAGS = ardupilotmega.CAMERA_FEEDBACK_FLAGS 10 11 const ( 12 // Shooting photos, not video. 13 CAMERA_FEEDBACK_PHOTO CAMERA_FEEDBACK_FLAGS = ardupilotmega.CAMERA_FEEDBACK_PHOTO 14 // Shooting video, not stills. 15 CAMERA_FEEDBACK_VIDEO CAMERA_FEEDBACK_FLAGS = ardupilotmega.CAMERA_FEEDBACK_VIDEO 16 // Unable to achieve requested exposure (e.g. shutter speed too low). 17 CAMERA_FEEDBACK_BADEXPOSURE CAMERA_FEEDBACK_FLAGS = ardupilotmega.CAMERA_FEEDBACK_BADEXPOSURE 18 // Closed loop feedback from camera, we know for sure it has successfully taken a picture. 19 CAMERA_FEEDBACK_CLOSEDLOOP CAMERA_FEEDBACK_FLAGS = ardupilotmega.CAMERA_FEEDBACK_CLOSEDLOOP 20 // Open loop camera, an image trigger has been requested but we can't know for sure it has successfully taken a picture. 21 CAMERA_FEEDBACK_OPENLOOP CAMERA_FEEDBACK_FLAGS = ardupilotmega.CAMERA_FEEDBACK_OPENLOOP 22 )