mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
* attitude and rate setpoint message: use 3D array for thrust demand * FixedWingAttitudeControl: rework airspeed scaling * move airspeed and scaling calculation into separate method * if vtol in hover and airspeed disabled use minimum airspeed instead of trim airspeed
10 lines
503 B
Plaintext
10 lines
503 B
Plaintext
uint64 timestamp # time since system start (microseconds)
|
|
|
|
float32 roll # body angular rates in NED frame
|
|
float32 pitch # body angular rates in NED frame
|
|
float32 yaw # body angular rates in NED frame
|
|
|
|
# For clarification: For multicopters thrust_body[0] and thrust[1] are usually 0 and thrust[2] is the negative throttle demand.
|
|
# For fixed wings thrust_x is the throttle demand and thrust_y, thrust_z will usually be zero.
|
|
float32[3] thrust_body # Normalized thrust command in body NED frame [-1,1]
|