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 Aug 5, 2024
1 parent b57bf9d commit f1f0366
Show file tree
Hide file tree
Showing 262 changed files with 3,636 additions and 93 deletions.
13 changes: 13 additions & 0 deletions pkg/dialects/all/dialect_test.go
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)
}
14 changes: 14 additions & 0 deletions pkg/dialects/all/enum_mav_cmd_test.go
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()
}
13 changes: 13 additions & 0 deletions pkg/dialects/ardupilotmega/dialect_test.go
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 pkg/dialects/ardupilotmega/enum_accelcal_vehicle_pos_test.go
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 pkg/dialects/ardupilotmega/enum_camera_feedback_flags_test.go
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 pkg/dialects/ardupilotmega/enum_camera_status_types_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_copter_mode_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_deepstall_stage_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_device_op_bustype_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_ekf_status_flags_test.go
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()
}
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()
}
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_gimbal_axis_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_gopro_burst_rate_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_capture_mode_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_gopro_charging_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_gopro_command_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_field_of_view_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_gopro_frame_rate_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_heartbeat_flags_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_heartbeat_status_test.go
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()
}
14 changes: 14 additions & 0 deletions pkg/dialects/ardupilotmega/enum_gopro_model_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_photo_resolution_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_protune_colour_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_protune_exposure_test.go
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 pkg/dialects/ardupilotmega/enum_gopro_protune_gain_test.go
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()
}
Loading

0 comments on commit f1f0366

Please sign in to comment.