From 4c433ee900e098036fb969338b8fdf8763b7ad9c Mon Sep 17 00:00:00 2001 From: Toby Murray Date: Fri, 23 Feb 2024 23:38:22 -0500 Subject: [PATCH 1/2] Fix MeshPacket.to comment Looks like this became garbled in https://github.com/meshtastic/protobufs/commit/0221e83d689f7930ed3e5c474eff4fbb8697efbb. --- meshtastic/mesh.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 51f38bc..93f991d 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -901,8 +901,8 @@ message MeshPacket { fixed32 from = 1; /* - * The (immediatSee Priority description for more details.y should be fixed32 instead, this encoding only - * hurts the ble link though. + * The (immediate) destination for this packet. If we are using routing, the + * final destination will be in payload.dest */ fixed32 to = 2; From 9515cf2fb5d5e4e375bb6b11809817e439743ef3 Mon Sep 17 00:00:00 2001 From: Toby Murray Date: Sat, 24 Feb 2024 11:52:01 -0500 Subject: [PATCH 2/2] Remove mention of payload.dest --- meshtastic/mesh.proto | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 93f991d..c60d68d 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -901,8 +901,7 @@ message MeshPacket { fixed32 from = 1; /* - * The (immediate) destination for this packet. If we are using routing, the - * final destination will be in payload.dest + * The (immediate) destination for this packet */ fixed32 to = 2;