PX4-Autopilot/docs/zh/msg_docs/DebugArray.md
PX4 Build Bot 62d0620eff
New Crowdin translations - zh-CN (#26553)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-03-05 14:00:49 +11:00

40 lines
1.8 KiB
Markdown

---
pageClass: is-wide-page
---
# DebugArray (UORB message)
**TOPICS:** debug_array
## Fields
| 参数名 | 类型 | Unit [Frame] | Range/Enum | 描述 |
| --------- | ------------- | ---------------------------------------------------------------- | ---------- | ------------------------------------------------------------------------------- |
| timestamp | `uint64` | | | time since system start (microseconds) |
| id | `uint16` | | | unique ID of debug array, used to discriminate between arrays |
| name | `char[10]` | | | name of the debug array (max. 10 characters) |
| data | `float32[58]` | | | data |
## Constants
| 参数名 | 类型 | 值 | 描述 |
| -------------------------------------------------------- | ------- | -- | -- |
| <a id="#ARRAY_SIZE"></a> ARRAY_SIZE | `uint8` | 58 | |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/DebugArray.msg)
:::details
Click here to see original file
```c
uint8 ARRAY_SIZE = 58
uint64 timestamp # time since system start (microseconds)
uint16 id # unique ID of debug array, used to discriminate between arrays
char[10] name # name of the debug array (max. 10 characters)
float32[58] data # data
```
:::