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

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package common
     4  
     5  // Request a data stream.
     6  type MessageRequestDataStream struct {
     7  	// The target requested to send the message stream.
     8  	TargetSystem uint8
     9  	// The target requested to send the message stream.
    10  	TargetComponent uint8
    11  	// The ID of the requested data stream
    12  	ReqStreamId uint8
    13  	// The requested message rate
    14  	ReqMessageRate uint16
    15  	// 1 to start sending, 0 to stop sending.
    16  	StartStop uint8
    17  }
    18  
    19  // GetID implements the message.Message interface.
    20  func (*MessageRequestDataStream) GetID() uint32 {
    21  	return 66
    22  }