Created
October 26, 2016 06:01
-
-
Save expntly/b88a9dc4092865125bd095b2b146bdf5 to your computer and use it in GitHub Desktop.
precland zero
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mavlink_message_t message; | |
mavlink_landing_target_t ds; | |
ds.time_usec = 0; | |
ds.target_num = 0; | |
ds.frame = MAV_FRAME_BODY_NED; | |
ds.angle_x = 0.0; | |
ds.angle_y = 0.0; | |
ds.distance = 0; | |
ds.size_x = 0; | |
ds.size_y = 0; | |
mavlink_msg_landing_target_encode(1, MAV_COMP_ID_PATHPLANNER, &message, &ds); | |
send_mavlink_msg(message); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment