-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(automatic) update dialects to rev https://github.com/mavlink/mavlink…
- Loading branch information
gomavlib-bot
committed
Aug 5, 2024
1 parent
b57bf9d
commit f1f0366
Showing
262 changed files
with
3,636 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
//autogenerated:yes | ||
//nolint:revive | ||
package all | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/bluenviron/gomavlib/v3/pkg/dialect" | ||
) | ||
|
||
func TestDialect(t *testing.T) { | ||
_, err := dialect.NewReadWriter(Dialect) | ||
require.NoError(t, err) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package all | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_MAV_CMD(t *testing.T) { | ||
var e MAV_CMD | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
//autogenerated:yes | ||
//nolint:revive | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/bluenviron/gomavlib/v3/pkg/dialect" | ||
) | ||
|
||
func TestDialect(t *testing.T) { | ||
_, err := dialect.NewReadWriter(Dialect) | ||
require.NoError(t, err) | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_accelcal_vehicle_pos_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_ACCELCAL_VEHICLE_POS(t *testing.T) { | ||
var e ACCELCAL_VEHICLE_POS | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_camera_feedback_flags_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_CAMERA_FEEDBACK_FLAGS(t *testing.T) { | ||
var e CAMERA_FEEDBACK_FLAGS | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_camera_status_types_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_CAMERA_STATUS_TYPES(t *testing.T) { | ||
var e CAMERA_STATUS_TYPES | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_COPTER_MODE(t *testing.T) { | ||
var e COPTER_MODE | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_DEEPSTALL_STAGE(t *testing.T) { | ||
var e DEEPSTALL_STAGE | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_DEVICE_OP_BUSTYPE(t *testing.T) { | ||
var e DEVICE_OP_BUSTYPE | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_EKF_STATUS_FLAGS(t *testing.T) { | ||
var e EKF_STATUS_FLAGS | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gimbal_axis_calibration_required_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GIMBAL_AXIS_CALIBRATION_REQUIRED(t *testing.T) { | ||
var e GIMBAL_AXIS_CALIBRATION_REQUIRED | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gimbal_axis_calibration_status_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GIMBAL_AXIS_CALIBRATION_STATUS(t *testing.T) { | ||
var e GIMBAL_AXIS_CALIBRATION_STATUS | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GIMBAL_AXIS(t *testing.T) { | ||
var e GIMBAL_AXIS | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_BURST_RATE(t *testing.T) { | ||
var e GOPRO_BURST_RATE | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_capture_mode_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_CAPTURE_MODE(t *testing.T) { | ||
var e GOPRO_CAPTURE_MODE | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_CHARGING(t *testing.T) { | ||
var e GOPRO_CHARGING | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_COMMAND(t *testing.T) { | ||
var e GOPRO_COMMAND | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_field_of_view_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_FIELD_OF_VIEW(t *testing.T) { | ||
var e GOPRO_FIELD_OF_VIEW | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_FRAME_RATE(t *testing.T) { | ||
var e GOPRO_FRAME_RATE | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_heartbeat_flags_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_HEARTBEAT_FLAGS(t *testing.T) { | ||
var e GOPRO_HEARTBEAT_FLAGS | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_heartbeat_status_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_HEARTBEAT_STATUS(t *testing.T) { | ||
var e GOPRO_HEARTBEAT_STATUS | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_MODEL(t *testing.T) { | ||
var e GOPRO_MODEL | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_photo_resolution_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_PHOTO_RESOLUTION(t *testing.T) { | ||
var e GOPRO_PHOTO_RESOLUTION | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_protune_colour_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_PROTUNE_COLOUR(t *testing.T) { | ||
var e GOPRO_PROTUNE_COLOUR | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_protune_exposure_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_PROTUNE_EXPOSURE(t *testing.T) { | ||
var e GOPRO_PROTUNE_EXPOSURE | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
14 changes: 14 additions & 0 deletions
14
pkg/dialects/ardupilotmega/enum_gopro_protune_gain_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//autogenerated:yes | ||
//nolint:revive,govet,errcheck | ||
package ardupilotmega | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestEnum_GOPRO_PROTUNE_GAIN(t *testing.T) { | ||
var e GOPRO_PROTUNE_GAIN | ||
e.UnmarshalText([]byte{}) | ||
e.MarshalText() | ||
e.String() | ||
} |
Oops, something went wrong.