You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/dialects/all/enum_mav_cmd.go
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -487,6 +487,10 @@ const (
487
487
// This command only defines the flight path. Speed should be set independently (use e.g. MAV_CMD_DO_CHANGE_SPEED).
488
488
// Yaw and other degrees of freedom are not specified, and will be flight-stack specific (on vehicles where they can be controlled independent of the heading).
489
489
MAV_CMD_DO_FIGURE_EIGHTMAV_CMD=35
490
+
// Circular arc path waypoint.
491
+
// This defines the end/exit point and angle (param1) of an arc path from the previous waypoint. A position is required before this command to define the start of the arc (e.g. current position, a MAV_CMD_NAV_WAYPOINT, or a MAV_CMD_NAV_ARC_WAYPOINT).
492
+
// The resulting path is a circular arc in the NE frame, with the difference in height being defined by the difference in waypoint altitudes.
493
+
MAV_CMD_NAV_ARC_WAYPOINTMAV_CMD=36
490
494
// Request a target system to start an upgrade of one (or all) of its components.
491
495
// For example, the command might be sent to a companion computer to cause it to upgrade a connected flight controller.
492
496
// The system doing the upgrade will report progress using the normal command protocol sequence for a long running operation.
@@ -775,6 +779,7 @@ var value_to_label_MAV_CMD = map[MAV_CMD]string{
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
17
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
17
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
17
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
17
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
Copy file name to clipboardExpand all lines: pkg/dialects/common/enum_mav_result.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ const (
15
15
MAV_RESULT_ACCEPTEDMAV_RESULT=0
16
16
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
17
17
MAV_RESULT_TEMPORARILY_REJECTEDMAV_RESULT=1
18
-
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
18
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
17
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
Copy file name to clipboardExpand all lines: pkg/dialects/development/enum_mav_cmd.go
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -416,6 +416,10 @@ const (
416
416
// This command only defines the flight path. Speed should be set independently (use e.g. MAV_CMD_DO_CHANGE_SPEED).
417
417
// Yaw and other degrees of freedom are not specified, and will be flight-stack specific (on vehicles where they can be controlled independent of the heading).
418
418
MAV_CMD_DO_FIGURE_EIGHTMAV_CMD=35
419
+
// Circular arc path waypoint.
420
+
// This defines the end/exit point and angle (param1) of an arc path from the previous waypoint. A position is required before this command to define the start of the arc (e.g. current position, a MAV_CMD_NAV_WAYPOINT, or a MAV_CMD_NAV_ARC_WAYPOINT).
421
+
// The resulting path is a circular arc in the NE frame, with the difference in height being defined by the difference in waypoint altitudes.
422
+
MAV_CMD_NAV_ARC_WAYPOINTMAV_CMD=36
419
423
// Request a target system to start an upgrade of one (or all) of its components.
420
424
// For example, the command might be sent to a companion computer to cause it to upgrade a connected flight controller.
421
425
// The system doing the upgrade will report progress using the normal command protocol sequence for a long running operation.
@@ -646,6 +650,7 @@ var value_to_label_MAV_CMD = map[MAV_CMD]string{
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
17
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
// Command is invalid (is supported but has invalid parameters). Retrying same command and parameters will not work.
17
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
0 commit comments