github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/pythonarraytest/enum_motor_test_order.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  // Sequence that motors are tested when using MAV_CMD_DO_MOTOR_TEST.
    10  type MOTOR_TEST_ORDER = common.MOTOR_TEST_ORDER
    11  
    12  const (
    13  	// Default autopilot motor test method.
    14  	MOTOR_TEST_ORDER_DEFAULT MOTOR_TEST_ORDER = common.MOTOR_TEST_ORDER_DEFAULT
    15  	// Motor numbers are specified as their index in a predefined vehicle-specific sequence.
    16  	MOTOR_TEST_ORDER_SEQUENCE MOTOR_TEST_ORDER = common.MOTOR_TEST_ORDER_SEQUENCE
    17  	// Motor numbers are specified as the output as labeled on the board.
    18  	MOTOR_TEST_ORDER_BOARD MOTOR_TEST_ORDER = common.MOTOR_TEST_ORDER_BOARD
    19  )