From fd502e271f88ab1ed49c3c955cf06684eff648a3 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Tue, 21 Mar 2023 18:13:17 -0700 Subject: [PATCH] Set node info app packet channel to 0 to test cross mesh secondary channels --- Meshtastic/Helpers/MeshPackets.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Helpers/MeshPackets.swift b/Meshtastic/Helpers/MeshPackets.swift index d329dceb..daa6744f 100644 --- a/Meshtastic/Helpers/MeshPackets.swift +++ b/Meshtastic/Helpers/MeshPackets.swift @@ -251,7 +251,7 @@ func nodeInfoPacket (nodeInfo: NodeInfo, channel: UInt32, context: NSManagedObje let newNode = NodeInfoEntity(context: context) newNode.id = Int64(nodeInfo.num) newNode.num = Int64(nodeInfo.num) - newNode.channel = Int32(channel) + newNode.channel = 0//Int32(channel) if nodeInfo.hasDeviceMetrics { let telemetry = TelemetryEntity(context: context)