Set node info app packet channel to 0 to test cross mesh secondary channels

This commit is contained in:
Garth Vander Houwen 2023-03-21 18:13:17 -07:00
parent 9096dbc726
commit fd502e271f

View file

@ -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)