mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Add NodeInfoBatch message for efficient bulk transfer in FromRadio
This commit is contained in:
parent
cb1f89372a
commit
47205e5da1
1 changed files with 14 additions and 0 deletions
|
|
@ -1809,6 +1809,14 @@ message NodeInfo {
|
|||
bool is_muted = 13;
|
||||
}
|
||||
|
||||
/*
|
||||
* Batched NodeInfo wrapper for efficient bulk transfer during want_config flow.
|
||||
* Allows multiple NodeInfo messages to be packed into a single FromRadio packet.
|
||||
*/
|
||||
message NodeInfoBatch {
|
||||
repeated NodeInfo items = 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Error codes for critical errors
|
||||
* The device might report these fault codes on the screen.
|
||||
|
|
@ -2165,6 +2173,12 @@ message FromRadio {
|
|||
* Persistent data for device-ui
|
||||
*/
|
||||
DeviceUIConfig deviceuiConfig = 17;
|
||||
|
||||
/*
|
||||
* Batched NodeInfo messages for efficient bulk transfer.
|
||||
* Used when client opts in via special nonce value of 69422.
|
||||
*/
|
||||
NodeInfoBatch node_info_batch = 18;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue