github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/ardupilotmega/message_ahrs3.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll 3 package ardupilotmega 4 5 // Status of third AHRS filter if available. This is for ANU research group (Ali and Sean). 6 type MessageAhrs3 struct { 7 // Roll angle. 8 Roll float32 9 // Pitch angle. 10 Pitch float32 11 // Yaw angle. 12 Yaw float32 13 // Altitude (MSL). 14 Altitude float32 15 // Latitude. 16 Lat int32 17 // Longitude. 18 Lng int32 19 // Test variable1. 20 V1 float32 21 // Test variable2. 22 V2 float32 23 // Test variable3. 24 V3 float32 25 // Test variable4. 26 V4 float32 27 } 28 29 // GetID implements the message.Message interface. 30 func (*MessageAhrs3) GetID() uint32 { 31 return 182 32 }