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

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package common
     4  
     5  // Send a debug value. The index is used to discriminate between values. These values show up in the plot of QGroundControl as DEBUG N.
     6  type MessageDebug struct {
     7  	// Timestamp (time since system boot).
     8  	TimeBootMs uint32
     9  	// index of debug variable
    10  	Ind uint8
    11  	// DEBUG value
    12  	Value float32
    13  }
    14  
    15  // GetID implements the message.Message interface.
    16  func (*MessageDebug) GetID() uint32 {
    17  	return 254
    18  }