github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/storm32/message_param_value_array.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll 3 package storm32 4 5 // Parameter multi param value container. 6 type MessageParamValueArray struct { 7 // Total number of onboard parameters. 8 ParamCount uint16 9 // Index of the first onboard parameter in this array. 10 ParamIndexFirst uint16 11 // Number of onboard parameters in this array. 12 ParamArrayLen uint8 13 // Flags. 14 Flags uint16 15 // Parameters buffer. Contains a series of variable length parameter blocks, one per parameter, with format as specifed elsewhere. 16 PacketBuf [248]uint8 17 } 18 19 // GetID implements the message.Message interface. 20 func (*MessageParamValueArray) GetID() uint32 { 21 return 60041 22 }