pub type Simstate = Simstate;Expand description
Originally defined in ardupilotmega::messages::simstate.
Aliased Type§
pub struct Simstate {
pub roll: f32,
pub pitch: f32,
pub yaw: f32,
pub xacc: f32,
pub yacc: f32,
pub zacc: f32,
pub xgyro: f32,
pub ygyro: f32,
pub zgyro: f32,
pub lat: i32,
pub lng: i32,
}Fields§
§roll: f32MAVLink field roll.
Roll angle.
pitch: f32MAVLink field pitch.
Pitch angle.
yaw: f32MAVLink field yaw.
Yaw angle.
xacc: f32MAVLink field xacc.
X acceleration.
yacc: f32MAVLink field yacc.
Y acceleration.
zacc: f32MAVLink field zacc.
Z acceleration.
xgyro: f32MAVLink field xgyro.
Angular speed around X axis.
ygyro: f32MAVLink field ygyro.
Angular speed around Y axis.
zgyro: f32MAVLink field zgyro.
Angular speed around Z axis.
lat: i32MAVLink field lat.
Latitude.
lng: i32MAVLink field lng.
Longitude.