Update protobufs (#8707)

Co-authored-by: caveman99 <25002+caveman99@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-11-21 11:02:13 +01:00
committed by Thomas Göttgens
parent 186cbe61bb
commit a4c92d9fd5
2 changed files with 12 additions and 2 deletions

View File

@@ -288,6 +288,12 @@ typedef enum _meshtastic_HardwareModel {
meshtastic_HardwareModel_WISMESH_TAP_V2 = 116, meshtastic_HardwareModel_WISMESH_TAP_V2 = 116,
/* RAK3401 */ /* RAK3401 */
meshtastic_HardwareModel_RAK3401 = 117, meshtastic_HardwareModel_RAK3401 = 117,
/* RAK6421 Hat+ */
meshtastic_HardwareModel_RAK6421 = 118,
/* Elecrow ThinkNode M4 */
meshtastic_HardwareModel_THINKNODE_M4 = 119,
/* Elecrow ThinkNode M6 */
meshtastic_HardwareModel_THINKNODE_M6 = 120,
/* ------------------------------------------------------------------------------------------------------------------------------------------ /* ------------------------------------------------------------------------------------------------------------------------------------------
Reserved ID For developing private Ports. These will show up in live traffic sparsely, so we can use a high number. Keep it within 8 bits. Reserved ID For developing private Ports. These will show up in live traffic sparsely, so we can use a high number. Keep it within 8 bits.
------------------------------------------------------------------------------------------------------------------------------------------ */ ------------------------------------------------------------------------------------------------------------------------------------------ */
@@ -825,7 +831,11 @@ typedef struct _meshtastic_MeshPacket {
Note: Our crypto implementation uses this field as well. Note: Our crypto implementation uses this field as well.
See [crypto](/docs/overview/encryption) for details. */ See [crypto](/docs/overview/encryption) for details. */
uint32_t from; uint32_t from;
/* The (immediate) destination for this packet */ /* The (immediate) destination for this packet
If the value is 4,294,967,295 (maximum value of an unsigned 32bit integer), this indicates that the packet was
not destined for a specific node, but for a channel as indicated by the value of `channel` below.
If the value is another, this indicates that the packet was destined for a specific
node (i.e. a kind of "Direct Message" to this node) and not broadcast on a channel. */
uint32_t to; uint32_t to;
/* (Usually) If set, this indicates the index in the secondary_channels table that this packet was sent/received on. /* (Usually) If set, this indicates the index in the secondary_channels table that this packet was sent/received on.
If unset, packet was on the primary channel. If unset, packet was on the primary channel.