docs: auto-sync metadata [skip ci]

Co-Authored-By: PX4 BuildBot <bot@px4.io>
This commit is contained in:
PX4BuildBot
2026-02-11 22:43:01 +00:00
parent 01b348c86b
commit 36b5e1e1bb
374 changed files with 12147 additions and 1765 deletions
+26 -2
View File
@@ -1,8 +1,31 @@
---
pageClass: is-wide-page
---
# DebugArray (UORB message)
**TOPICS:** debug_array
## Fields
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/DebugArray.msg)
| Name | Type | Unit [Frame] | Range/Enum | Description |
| --------- | ------------- | ------------ | ---------- | ------------------------------------------------------------- |
| 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
| Name | Type | Value | Description |
| ------------------------------------- | ------- | ----- | ----------- |
| <a href="#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
@@ -10,5 +33,6 @@ 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
```
:::