Added MAV_CMD YAW parsing

This commit is contained in:
Jason Short 2011-11-08 23:44:14 -08:00
parent 78668ce6f1
commit ee8ab89f6e
1 changed files with 7 additions and 0 deletions

View File

@ -1014,6 +1014,13 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
param1 = tell_command.p1; param1 = tell_command.p1;
break; break;
case MAV_CMD_CONDITION_YAW:
param3 = tell_command.p1;
param1 = tell_command.alt;
param2 = tell_command.lat;
param4 = tell_command.lng;
break;
case MAV_CMD_NAV_TAKEOFF: case MAV_CMD_NAV_TAKEOFF:
param1 = 0; param1 = 0;
break; break;