From 90ba351aebad9cd41304bdb4430c77606de5fadd Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Thu, 7 Apr 2022 19:26:40 -0700 Subject: [PATCH] Randomize configid --- MeshtasticClient/Helpers/BLEManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MeshtasticClient/Helpers/BLEManager.swift b/MeshtasticClient/Helpers/BLEManager.swift index 41540a7d..032b4267 100644 --- a/MeshtasticClient/Helpers/BLEManager.swift +++ b/MeshtasticClient/Helpers/BLEManager.swift @@ -318,7 +318,7 @@ class BLEManager: NSObject, ObservableObject, CBCentralManagerDelegate, CBPeriph if meshLoggingEnabled { MeshLogger.log("✅ BLE did discover TORADIO characteristic for Meshtastic by \(peripheral.name ?? "Unknown")") } TORADIO_characteristic = characteristic var toRadio: ToRadio = ToRadio() - toRadio.wantConfigID = 32168 + toRadio.wantConfigID = UInt32.random(in: UInt32(UInt8.max)..