From 2acdb1d0719a28d844f740b1efdfba553066d182 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Mon, 19 Sep 2022 15:50:06 -0700 Subject: [PATCH] tx enabled fix --- Meshtastic/Views/Settings/Config/LoRaConfig.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Meshtastic/Views/Settings/Config/LoRaConfig.swift b/Meshtastic/Views/Settings/Config/LoRaConfig.swift index 644a1527..d86e4846 100644 --- a/Meshtastic/Views/Settings/Config/LoRaConfig.swift +++ b/Meshtastic/Views/Settings/Config/LoRaConfig.swift @@ -89,6 +89,8 @@ struct LoRaConfig: View { lc.hopLimit = UInt32(hopLimit) lc.region = RegionCodes(rawValue: region)!.protoEnumValue() lc.modemPreset = ModemPresets(rawValue: modemPreset)!.protoEnumValue() + lc.usePreset = true + lc.txEnabled = true let adminMessageId = bleManager.saveLoRaConfig(config: lc, fromUser: node!.user!, toUser: node!.user!)