github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/avssuas/enum_param_ack.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  // Result from PARAM_EXT_SET message (or a PARAM_SET within a transaction).
    10  type PARAM_ACK = common.PARAM_ACK
    11  
    12  const (
    13  	// Parameter value ACCEPTED and SET
    14  	PARAM_ACK_ACCEPTED PARAM_ACK = common.PARAM_ACK_ACCEPTED
    15  	// Parameter value UNKNOWN/UNSUPPORTED
    16  	PARAM_ACK_VALUE_UNSUPPORTED PARAM_ACK = common.PARAM_ACK_VALUE_UNSUPPORTED
    17  	// Parameter failed to set
    18  	PARAM_ACK_FAILED PARAM_ACK = common.PARAM_ACK_FAILED
    19  	// Parameter value received but not yet set/accepted. A subsequent PARAM_ACK_TRANSACTION or PARAM_EXT_ACK with the final result will follow once operation is completed. This is returned immediately for parameters that take longer to set, indicating that the the parameter was received and does not need to be resent.
    20  	PARAM_ACK_IN_PROGRESS PARAM_ACK = common.PARAM_ACK_IN_PROGRESS
    21  )