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

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package ardupilotmega
     4  
     5  // Angle of Attack and Side Slip Angle.
     6  type MessageAoaSsa struct {
     7  	// Timestamp (since boot or Unix epoch).
     8  	TimeUsec uint64
     9  	// Angle of Attack.
    10  	Aoa float32 `mavname:"AOA"`
    11  	// Side Slip Angle.
    12  	Ssa float32 `mavname:"SSA"`
    13  }
    14  
    15  // GetID implements the message.Message interface.
    16  func (*MessageAoaSsa) GetID() uint32 {
    17  	return 11020
    18  }