Add NodeInfoBatch message for efficient bulk transfer in FromRadio

This commit is contained in:
Ben Meadors 2026-04-02 14:32:38 -05:00
parent cb1f89372a
commit 47205e5da1

View file

@ -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;
}
}