Skip to content

Commit

Permalink
add powerstress app packet handling
Browse files Browse the repository at this point in the history
  • Loading branch information
garthvh committed Jul 7, 2024
1 parent 1e9d48c commit 9db1692
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Meshtastic/Helpers/BLEManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,8 @@ class BLEManager: NSObject, CBPeripheralDelegate, MqttClientProxyManagerDelegate
Logger.services.info("MAX PORT NUM OF 511")
case .atakPlugin:
MeshLogger.log("🕸️ MESH PACKET received for ATAK Plugin App UNHANDLED \((try? decodedInfo.packet.jsonString()) ?? "JSON Decode Failure")")
case .powerstressApp:
MeshLogger.log("🕸️ MESH PACKET received for Power Stress App UNHANDLED \((try? decodedInfo.packet.jsonString()) ?? "JSON Decode Failure")")
}

if decodedInfo.configCompleteID != 0 && decodedInfo.configCompleteID == configNonce {
Expand Down
2 changes: 1 addition & 1 deletion Meshtastic/Views/Settings/Firmware.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct Firmware: View {
@Environment(\.managedObjectContext) var context
@EnvironmentObject var bleManager: BLEManager
var node: NodeInfoEntity?
@State var minimumVersion = "2.3.15"
@State var minimumVersion = "2.3.14"
@State var version = ""
@State private var currentDevice: DeviceHardware?
@State private var latestStable: FirmwareRelease?
Expand Down

0 comments on commit 9db1692

Please sign in to comment.