github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/ardupilotmega/message_osd_param_show_config_reply.go (about)

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package ardupilotmega
     4  
     5  // Read configured OSD parameter reply.
     6  type MessageOsdParamShowConfigReply struct {
     7  	// Request ID - copied from request.
     8  	RequestId uint32
     9  	// Config error type.
    10  	Result OSD_PARAM_CONFIG_ERROR `mavenum:"uint8"`
    11  	// Onboard parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string
    12  	ParamId string `mavlen:"16"`
    13  	// Config type.
    14  	ConfigType OSD_PARAM_CONFIG_TYPE `mavenum:"uint8"`
    15  	// OSD parameter minimum value.
    16  	MinValue float32
    17  	// OSD parameter maximum value.
    18  	MaxValue float32
    19  	// OSD parameter increment.
    20  	Increment float32
    21  }
    22  
    23  // GetID implements the message.Message interface.
    24  func (*MessageOsdParamShowConfigReply) GetID() uint32 {
    25  	return 11036
    26  }