update mavlink xml

Signed-off-by: Matt <matt@matthewgong.com>
This commit is contained in:
Matt
2018-04-29 09:48:09 +08:00
parent fe1bed229c
commit 5b488ca7bd
43 changed files with 3316 additions and 1150 deletions
+10 -10
View File
@@ -13,10 +13,10 @@ typedef struct __mavlink_mission_item_t {
float y; /*< PARAM6 / y position: global: longitude*/
float z; /*< PARAM7 / z position: global: altitude (relative or absolute, depending on frame.*/
uint16_t seq; /*< Sequence*/
uint16_t command; /*< The scheduled action for the MISSION. see MAV_CMD in common.xml MAVLink specs*/
uint16_t command; /*< The scheduled action for the waypoint, as defined by MAV_CMD enum*/
uint8_t target_system; /*< System ID*/
uint8_t target_component; /*< Component ID*/
uint8_t frame; /*< The coordinate system of the MISSION. see MAV_FRAME in mavlink_types.h*/
uint8_t frame; /*< The coordinate system of the waypoint, as defined by MAV_FRAME enum*/
uint8_t current; /*< false:0, true:1*/
uint8_t autocontinue; /*< autocontinue to next wp*/
uint8_t mission_type; /*< Mission type, see MAV_MISSION_TYPE*/
@@ -86,8 +86,8 @@ typedef struct __mavlink_mission_item_t {
* @param target_system System ID
* @param target_component Component ID
* @param seq Sequence
* @param frame The coordinate system of the MISSION. see MAV_FRAME in mavlink_types.h
* @param command The scheduled action for the MISSION. see MAV_CMD in common.xml MAVLink specs
* @param frame The coordinate system of the waypoint, as defined by MAV_FRAME enum
* @param command The scheduled action for the waypoint, as defined by MAV_CMD enum
* @param current false:0, true:1
* @param autocontinue autocontinue to next wp
* @param param1 PARAM1, see MAV_CMD enum
@@ -156,8 +156,8 @@ static inline uint16_t mavlink_msg_mission_item_pack(uint8_t system_id, uint8_t
* @param target_system System ID
* @param target_component Component ID
* @param seq Sequence
* @param frame The coordinate system of the MISSION. see MAV_FRAME in mavlink_types.h
* @param command The scheduled action for the MISSION. see MAV_CMD in common.xml MAVLink specs
* @param frame The coordinate system of the waypoint, as defined by MAV_FRAME enum
* @param command The scheduled action for the waypoint, as defined by MAV_CMD enum
* @param current false:0, true:1
* @param autocontinue autocontinue to next wp
* @param param1 PARAM1, see MAV_CMD enum
@@ -252,8 +252,8 @@ static inline uint16_t mavlink_msg_mission_item_encode_chan(uint8_t system_id, u
* @param target_system System ID
* @param target_component Component ID
* @param seq Sequence
* @param frame The coordinate system of the MISSION. see MAV_FRAME in mavlink_types.h
* @param command The scheduled action for the MISSION. see MAV_CMD in common.xml MAVLink specs
* @param frame The coordinate system of the waypoint, as defined by MAV_FRAME enum
* @param command The scheduled action for the waypoint, as defined by MAV_CMD enum
* @param current false:0, true:1
* @param autocontinue autocontinue to next wp
* @param param1 PARAM1, see MAV_CMD enum
@@ -414,7 +414,7 @@ static inline uint16_t mavlink_msg_mission_item_get_seq(const mavlink_message_t*
/**
* @brief Get field frame from mission_item message
*
* @return The coordinate system of the MISSION. see MAV_FRAME in mavlink_types.h
* @return The coordinate system of the waypoint, as defined by MAV_FRAME enum
*/
static inline uint8_t mavlink_msg_mission_item_get_frame(const mavlink_message_t* msg)
{
@@ -424,7 +424,7 @@ static inline uint8_t mavlink_msg_mission_item_get_frame(const mavlink_message_t
/**
* @brief Get field command from mission_item message
*
* @return The scheduled action for the MISSION. see MAV_CMD in common.xml MAVLink specs
* @return The scheduled action for the waypoint, as defined by MAV_CMD enum
*/
static inline uint16_t mavlink_msg_mission_item_get_command(const mavlink_message_t* msg)
{