px4-firmware/msg/vehicle_attitude_setpoint.msg

31 lines
1.2 KiB
Plaintext
Raw Normal View History

uint64 timestamp # time since system start (microseconds)
int8 LANDING_GEAR_UP = 1 # landing gear up
int8 LANDING_GEAR_DOWN = -1 # landing gear down
float32 roll_body # body angle in NED frame (can be NaN for FW)
float32 pitch_body # body angle in NED frame (can be NaN for FW)
float32 yaw_body # body angle in NED frame (can be NaN for FW)
2018-08-07 10:42:32 -03:00
float32 yaw_sp_move_rate # rad/s (commanded by user)
# For quaternion-based attitude control
2018-08-07 10:42:32 -03:00
float32[4] q_d # Desired quaternion for quaternion control
bool q_d_valid # Set to true if quaternion vector is valid
2018-08-07 10:42:32 -03:00
float32 thrust # Thrust in Newton the power system should generate
2018-08-07 10:42:32 -03:00
bool roll_reset_integral # Reset roll integral part (navigation logic change)
bool pitch_reset_integral # Reset pitch integral part (navigation logic change)
bool yaw_reset_integral # Reset yaw integral part (navigation logic change)
2018-08-07 10:42:32 -03:00
bool fw_control_yaw # control heading with rudder (used for auto takeoff on runway)
2015-10-13 17:47:26 -03:00
2018-08-07 10:42:32 -03:00
uint8 apply_flaps # flap config specifier
uint8 FLAPS_OFF = 0 # no flaps
uint8 FLAPS_LAND = 1 # landing config flaps
uint8 FLAPS_TAKEOFF = 2 # take-off config flaps
2016-04-25 18:36:13 -03:00
float32 landing_gear
# TOPICS vehicle_attitude_setpoint mc_virtual_attitude_setpoint fw_virtual_attitude_setpoint