Open
Description
I was testing out the condition_yaw
function in the docs and while the command would send a MAVLink message, and the drone (SITL) would respond with success, the drone would not yaw (as indicated by the vehicle.attitude.yaw
field). However, if I precede the condition_yaw
call with a send_global_velocity(0, 0, 0)
call (again, taken from the docs), the drone will rotate successfully.
I am executing these commands in GUIDED mode. As far as I can tell, there doesn't seem to be a mention of this requirement in the docs (I guessed at it since the yaw examples included send_global_velocity
).