MavCmdInfoCommon.json 2.58 KB
Newer Older
1
{
2 3
    "comment":  "ArduPilot, Any Vehicle",

4 5 6
    "version": 1,

    "mavCmdInfo": [
Don Gagne's avatar
Don Gagne committed
7 8 9 10 11
        {
            "id":           16,
            "comment":      "MAV_CMD_NAV_WAYPOINT",
            "paramRemove":  "2"
        },
Don Gagne's avatar
Don Gagne committed
12 13
        {
            "id":                   84,
14
            "comment":              "MAV_CMD_NAV_VTOL_TAKEOFF",
Don Gagne's avatar
Don Gagne committed
15 16 17 18 19 20
            "specifiesCoordinate":  true,
            "friendlyEdit":         true,
            "category":             "VTOL"
        },
        {
            "id":                   85,
21
            "comment":              "MAV_CMD_NAV_VTOL_LAND",
Don Gagne's avatar
Don Gagne committed
22 23 24
            "description":          "Land using VTOL mode.",
            "specifiesCoordinate":  true,
            "friendlyEdit":         true,
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
            "category":             "VTOL"
        },
        {
            "id":           176,
            "comment":      "MAV_CMD_DO_SET_MODE",
            "paramRemove":  "2,3"
        },
        {
            "id":           178,
            "comment":      "MAV_CMD_DO_CHANGE_SPEED",
            "paramRemove":  "4"
        },
        {
            "id":           181,
            "comment":      "MAV_CMD_DO_SET_RELAY",
            "param2": {
41
                "label":            "Setting",
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
                "enumStrings":      "On,Off",
                "enumValues":       "1,0",
                "default":          1
            }
        },
        {
            "id":                   201,
            "comment":              "MAV_CMD_DO_SET_ROI",
            "paramRemove":          "2,3"
        },
        {
            "id":           205,
            "comment":      "MAV_CMD_DO_MOUNT_CONTROL",
            "paramRemove":  "7",
            "param1": {
57
                "label":            "Pitch",
58 59 60 61 62
                "default":          0,
                "units":            "deg",
                "decimalPlaces":    2
            },
            "param2": {
63
                "label":            "Roll",
64 65 66 67 68
                "default":          0,
                "units":            "deg",
                "decimalPlaces":    2
            },
            "param3": {
69
                "label":            "Yaw",
70 71
                "default":          0,
                "units":            "deg",
72 73
                "decimalPlaces":    2
            }
74 75 76 77 78
        },
        {
            "id":                   207,
            "comment":              "MAV_CMD_DO_FENCE_ENABLE",
            "param1": {
79
                "label":            "Enable",
80 81 82 83
                "enumStrings":      "Enable,Disable",
                "enumValues":       "1,0",
                "default":          1
            }
84
        }
85 86
    ]
}