Hi all, just study the MAVProxy and found there is a feature of waypoint
I can load a list of waypoints using command:
wp load filename.txt
But I'm wondering what is the format of the file?
I searched the MavLink wiki and found this page
it says:
Format
QGC WPL <VERSION>
<INDEX> <CURRENT WP> <COORD FRAME> <COMMAND> <PARAM1> <PARAM2> <PARAM3> <PARAM4> <PARAM5/X/LONGITUDE> <PARAM6/Y/LATITUDE> <PARAM7/Z/ALTITUDE> <AUTOCONTINUE>Example
QGC WPL 110
0 1 0 16 0.149999999999999994 0 0 0 8.54800000000000004 47.3759999999999977 550 1
1 0 0 16 0.149999999999999994 0 0 0 8.54800000000000004 47.3759999999999977 550 1
2 0 0 16 0.149999999999999994 0 0 0 8.54800000000000004 47.3759999999999977 550 1
I can understand index/x/y/z/autocontinue
But I'm still not understand what do
<CURRENT WP> <COORD FRAME> <COMMAND> <PARAM1> <PARAM2> <PARAM3> <PARAM4> mean.
Can anyone explain them to me?
Thanks.
Replies
"Use the source, Luke!"
see https://github.com/diydrones/ardupilot/tree/master/libraries/GCS_MA... it's in the header definitions what param1-7 mean
Thanks Bill.
I think it should be msg id16