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

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package common
     4  
     5  // Regular broadcast for the current latest event sequence number for a component. This is used to check for dropped events.
     6  type MessageCurrentEventSequence struct {
     7  	// Sequence number.
     8  	Sequence uint16
     9  	// Flag bitset.
    10  	Flags MAV_EVENT_CURRENT_SEQUENCE_FLAGS `mavenum:"uint8"`
    11  }
    12  
    13  // GetID implements the message.Message interface.
    14  func (*MessageCurrentEventSequence) GetID() uint32 {
    15  	return 411
    16  }