Skip to content

Commit

Permalink
(automatic) update dialects to rev https://github.com/mavlink/mavlink…
Browse files Browse the repository at this point in the history
  • Loading branch information
gomavlib-bot committed Nov 29, 2023
1 parent a22c32b commit 2af1509
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions pkg/dialects/all/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/ardupilotmega/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/asluav/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/avssuas/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/common/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = 5
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = 6
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = 7
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = 8
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = 9
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/cubepilot/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/development/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/matrixpilot/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/paparazzi/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/pythonarraytest/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/storm32/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/ualberta/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down
4 changes: 2 additions & 2 deletions pkg/dialects/uavionix/enum_mav_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const (
MAV_RESULT_IN_PROGRESS MAV_RESULT = common.MAV_RESULT_IN_PROGRESS
// Command has been cancelled (as a result of receiving a COMMAND_CANCEL message).
MAV_RESULT_CANCELLED MAV_RESULT = common.MAV_RESULT_CANCELLED
// Command is valid, but it is only accepted when sent as a COMMAND_LONG (as it has float values for params 5 and 6).
// Command is only accepted when sent as a COMMAND_LONG.
MAV_RESULT_COMMAND_LONG_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_LONG_ONLY
// Command is valid, but it is only accepted when sent as a COMMAND_INT (as it encodes a location in params 5, 6 and 7, and hence requires a reference MAV_FRAME).
// Command is only accepted when sent as a COMMAND_INT.
MAV_RESULT_COMMAND_INT_ONLY MAV_RESULT = common.MAV_RESULT_COMMAND_INT_ONLY
// Command is invalid because a frame is required and the specified frame is not supported.
MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME MAV_RESULT = common.MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME
Expand Down

0 comments on commit 2af1509

Please sign in to comment.