From 3bc6c09bddb27e5c9b44e0a781ad50b028fa9ce7 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sat, 17 Sep 2022 09:05:49 -0700 Subject: [PATCH] dont turn tx on automatically --- Meshtastic/Views/Settings/Config/LoRaConfig.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Settings/Config/LoRaConfig.swift b/Meshtastic/Views/Settings/Config/LoRaConfig.swift index 89e53be7..e660a94b 100644 --- a/Meshtastic/Views/Settings/Config/LoRaConfig.swift +++ b/Meshtastic/Views/Settings/Config/LoRaConfig.swift @@ -87,7 +87,7 @@ struct LoRaConfig: View { lc.hopLimit = UInt32(hopLimit) lc.region = RegionCodes(rawValue: region)!.protoEnumValue() lc.modemPreset = ModemPresets(rawValue: modemPreset)!.protoEnumValue() - lc.txEnabled = true + //lc.txEnabled = true let adminMessageId = bleManager.saveLoRaConfig(config: lc, fromUser: node!.user!, toUser: node!.user!)