github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/pythonarraytest/enum_autotune_axis.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 // Enable axes that will be tuned via autotuning. Used in MAV_CMD_DO_AUTOTUNE_ENABLE. 10 type AUTOTUNE_AXIS = common.AUTOTUNE_AXIS 11 12 const ( 13 // Flight stack tunes axis according to its default settings. 14 AUTOTUNE_AXIS_DEFAULT AUTOTUNE_AXIS = common.AUTOTUNE_AXIS_DEFAULT 15 // Autotune roll axis. 16 AUTOTUNE_AXIS_ROLL AUTOTUNE_AXIS = common.AUTOTUNE_AXIS_ROLL 17 // Autotune pitch axis. 18 AUTOTUNE_AXIS_PITCH AUTOTUNE_AXIS = common.AUTOTUNE_AXIS_PITCH 19 // Autotune yaw axis. 20 AUTOTUNE_AXIS_YAW AUTOTUNE_AXIS = common.AUTOTUNE_AXIS_YAW 21 )