Skip to content

Commit 8a29d23

Browse files
authored
New Crowdin updates (#641)
* New translations common.md (Korean) * New translations common.md (Chinese Simplified) * New translations development.md (Korean) * New translations storm32.md (Korean) * New translations development.md (Chinese Simplified) * New translations storm32.md (Chinese Simplified) * New translations cubepilot.md (Korean) * New translations cubepilot.md (Chinese Simplified) * New translations matrixpilot.md (Korean) * New translations paparazzi.md (Korean) * New translations python_array_test.md (Korean) * New translations ualberta.md (Korean) * New translations uavionix.md (Korean) * New translations ardupilotmega.md (Korean) * New translations asluav.md (Korean) * New translations avssuas.md (Korean) * New translations marsh.md (Korean) * New translations matrixpilot.md (Chinese Simplified) * New translations paparazzi.md (Chinese Simplified) * New translations python_array_test.md (Chinese Simplified) * New translations ualberta.md (Chinese Simplified) * New translations uavionix.md (Chinese Simplified) * New translations ardupilotmega.md (Chinese Simplified) * New translations asluav.md (Chinese Simplified) * New translations avssuas.md (Chinese Simplified) * New translations marsh.md (Chinese Simplified)
1 parent 4b26f3c commit 8a29d23

26 files changed

+94
-102
lines changed

ko/messages/ASLUAV.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ span.warning {
3535

3636
| Type | Defined | Included |
3737
| -------------------------- | ------- | -------- |
38-
| [Messages](#messages) | 17 | 230 |
39-
| [Enums](#enumerated-types) | 2 | 151 |
38+
| [Messages](#messages) | 17 | 231 |
39+
| [Enums](#enumerated-types) | 2 | 152 |
4040
| [Commands](#mav_commands) | 167 | 0 |
4141

4242
The following sections list all entities in the dialect (both included and defined in this file).

ko/messages/AVSSUAS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ span.warning {
3939

4040
| Type | Defined | Included |
4141
| -------------------------- | ------- | -------- |
42-
| [Messages](#messages) | 4 | 230 |
43-
| [Enums](#enumerated-types) | 3 | 151 |
42+
| [Messages](#messages) | 4 | 231 |
43+
| [Enums](#enumerated-types) | 3 | 152 |
4444
| [Commands](#mav_commands) | 172 | 0 |
4545

4646
The following sections list all entities in the dialect (both included and defined in this file).

ko/messages/ardupilotmega.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ span.warning {
4444

4545
| Type | Defined | Included |
4646
| -------------------------- | ------- | -------- |
47-
| [Messages](#messages) | 73 | 248 |
48-
| [Enums](#enumerated-types) | 46 | 167 |
47+
| [Messages](#messages) | 73 | 249 |
48+
| [Enums](#enumerated-types) | 46 | 168 |
4949
| [Commands](#mav_commands) | 198 | 0 |
5050

5151
The following sections list all entities in the dialect (both included and defined in this file).

ko/messages/common.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ span.warning {
3838

3939
| Type | Defined | Included |
4040
| -------------------------- | ------- | -------- |
41-
| [Messages](#messages) | 226 | 4 |
42-
| [Enums](#enumerated-types) | 142 | 9 |
41+
| [Messages](#messages) | 227 | 4 |
42+
| [Enums](#enumerated-types) | 143 | 9 |
4343
| [Commands](#mav_commands) | 165 | 0 |
4444

4545
The following sections list all entities in the dialect (both included and defined in this file).
@@ -2838,6 +2838,18 @@ ESC information for higher rate streaming. Recommended streaming rate is ~10 Hz.
28382838
| voltage | `float[4]` | V | Voltage measured from each ESC. |
28392839
| current | `float[4]` | A | Current measured from each ESC. |
28402840

2841+
### AIRSPEED (295) {#AIRSPEED}
2842+
2843+
Airspeed information from a sensor.
2844+
2845+
| Field Name | Type | Units | Values | Description |
2846+
| ------------------------------ | --------- | ----- | ----------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
2847+
| id | `uint8_t` | | | Sensor ID.<br>Messages with same value are from the same source (instance). |
2848+
| airspeed | `float` | m/s | | Calibrated airspeed (CAS). |
2849+
| temperature | `int16_t` | cdegC | invalid:INT16_MAX | Temperature. |
2850+
| raw_press | `float` | hPa | invalid:NaN | Raw differential pressure. |
2851+
| flags | `uint8_t` | | [AIRSPEED_SENSOR_FLAGS](#AIRSPEED_SENSOR_FLAGS) | Airspeed sensor flags. |
2852+
28412853
### WIFI_CONFIG_AP (299) {#WIFI_CONFIG_AP}
28422854

28432855
Configure WiFi AP SSID, password, and mode. This message is re-emitted as an acknowledgement by the AP. The message may also be explicitly requested using [MAV_CMD_REQUEST_MESSAGE](#MAV_CMD_REQUEST_MESSAGE)
@@ -5875,6 +5887,15 @@ See https://mavlink.io/en/services/standard_modes.html
58755887
| <a id='COMPUTER_STATUS_FLAGS_THERMAL_THROTTLE'></a>4 | [COMPUTER_STATUS_FLAGS_THERMAL_THROTTLE](#COMPUTER_STATUS_FLAGS_THERMAL_THROTTLE) | Indicates if thermal throttling is active. |
58765888
| <a id='COMPUTER_STATUS_FLAGS_DISK_FULL'></a>8 | [COMPUTER_STATUS_FLAGS_DISK_FULL](#COMPUTER_STATUS_FLAGS_DISK_FULL) | Indicates if main disk is full. |
58775889

5890+
### AIRSPEED_SENSOR_FLAGS {#AIRSPEED_SENSOR_FLAGS}
5891+
5892+
(Bitmask) Airspeed sensor flags
5893+
5894+
| Value | Name | Description |
5895+
| --------------------------------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
5896+
| <a id='AIRSPEED_SENSOR_UNHEALTHY'></a>1 | [AIRSPEED_SENSOR_UNHEALTHY](#AIRSPEED_SENSOR_UNHEALTHY) | Airspeed sensor is unhealthy |
5897+
| <a id='AIRSPEED_SENSOR_USING'></a>2 | [AIRSPEED_SENSOR_USING](#AIRSPEED_SENSOR_USING) | True if the data from this sensor is being actively used by the flight controller for guidance, navigation or control. |
5898+
58785899
### MAV_BOOL — \[from: [standard](../messages/standard.md#MAV_BOOL)\] {#MAV_BOOL}
58795900

58805901
(Bitmask) Enum used to indicate true or false (also: success or failure, enabled or disabled, active or inactive).

ko/messages/cubepilot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ span.warning {
3737

3838
| Type | Defined | Included |
3939
| -------------------------- | ------- | -------- |
40-
| [Messages](#messages) | 5 | 230 |
41-
| [Enums](#enumerated-types) | 0 | 151 |
40+
| [Messages](#messages) | 5 | 231 |
41+
| [Enums](#enumerated-types) | 0 | 152 |
4242
| [Commands](#mav_commands) | 165 | 0 |
4343

4444
The following sections list all entities in the dialect (both included and defined in this file).

ko/messages/development.md

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,14 @@ span.warning {
3737

3838
| Type | Defined | Included |
3939
| -------------------------- | ------- | -------- |
40-
| [Messages](#messages) | 13 | 230 |
41-
| [Enums](#enumerated-types) | 14 | 151 |
40+
| [Messages](#messages) | 12 | 231 |
41+
| [Enums](#enumerated-types) | 13 | 152 |
4242
| [Commands](#mav_commands) | 176 | 0 |
4343

4444
The following sections list all entities in the dialect (both included and defined in this file).
4545

4646
## Messages
4747

48-
### AIRSPEED (295) — [WIP] {#AIRSPEED}
49-
50-
<span class="warning">**WORK IN PROGRESS**: Do not use in stable production environments (it may change).</span>
51-
52-
Airspeed information from a sensor.
53-
54-
| Field Name | Type | Units | Values | Description |
55-
| ------------------------------ | --------- | ----- | ----------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
56-
| id | `uint8_t` | | | Sensor ID.<br>Messages with same value are from the same source (instance). |
57-
| airspeed | `float` | m/s | | Calibrated airspeed (CAS). |
58-
| temperature | `int16_t` | cdegC | | Temperature. INT16_MAX for value unknown/not supplied. |
59-
| raw_press | `float` | hPa | | Raw differential pressure. NaN for value unknown/not supplied. |
60-
| flags | `uint8_t` | | [AIRSPEED_SENSOR_FLAGS](#AIRSPEED_SENSOR_FLAGS) | Airspeed sensor flags. |
61-
6248
### GLOBAL_POSITION (296) — [WIP] {#GLOBAL_POSITION}
6349

6450
<span class="warning">**WORK IN PROGRESS**: Do not use in stable production environments (it may change).</span>
@@ -274,17 +260,6 @@ Information about GCS in control of this MAV. This should be broadcast at low ra
274260

275261
## Enumerated Types
276262

277-
### AIRSPEED_SENSOR_FLAGS — [WIP] {#AIRSPEED_SENSOR_FLAGS}
278-
279-
<span class="warning">**WORK IN PROGRESS**: Do not use in stable production environments (it may change).</span>
280-
281-
(Bitmask) Airspeed sensor flags
282-
283-
| Value | Name | Description |
284-
| --------------------------------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
285-
| <a id='AIRSPEED_SENSOR_UNHEALTHY'></a>1 | [AIRSPEED_SENSOR_UNHEALTHY](#AIRSPEED_SENSOR_UNHEALTHY) | Airspeed sensor is unhealthy |
286-
| <a id='AIRSPEED_SENSOR_USING'></a>2 | [AIRSPEED_SENSOR_USING](#AIRSPEED_SENSOR_USING) | True if the data from this sensor is being actively used by the flight controller for guidance, navigation or control. |
287-
288263
### MAV_BATTERY_STATUS_FLAGS — [WIP] {#MAV_BATTERY_STATUS_FLAGS}
289264

290265
<span class="warning">**WORK IN PROGRESS**: Do not use in stable production environments (it may change).</span>

ko/messages/marsh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ span.warning {
3737

3838
| Type | Defined | Included |
3939
| -------------------------- | ------- | -------- |
40-
| [Messages](#messages) | 5 | 230 |
41-
| [Enums](#enumerated-types) | 6 | 151 |
40+
| [Messages](#messages) | 5 | 231 |
41+
| [Enums](#enumerated-types) | 6 | 152 |
4242
| [Commands](#mav_commands) | 165 | 0 |
4343

4444
The following sections list all entities in the dialect (both included and defined in this file).

ko/messages/matrixpilot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ span.warning {
3535

3636
| Type | Defined | Included |
3737
| -------------------------- | ------- | -------- |
38-
| [Messages](#messages) | 27 | 230 |
39-
| [Enums](#enumerated-types) | 1 | 151 |
38+
| [Messages](#messages) | 27 | 231 |
39+
| [Enums](#enumerated-types) | 1 | 152 |
4040
| [Commands](#mav_commands) | 166 | 0 |
4141

4242
The following sections list all entities in the dialect (both included and defined in this file).

ko/messages/paparazzi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ span.warning {
3737

3838
| Type | Defined | Included |
3939
| -------------------------- | ------- | -------- |
40-
| [Messages](#messages) | 5 | 230 |
41-
| [Enums](#enumerated-types) | 0 | 151 |
40+
| [Messages](#messages) | 5 | 231 |
41+
| [Enums](#enumerated-types) | 0 | 152 |
4242
| [Commands](#mav_commands) | 165 | 0 |
4343

4444
The following sections list all entities in the dialect (both included and defined in this file).

ko/messages/python_array_test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ span.warning {
3535

3636
| Type | Defined | Included |
3737
| -------------------------- | ------- | -------- |
38-
| [Messages](#messages) | 8 | 230 |
39-
| [Enums](#enumerated-types) | 0 | 151 |
38+
| [Messages](#messages) | 8 | 231 |
39+
| [Enums](#enumerated-types) | 0 | 152 |
4040
| [Commands](#mav_commands) | 165 | 0 |
4141

4242
The following sections list all entities in the dialect (both included and defined in this file).

0 commit comments

Comments
 (0)