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

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package common
     4  
     5  // Data stream status information.
     6  type MessageDataStream struct {
     7  	// The ID of the requested data stream
     8  	StreamId uint8
     9  	// The message rate
    10  	MessageRate uint16
    11  	// 1 stream is enabled, 0 stream is stopped.
    12  	OnOff uint8
    13  }
    14  
    15  // GetID implements the message.Message interface.
    16  func (*MessageDataStream) GetID() uint32 {
    17  	return 67
    18  }