Skip to content

Commit 31e24cc

Browse files
author
gomavlib-bot
committed
1 parent 5565e2c commit 31e24cc

28 files changed

+70
-56
lines changed

pkg/dialects/all/message_mission_item.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// Message encoding a mission item. This message is emitted to announce
10-
// the presence of a mission item and to set a mission item on the system. The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
9+
// Message encoding a mission item.
10+
// This message is emitted to announce the presence of a mission item and to set a mission item on the system.
11+
// The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
1112
type MessageMissionItem = common.MessageMissionItem

pkg/dialects/all/message_system_time.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// The system time is the time of the master clock.
9+
// The system time is the time of the sender's master clock.
1010
// This can be emitted by flight controllers, onboard computers, or other components in the MAVLink network.
11-
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a SYSTEM_TYPE that indicates a more recent time.
11+
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a system that indicates a more recent time.
1212
// This allows more broadly accurate date stamping of logs, and so on.
1313
// If precise time synchronization is needed then use TIMESYNC instead.
1414
type MessageSystemTime = common.MessageSystemTime

pkg/dialects/ardupilotmega/message_mission_item.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// Message encoding a mission item. This message is emitted to announce
10-
// the presence of a mission item and to set a mission item on the system. The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
9+
// Message encoding a mission item.
10+
// This message is emitted to announce the presence of a mission item and to set a mission item on the system.
11+
// The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
1112
type MessageMissionItem = common.MessageMissionItem

pkg/dialects/ardupilotmega/message_system_time.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// The system time is the time of the master clock.
9+
// The system time is the time of the sender's master clock.
1010
// This can be emitted by flight controllers, onboard computers, or other components in the MAVLink network.
11-
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a SYSTEM_TYPE that indicates a more recent time.
11+
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a system that indicates a more recent time.
1212
// This allows more broadly accurate date stamping of logs, and so on.
1313
// If precise time synchronization is needed then use TIMESYNC instead.
1414
type MessageSystemTime = common.MessageSystemTime

pkg/dialects/asluav/message_mission_item.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// Message encoding a mission item. This message is emitted to announce
10-
// the presence of a mission item and to set a mission item on the system. The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
9+
// Message encoding a mission item.
10+
// This message is emitted to announce the presence of a mission item and to set a mission item on the system.
11+
// The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
1112
type MessageMissionItem = common.MessageMissionItem

pkg/dialects/asluav/message_system_time.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// The system time is the time of the master clock.
9+
// The system time is the time of the sender's master clock.
1010
// This can be emitted by flight controllers, onboard computers, or other components in the MAVLink network.
11-
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a SYSTEM_TYPE that indicates a more recent time.
11+
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a system that indicates a more recent time.
1212
// This allows more broadly accurate date stamping of logs, and so on.
1313
// If precise time synchronization is needed then use TIMESYNC instead.
1414
type MessageSystemTime = common.MessageSystemTime

pkg/dialects/avssuas/message_mission_item.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// Message encoding a mission item. This message is emitted to announce
10-
// the presence of a mission item and to set a mission item on the system. The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
9+
// Message encoding a mission item.
10+
// This message is emitted to announce the presence of a mission item and to set a mission item on the system.
11+
// The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
1112
type MessageMissionItem = common.MessageMissionItem

pkg/dialects/avssuas/message_system_time.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
77
)
88

9-
// The system time is the time of the master clock.
9+
// The system time is the time of the sender's master clock.
1010
// This can be emitted by flight controllers, onboard computers, or other components in the MAVLink network.
11-
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a SYSTEM_TYPE that indicates a more recent time.
11+
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a system that indicates a more recent time.
1212
// This allows more broadly accurate date stamping of logs, and so on.
1313
// If precise time synchronization is needed then use TIMESYNC instead.
1414
type MessageSystemTime = common.MessageSystemTime

pkg/dialects/common/message_mission_item.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
//nolint:revive,misspell,govet,lll
33
package common
44

5-
// Message encoding a mission item. This message is emitted to announce
6-
// the presence of a mission item and to set a mission item on the system. The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
5+
// Message encoding a mission item.
6+
// This message is emitted to announce the presence of a mission item and to set a mission item on the system.
7+
// The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.
78
type MessageMissionItem struct {
89
// System ID
910
TargetSystem uint8

pkg/dialects/common/message_system_time.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//nolint:revive,misspell,govet,lll
33
package common
44

5-
// The system time is the time of the master clock.
5+
// The system time is the time of the sender's master clock.
66
// This can be emitted by flight controllers, onboard computers, or other components in the MAVLink network.
7-
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a SYSTEM_TYPE that indicates a more recent time.
7+
// Components that are using a less reliable time source, such as a battery-backed real time clock, can choose to match their system clock to that of a system that indicates a more recent time.
88
// This allows more broadly accurate date stamping of logs, and so on.
99
// If precise time synchronization is needed then use TIMESYNC instead.
1010
type MessageSystemTime struct {

0 commit comments

Comments
 (0)