New Crowdin translations - ko (#26487)

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
This commit is contained in:
PX4 Build Bot
2026-02-18 16:44:57 +11:00
committed by GitHub
parent 602add3ec1
commit 18c176beef
314 changed files with 11938 additions and 1357 deletions
+33 -4
View File
@@ -1,9 +1,37 @@
---
pageClass: is-wide-page
---
# UlogStream (UORB message)
Message to stream ULog data from the logger. Corresponds to the LOGGING_DATA
mavlink message
Message to stream ULog data from the logger. Corresponds to the LOGGING_DATA. mavlink message.
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/UlogStream.msg)
**TOPICS:** ulog_stream
## Fields
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
| -------------------------------------------------------------- | ------------ | ---------------------------------------------------------------- | ---------- | ----------------------------------------------------------------- |
| timestamp | `uint64` | | | time since system start (microseconds) |
| length | `uint8` | | | length of data |
| first_message_offset | `uint8` | | | offset into data where first message starts. This |
| msg_sequence | `uint16` | | | allows determine drops |
| flags | `uint8` | | | see FLAGS\_\* |
| data | `uint8[249]` | | | ulog data |
## Constants
| 명칭 | 형식 | Value | 설명 |
| ------------------------------------------------------------------------------------------- | ------- | ----- | ------------------------------------------------------------------------------------ |
| <a href="#FLAGS_NEED_ACK"></a> FLAGS_NEED_ACK | `uint8` | 1 | if set, this message requires to be acked. |
| <a href="#ORB_QUEUE_LENGTH"></a> ORB_QUEUE_LENGTH | `uint8` | 16 | TODO: we might be able to reduce this if mavlink polled on the topic |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/UlogStream.msg)
:::details
Click here to see original file
```c
# Message to stream ULog data from the logger. Corresponds to the LOGGING_DATA
@@ -25,5 +53,6 @@ uint8 flags # see FLAGS_*
uint8[249] data # ulog data
uint8 ORB_QUEUE_LENGTH = 16 # TODO: we might be able to reduce this if mavlink polled on the topic
```
:::