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: en/messages/development.md
+50-2Lines changed: 50 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,8 @@ span.warning {
36
36
37
37
Type | Defined | Included
38
38
--- | --- | ---
39
-
[Messages](#messages) | 12 | 234
40
-
[Enums](#enumerated-types) | 12 | 158
39
+
[Messages](#messages) | 13 | 234
40
+
[Enums](#enumerated-types) | 14 | 158
41
41
[Commands](#mav_commands) | 177 | 0
42
42
43
43
The following sections list all entities in the dialect (both included and defined in this file).
@@ -275,6 +275,33 @@ sysid_in_control | `uint8_t` | | System ID of GCS MAVLink component in control (
275
275
flags | `uint8_t` | [GCS_CONTROL_STATUS_FLAGS](#GCS_CONTROL_STATUS_FLAGS) | Control status. For example, whether takeover is allowed, and whether this message instance defines the default controlling GCS for the whole system.
<spanclass="warning">**WORK IN PROGRESS**: Do not use in stable production environments (it may change).</span>
281
+
282
+
Range information from a radio beacon for trilateration-based positioning.
283
+
284
+
This message is telemetry intended for consumption by an autopilot (MAVLink does not define the mechanism used to determine the range).
285
+
286
+
Field Name | Type | Units | Values | Description
287
+
--- | --- | --- | --- | ---
288
+
time_usec | `uint64_t` | us | | Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number.
289
+
target_system | `uint8_t` | | | System ID.
290
+
target_component | `uint8_t` | | | Component ID.
291
+
beacon_id | `uint16_t` | | | ID of the ranging beacon/station.<br>Messages with same value are from the same source (instance).
292
+
range | `uint32_t` | mm | invalid:UINT32_MAX | Range measurement between a beacon and a vehicle.
293
+
lat | `int32_t` | degE7 | invalid:INT32_MAX | Beacon latitude (WGS84).
<spanclass="warning">**WORK IN PROGRESS**: Do not use in stable production environments (it may change).</span>
495
+
496
+
(Bitmask) Status flags for a [RANGING_BEACON](#RANGING_BEACON).
497
+
498
+
Value | Name | Description
499
+
--- | --- | ---
500
+
<aid='RANGING_BEACON_STATUS_FLAG_STATION_SIGNAL_POOR'></a>1 | [RANGING_BEACON_STATUS_FLAG_STATION_SIGNAL_POOR](#RANGING_BEACON_STATUS_FLAG_STATION_SIGNAL_POOR) | Station signal is poor. This might indicate channel fading, interference, or other signal quality issues.
Copy file name to clipboardExpand all lines: en/messages/dialects.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,20 +17,20 @@ Dialects are not managed by this project!
17
17
18
18
The dialect definitions are:
19
19
20
+
-[uAvionix.xml](uAvionix.md)
21
+
-[cubepilot.xml](cubepilot.md)
22
+
-[ASLUAV.xml](ASLUAV.md)
20
23
-[paparazzi.xml](paparazzi.md)
21
-
-[storm32.xml](storm32.md)
22
-
-[ualberta.xml](ualberta.md)
23
24
-[stemstudios.xml](stemstudios.md)
24
-
-[csAirLink.xml](csAirLink.md)
25
-
-[marsh.xml](marsh.md)
25
+
-[ualberta.xml](ualberta.md)
26
26
-[ardupilotmega.xml](ardupilotmega.md)
27
-
-[loweheiser.xml](loweheiser.md)
28
27
-[AVSSUAS.xml](AVSSUAS.md)
29
-
-[ASLUAV.xml](ASLUAV.md)
28
+
-[storm32.xml](storm32.md)
29
+
-[marsh.xml](marsh.md)
30
30
-[matrixpilot.xml](matrixpilot.md)
31
-
-[uAvionix.xml](uAvionix.md)
32
31
-[icarous.xml](icarous.md)
33
-
-[cubepilot.xml](cubepilot.md)
32
+
-[loweheiser.xml](loweheiser.md)
33
+
-[csAirLink.xml](csAirLink.md)
34
34
35
35
Note that dialects may `include`[MAVLink-Standard Definitions](index.md) or other dialects.
36
36
Up to 5 levels of XML file nesting are allowed - see `MAXIMUM_INCLUDE_FILE_NESTING` in [mavgen.py](https://github.com/ArduPilot/pymavlink/blob/master/generator/mavgen.py#L44).
0 commit comments