diff --git a/Meshtastic/Helpers/BLEManager.swift b/Meshtastic/Helpers/BLEManager.swift
index 47db7ebd..89f57aa8 100644
--- a/Meshtastic/Helpers/BLEManager.swift
+++ b/Meshtastic/Helpers/BLEManager.swift
@@ -1006,6 +1006,8 @@ class BLEManager: NSObject, CBPeripheralDelegate, MqttClientProxyManagerDelegate
Logger.mesh.info("🕸️ MESH PACKET received for ATAK Plugin App UNHANDLED \((try? decodedInfo.packet.jsonString()) ?? "JSON Decode Failure")")
case .powerstressApp:
Logger.mesh.info("🕸️ MESH PACKET received for Power Stress App UNHANDLED \((try? decodedInfo.packet.jsonString()) ?? "JSON Decode Failure")")
+ case .reticulumTunnelApp:
+ Logger.mesh.info("🕸️ MESH PACKET received for Reticulum Tunnel App UNHANDLED \((try? decodedInfo.packet.jsonString()) ?? "JSON Decode Failure")")
}
if decodedInfo.configCompleteID != 0 && decodedInfo.configCompleteID == configNonce {
diff --git a/Meshtastic/Views/Settings/Config/Module/MQTTConfig.swift b/Meshtastic/Views/Settings/Config/Module/MQTTConfig.swift
index 5114a7e4..765a8cab 100644
--- a/Meshtastic/Views/Settings/Config/Module/MQTTConfig.swift
+++ b/Meshtastic/Views/Settings/Config/Module/MQTTConfig.swift
@@ -230,31 +230,88 @@ struct MQTTConfig: View {
}
.scrollDismissesKeyboard(.interactively)
.disabled(self.bleManager.connectedPeripheral == nil || node?.mqttConfig == nil)
- }
- SaveConfigButton(node: node, hasChanges: $hasChanges) {
- let connectedNode = getNodeInfo(id: bleManager.connectedPeripheral?.num ?? -1, context: context)
- if connectedNode != nil {
- var mqtt = ModuleConfig.MQTTConfig()
- mqtt.enabled = self.enabled
- mqtt.proxyToClientEnabled = self.proxyToClientEnabled
- mqtt.address = self.address
- mqtt.username = self.username
- mqtt.password = self.password
- mqtt.root = self.root
- mqtt.encryptionEnabled = self.encryptionEnabled
- mqtt.jsonEnabled = self.jsonEnabled
- mqtt.tlsEnabled = self.tlsEnabled
- mqtt.mapReportingEnabled = self.mapReportingEnabled
- mqtt.mapReportSettings.positionPrecision = UInt32(self.mapPositionPrecision)
- mqtt.mapReportSettings.publishIntervalSecs = UInt32(self.mapPublishIntervalSecs)
- let adminMessageId = bleManager.saveMQTTConfig(config: mqtt, fromUser: connectedNode!.user!, toUser: node!.user!, adminIndex: connectedNode?.myInfo?.adminIndex ?? 0)
- if adminMessageId > 0 {
- // Should show a saved successfully alert once I know that to be true
- // for now just disable the button after a successful save
- hasChanges = false
- goBack()
+ SaveConfigButton(node: node, hasChanges: $hasChanges) {
+ let connectedNode = getNodeInfo(id: bleManager.connectedPeripheral?.num ?? -1, context: context)
+ if connectedNode != nil {
+ var mqtt = ModuleConfig.MQTTConfig()
+ mqtt.enabled = self.enabled
+ mqtt.proxyToClientEnabled = self.proxyToClientEnabled
+ mqtt.address = self.address
+ mqtt.username = self.username
+ mqtt.password = self.password
+ mqtt.root = self.root
+ mqtt.encryptionEnabled = self.encryptionEnabled
+ mqtt.jsonEnabled = self.jsonEnabled
+ mqtt.tlsEnabled = self.tlsEnabled
+ mqtt.mapReportingEnabled = self.mapReportingEnabled
+ mqtt.mapReportSettings.positionPrecision = UInt32(self.mapPositionPrecision)
+ mqtt.mapReportSettings.publishIntervalSecs = UInt32(self.mapPublishIntervalSecs)
+ let adminMessageId = bleManager.saveMQTTConfig(config: mqtt, fromUser: connectedNode!.user!, toUser: node!.user!, adminIndex: connectedNode?.myInfo?.adminIndex ?? 0)
+ if adminMessageId > 0 {
+ // Should show a saved successfully alert once I know that to be true
+ // for now just disable the button after a successful save
+ hasChanges = false
+ goBack()
+ }
}
+ }.onChange(of: enabled) { _, newEnabled in
+ if newEnabled != node?.mqttConfig?.enabled { hasChanges = true }
+ }
+ .onChange(of: proxyToClientEnabled) { _, newProxyToClientEnabled in
+ if newProxyToClientEnabled {
+ jsonEnabled = false
+ tlsEnabled = false
+ }
+ if newProxyToClientEnabled != node?.mqttConfig?.proxyToClientEnabled { hasChanges = true }
+ }
+ .onChange(of: address) { _, newAddress in
+ if newAddress != node?.mqttConfig?.address ?? "" { hasChanges = true }
+ }
+ .onChange(of: username) { _, newUsername in
+ if newUsername != node?.mqttConfig?.username ?? "" { hasChanges = true }
+ }
+ .onChange(of: password) { _, newPassword in
+ if newPassword != node?.mqttConfig?.password ?? "" { hasChanges = true }
+ }
+ .onChange(of: root) { _, newRoot in
+ if newRoot != node?.mqttConfig?.root ?? "" { hasChanges = true }
+ }
+ .onChange(of: selectedTopic) { _, newSelectedTopic in
+ root = newSelectedTopic
+ }
+ .onChange(of: encryptionEnabled) { _, newEncryptionEnabled in
+ if newEncryptionEnabled != node?.mqttConfig?.encryptionEnabled { hasChanges = true }
+ }
+ .onChange(of: jsonEnabled) { _, newJsonEnabled in
+ if newJsonEnabled {
+ proxyToClientEnabled = false
+ }
+ if newJsonEnabled != node?.mqttConfig?.jsonEnabled { hasChanges = true }
+ }
+ .onChange(of: tlsEnabled) { _, newTlsEnabled in
+ if address.lowercased() == "mqtt.meshtastic.org" {
+ tlsEnabled = false
+ } else {
+ if newTlsEnabled != node?.mqttConfig?.tlsEnabled { hasChanges = true }
+ }
+ }
+ .onChange(of: mqttConnected) { _, newMqttConnected in
+ if newMqttConnected == false {
+ if bleManager.mqttProxyConnected {
+ bleManager.mqttManager.disconnect()
+ }
+ } else {
+ if !bleManager.mqttProxyConnected && node != nil {
+ bleManager.mqttManager.connectFromConfigSettings(node: node!)
+ }
+ }
+ }
+ .onChange(of: mapReportingEnabled) { _, newMapReportingEnabled in
+ if newMapReportingEnabled != node?.mqttConfig?.mapReportingEnabled { hasChanges = true }
+ }
+ .onChange(of: mapPublishIntervalSecs) { _, newMapPublishIntervalSecs in
+ if newMapPublishIntervalSecs != node?.mqttConfig?.mapPublishIntervalSecs ?? -1 { hasChanges = true }
}
}
.navigationTitle("mqtt.config")
@@ -267,64 +324,6 @@ struct MQTTConfig: View {
)
}
)
- .onChange(of: enabled) { _, newEnabled in
- if newEnabled != node?.mqttConfig?.enabled { hasChanges = true }
- }
- .onChange(of: proxyToClientEnabled) { _, newProxyToClientEnabled in
- if newProxyToClientEnabled {
- jsonEnabled = false
- tlsEnabled = false
- }
- if newProxyToClientEnabled != node?.mqttConfig?.proxyToClientEnabled { hasChanges = true }
- }
- .onChange(of: address) { newAddress in
- if newAddress != node?.mqttConfig?.address ?? "" { hasChanges = true }
- }
- .onChange(of: username) { newUsername in
- if newUsername != node?.mqttConfig?.username ?? "" { hasChanges = true }
- }
- .onChange(of: password) { newPassword in
- if newPassword != node?.mqttConfig?.password ?? "" { hasChanges = true }
- }
- .onChange(of: root) { _, newRoot in
- if newRoot != node?.mqttConfig?.root ?? "" { hasChanges = true }
- }
- .onChange(of: selectedTopic) { _, newSelectedTopic in
- root = newSelectedTopic
- }
- .onChange(of: encryptionEnabled) { _, newEncryptionEnabled in
- if newEncryptionEnabled != node?.mqttConfig?.encryptionEnabled { hasChanges = true }
- }
- .onChange(of: jsonEnabled) { _, newJsonEnabled in
- if newJsonEnabled {
- proxyToClientEnabled = false
- }
- if newJsonEnabled != node?.mqttConfig?.jsonEnabled { hasChanges = true }
- }
- .onChange(of: tlsEnabled) { _, newTlsEnabled in
- if address.lowercased() == "mqtt.meshtastic.org" {
- tlsEnabled = false
- } else {
- if newTlsEnabled != node?.mqttConfig?.tlsEnabled { hasChanges = true }
- }
- }
- .onChange(of: mqttConnected) { _, newMqttConnected in
- if newMqttConnected == false {
- if bleManager.mqttProxyConnected {
- bleManager.mqttManager.disconnect()
- }
- } else {
- if !bleManager.mqttProxyConnected && node != nil {
- bleManager.mqttManager.connectFromConfigSettings(node: node!)
- }
- }
- }
- .onChange(of: mapReportingEnabled) { _, newMapReportingEnabled in
- if newMapReportingEnabled != node?.mqttConfig?.mapReportingEnabled { hasChanges = true }
- }
- .onChange(of: mapPublishIntervalSecs) { _, newMapPublishIntervalSecs in
- if newMapPublishIntervalSecs != node?.mqttConfig?.mapPublishIntervalSecs ?? -1 { hasChanges = true }
- }
.onFirstAppear {
// Need to request a MqttModuleConfig from the remote node before allowing changes
if let connectedPeripheral = bleManager.connectedPeripheral, let node {
@@ -348,6 +347,7 @@ struct MQTTConfig: View {
}
}
}
+
func setMqttValues() {
nearbyTopics = []
diff --git a/MeshtasticProtobufs/Sources/meshtastic/admin.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/admin.pb.swift
index 1f51447d..5a9a75a5 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/admin.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/admin.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/admin.proto
@@ -24,7 +25,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
/// This message is handled by the Admin module and is responsible for all settings/channel read/write operations.
/// This message is used to do settings operations to both remote AND local nodes.
/// (Prior to 1.2 these operations were done via special ToRadio operations)
-public struct AdminMessage {
+public struct AdminMessage: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -261,6 +262,36 @@ public struct AdminMessage {
set {payloadVariant = .setScale(newValue)}
}
+ ///
+ /// Backup the node's preferences
+ public var backupPreferences: AdminMessage.BackupLocation {
+ get {
+ if case .backupPreferences(let v)? = payloadVariant {return v}
+ return .flash
+ }
+ set {payloadVariant = .backupPreferences(newValue)}
+ }
+
+ ///
+ /// Restore the node's preferences
+ public var restorePreferences: AdminMessage.BackupLocation {
+ get {
+ if case .restorePreferences(let v)? = payloadVariant {return v}
+ return .flash
+ }
+ set {payloadVariant = .restorePreferences(newValue)}
+ }
+
+ ///
+ /// Remove backups of the node's preferences
+ public var removeBackupPreferences: AdminMessage.BackupLocation {
+ get {
+ if case .removeBackupPreferences(let v)? = payloadVariant {return v}
+ return .flash
+ }
+ set {payloadVariant = .removeBackupPreferences(newValue)}
+ }
+
///
/// Set the owner for this node
public var setOwner: User {
@@ -533,7 +564,7 @@ public struct AdminMessage {
///
/// TODO: REPLACE
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, Sendable {
///
/// Send the specified channel in the response to this message
/// NOTE: This field is sent with the channel index + 1 (to ensure we never try to send 'zero' - which protobufs treats as not present)
@@ -603,6 +634,15 @@ public struct AdminMessage {
/// Set zero and offset for scale chips
case setScale(UInt32)
///
+ /// Backup the node's preferences
+ case backupPreferences(AdminMessage.BackupLocation)
+ ///
+ /// Restore the node's preferences
+ case restorePreferences(AdminMessage.BackupLocation)
+ ///
+ /// Remove backups of the node's preferences
+ case removeBackupPreferences(AdminMessage.BackupLocation)
+ ///
/// Set the owner for this node
case setOwner(User)
///
@@ -689,213 +729,11 @@ public struct AdminMessage {
/// Tell the node to reset the nodedb.
case nodedbReset(Int32)
- #if !swift(>=4.1)
- public static func ==(lhs: AdminMessage.OneOf_PayloadVariant, rhs: AdminMessage.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.getChannelRequest, .getChannelRequest): return {
- guard case .getChannelRequest(let l) = lhs, case .getChannelRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getChannelResponse, .getChannelResponse): return {
- guard case .getChannelResponse(let l) = lhs, case .getChannelResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getOwnerRequest, .getOwnerRequest): return {
- guard case .getOwnerRequest(let l) = lhs, case .getOwnerRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getOwnerResponse, .getOwnerResponse): return {
- guard case .getOwnerResponse(let l) = lhs, case .getOwnerResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getConfigRequest, .getConfigRequest): return {
- guard case .getConfigRequest(let l) = lhs, case .getConfigRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getConfigResponse, .getConfigResponse): return {
- guard case .getConfigResponse(let l) = lhs, case .getConfigResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getModuleConfigRequest, .getModuleConfigRequest): return {
- guard case .getModuleConfigRequest(let l) = lhs, case .getModuleConfigRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getModuleConfigResponse, .getModuleConfigResponse): return {
- guard case .getModuleConfigResponse(let l) = lhs, case .getModuleConfigResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getCannedMessageModuleMessagesRequest, .getCannedMessageModuleMessagesRequest): return {
- guard case .getCannedMessageModuleMessagesRequest(let l) = lhs, case .getCannedMessageModuleMessagesRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getCannedMessageModuleMessagesResponse, .getCannedMessageModuleMessagesResponse): return {
- guard case .getCannedMessageModuleMessagesResponse(let l) = lhs, case .getCannedMessageModuleMessagesResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getDeviceMetadataRequest, .getDeviceMetadataRequest): return {
- guard case .getDeviceMetadataRequest(let l) = lhs, case .getDeviceMetadataRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getDeviceMetadataResponse, .getDeviceMetadataResponse): return {
- guard case .getDeviceMetadataResponse(let l) = lhs, case .getDeviceMetadataResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getRingtoneRequest, .getRingtoneRequest): return {
- guard case .getRingtoneRequest(let l) = lhs, case .getRingtoneRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getRingtoneResponse, .getRingtoneResponse): return {
- guard case .getRingtoneResponse(let l) = lhs, case .getRingtoneResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getDeviceConnectionStatusRequest, .getDeviceConnectionStatusRequest): return {
- guard case .getDeviceConnectionStatusRequest(let l) = lhs, case .getDeviceConnectionStatusRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getDeviceConnectionStatusResponse, .getDeviceConnectionStatusResponse): return {
- guard case .getDeviceConnectionStatusResponse(let l) = lhs, case .getDeviceConnectionStatusResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setHamMode, .setHamMode): return {
- guard case .setHamMode(let l) = lhs, case .setHamMode(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getNodeRemoteHardwarePinsRequest, .getNodeRemoteHardwarePinsRequest): return {
- guard case .getNodeRemoteHardwarePinsRequest(let l) = lhs, case .getNodeRemoteHardwarePinsRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getNodeRemoteHardwarePinsResponse, .getNodeRemoteHardwarePinsResponse): return {
- guard case .getNodeRemoteHardwarePinsResponse(let l) = lhs, case .getNodeRemoteHardwarePinsResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.enterDfuModeRequest, .enterDfuModeRequest): return {
- guard case .enterDfuModeRequest(let l) = lhs, case .enterDfuModeRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.deleteFileRequest, .deleteFileRequest): return {
- guard case .deleteFileRequest(let l) = lhs, case .deleteFileRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setScale, .setScale): return {
- guard case .setScale(let l) = lhs, case .setScale(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setOwner, .setOwner): return {
- guard case .setOwner(let l) = lhs, case .setOwner(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setChannel, .setChannel): return {
- guard case .setChannel(let l) = lhs, case .setChannel(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setConfig, .setConfig): return {
- guard case .setConfig(let l) = lhs, case .setConfig(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setModuleConfig, .setModuleConfig): return {
- guard case .setModuleConfig(let l) = lhs, case .setModuleConfig(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setCannedMessageModuleMessages, .setCannedMessageModuleMessages): return {
- guard case .setCannedMessageModuleMessages(let l) = lhs, case .setCannedMessageModuleMessages(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setRingtoneMessage, .setRingtoneMessage): return {
- guard case .setRingtoneMessage(let l) = lhs, case .setRingtoneMessage(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.removeByNodenum, .removeByNodenum): return {
- guard case .removeByNodenum(let l) = lhs, case .removeByNodenum(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setFavoriteNode, .setFavoriteNode): return {
- guard case .setFavoriteNode(let l) = lhs, case .setFavoriteNode(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.removeFavoriteNode, .removeFavoriteNode): return {
- guard case .removeFavoriteNode(let l) = lhs, case .removeFavoriteNode(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setFixedPosition, .setFixedPosition): return {
- guard case .setFixedPosition(let l) = lhs, case .setFixedPosition(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.removeFixedPosition, .removeFixedPosition): return {
- guard case .removeFixedPosition(let l) = lhs, case .removeFixedPosition(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setTimeOnly, .setTimeOnly): return {
- guard case .setTimeOnly(let l) = lhs, case .setTimeOnly(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getUiConfigRequest, .getUiConfigRequest): return {
- guard case .getUiConfigRequest(let l) = lhs, case .getUiConfigRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.getUiConfigResponse, .getUiConfigResponse): return {
- guard case .getUiConfigResponse(let l) = lhs, case .getUiConfigResponse(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.storeUiConfig, .storeUiConfig): return {
- guard case .storeUiConfig(let l) = lhs, case .storeUiConfig(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.setIgnoredNode, .setIgnoredNode): return {
- guard case .setIgnoredNode(let l) = lhs, case .setIgnoredNode(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.removeIgnoredNode, .removeIgnoredNode): return {
- guard case .removeIgnoredNode(let l) = lhs, case .removeIgnoredNode(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.beginEditSettings, .beginEditSettings): return {
- guard case .beginEditSettings(let l) = lhs, case .beginEditSettings(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.commitEditSettings, .commitEditSettings): return {
- guard case .commitEditSettings(let l) = lhs, case .commitEditSettings(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.factoryResetDevice, .factoryResetDevice): return {
- guard case .factoryResetDevice(let l) = lhs, case .factoryResetDevice(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.rebootOtaSeconds, .rebootOtaSeconds): return {
- guard case .rebootOtaSeconds(let l) = lhs, case .rebootOtaSeconds(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.exitSimulator, .exitSimulator): return {
- guard case .exitSimulator(let l) = lhs, case .exitSimulator(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.rebootSeconds, .rebootSeconds): return {
- guard case .rebootSeconds(let l) = lhs, case .rebootSeconds(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.shutdownSeconds, .shutdownSeconds): return {
- guard case .shutdownSeconds(let l) = lhs, case .shutdownSeconds(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.factoryResetConfig, .factoryResetConfig): return {
- guard case .factoryResetConfig(let l) = lhs, case .factoryResetConfig(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.nodedbReset, .nodedbReset): return {
- guard case .nodedbReset(let l) = lhs, case .nodedbReset(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
///
/// TODO: REPLACE
- public enum ConfigType: SwiftProtobuf.Enum {
+ public enum ConfigType: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -929,6 +767,9 @@ public struct AdminMessage {
///
/// TODO: REPLACE
case securityConfig // = 7
+
+ ///
+ /// Session key config
case sessionkeyConfig // = 8
///
@@ -972,11 +813,25 @@ public struct AdminMessage {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [AdminMessage.ConfigType] = [
+ .deviceConfig,
+ .positionConfig,
+ .powerConfig,
+ .networkConfig,
+ .displayConfig,
+ .loraConfig,
+ .bluetoothConfig,
+ .securityConfig,
+ .sessionkeyConfig,
+ .deviceuiConfig,
+ ]
+
}
///
/// TODO: REPLACE
- public enum ModuleConfigType: SwiftProtobuf.Enum {
+ public enum ModuleConfigType: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1074,53 +929,71 @@ public struct AdminMessage {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [AdminMessage.ModuleConfigType] = [
+ .mqttConfig,
+ .serialConfig,
+ .extnotifConfig,
+ .storeforwardConfig,
+ .rangetestConfig,
+ .telemetryConfig,
+ .cannedmsgConfig,
+ .audioConfig,
+ .remotehardwareConfig,
+ .neighborinfoConfig,
+ .ambientlightingConfig,
+ .detectionsensorConfig,
+ .paxcounterConfig,
+ ]
+
+ }
+
+ public enum BackupLocation: SwiftProtobuf.Enum, Swift.CaseIterable {
+ public typealias RawValue = Int
+
+ ///
+ /// Backup to the internal flash
+ case flash // = 0
+
+ ///
+ /// Backup to the SD card
+ case sd // = 1
+ case UNRECOGNIZED(Int)
+
+ public init() {
+ self = .flash
+ }
+
+ public init?(rawValue: Int) {
+ switch rawValue {
+ case 0: self = .flash
+ case 1: self = .sd
+ default: self = .UNRECOGNIZED(rawValue)
+ }
+ }
+
+ public var rawValue: Int {
+ switch self {
+ case .flash: return 0
+ case .sd: return 1
+ case .UNRECOGNIZED(let i): return i
+ }
+ }
+
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [AdminMessage.BackupLocation] = [
+ .flash,
+ .sd,
+ ]
+
}
public init() {}
}
-#if swift(>=4.2)
-
-extension AdminMessage.ConfigType: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [AdminMessage.ConfigType] = [
- .deviceConfig,
- .positionConfig,
- .powerConfig,
- .networkConfig,
- .displayConfig,
- .loraConfig,
- .bluetoothConfig,
- .securityConfig,
- .sessionkeyConfig,
- .deviceuiConfig,
- ]
-}
-
-extension AdminMessage.ModuleConfigType: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [AdminMessage.ModuleConfigType] = [
- .mqttConfig,
- .serialConfig,
- .extnotifConfig,
- .storeforwardConfig,
- .rangetestConfig,
- .telemetryConfig,
- .cannedmsgConfig,
- .audioConfig,
- .remotehardwareConfig,
- .neighborinfoConfig,
- .ambientlightingConfig,
- .detectionsensorConfig,
- .paxcounterConfig,
- ]
-}
-
-#endif // swift(>=4.2)
-
///
/// Parameters for setting up Meshtastic for ameteur radio usage
-public struct HamParameters {
+public struct HamParameters: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1150,7 +1023,7 @@ public struct HamParameters {
///
/// Response envelope for node_remote_hardware_pins
-public struct NodeRemoteHardwarePinsResponse {
+public struct NodeRemoteHardwarePinsResponse: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1164,15 +1037,6 @@ public struct NodeRemoteHardwarePinsResponse {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension AdminMessage: @unchecked Sendable {}
-extension AdminMessage.OneOf_PayloadVariant: @unchecked Sendable {}
-extension AdminMessage.ConfigType: @unchecked Sendable {}
-extension AdminMessage.ModuleConfigType: @unchecked Sendable {}
-extension HamParameters: @unchecked Sendable {}
-extension NodeRemoteHardwarePinsResponse: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
@@ -1203,6 +1067,9 @@ extension AdminMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
21: .standard(proto: "enter_dfu_mode_request"),
22: .standard(proto: "delete_file_request"),
23: .standard(proto: "set_scale"),
+ 24: .standard(proto: "backup_preferences"),
+ 25: .standard(proto: "restore_preferences"),
+ 26: .standard(proto: "remove_backup_preferences"),
32: .standard(proto: "set_owner"),
33: .standard(proto: "set_channel"),
34: .standard(proto: "set_config"),
@@ -1453,6 +1320,30 @@ extension AdminMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
self.payloadVariant = .setScale(v)
}
}()
+ case 24: try {
+ var v: AdminMessage.BackupLocation?
+ try decoder.decodeSingularEnumField(value: &v)
+ if let v = v {
+ if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
+ self.payloadVariant = .backupPreferences(v)
+ }
+ }()
+ case 25: try {
+ var v: AdminMessage.BackupLocation?
+ try decoder.decodeSingularEnumField(value: &v)
+ if let v = v {
+ if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
+ self.payloadVariant = .restorePreferences(v)
+ }
+ }()
+ case 26: try {
+ var v: AdminMessage.BackupLocation?
+ try decoder.decodeSingularEnumField(value: &v)
+ if let v = v {
+ if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
+ self.payloadVariant = .removeBackupPreferences(v)
+ }
+ }()
case 32: try {
var v: User?
var hadOneofValue = false
@@ -1796,6 +1687,18 @@ extension AdminMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
guard case .setScale(let v)? = self.payloadVariant else { preconditionFailure() }
try visitor.visitSingularUInt32Field(value: v, fieldNumber: 23)
}()
+ case .backupPreferences?: try {
+ guard case .backupPreferences(let v)? = self.payloadVariant else { preconditionFailure() }
+ try visitor.visitSingularEnumField(value: v, fieldNumber: 24)
+ }()
+ case .restorePreferences?: try {
+ guard case .restorePreferences(let v)? = self.payloadVariant else { preconditionFailure() }
+ try visitor.visitSingularEnumField(value: v, fieldNumber: 25)
+ }()
+ case .removeBackupPreferences?: try {
+ guard case .removeBackupPreferences(let v)? = self.payloadVariant else { preconditionFailure() }
+ try visitor.visitSingularEnumField(value: v, fieldNumber: 26)
+ }()
case .setOwner?: try {
guard case .setOwner(let v)? = self.payloadVariant else { preconditionFailure() }
try visitor.visitSingularMessageField(value: v, fieldNumber: 32)
@@ -1949,6 +1852,13 @@ extension AdminMessage.ModuleConfigType: SwiftProtobuf._ProtoNameProviding {
]
}
+extension AdminMessage.BackupLocation: SwiftProtobuf._ProtoNameProviding {
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 0: .same(proto: "FLASH"),
+ 1: .same(proto: "SD"),
+ ]
+}
+
extension HamParameters: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
public static let protoMessageName: String = _protobuf_package + ".HamParameters"
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
@@ -1980,7 +1890,7 @@ extension HamParameters: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementa
if self.txPower != 0 {
try visitor.visitSingularInt32Field(value: self.txPower, fieldNumber: 2)
}
- if self.frequency != 0 {
+ if self.frequency.bitPattern != 0 {
try visitor.visitSingularFloatField(value: self.frequency, fieldNumber: 3)
}
if !self.shortName.isEmpty {
diff --git a/MeshtasticProtobufs/Sources/meshtastic/apponly.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/apponly.pb.swift
index 0457077c..52dac5ca 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/apponly.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/apponly.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/apponly.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -26,7 +26,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
/// any SECONDARY channels.
/// No DISABLED channels are included.
/// This abstraction is used only on the the 'app side' of the world (ie python, javascript and android etc) to show a group of Channels as a (long) URL
-public struct ChannelSet {
+public struct ChannelSet: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -53,10 +53,6 @@ public struct ChannelSet {
fileprivate var _loraConfig: Config.LoRaConfig? = nil
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension ChannelSet: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/atak.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/atak.pb.swift
index 867648a9..06d6af88 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/atak.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/atak.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/atak.proto
@@ -20,7 +21,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
typealias Version = _2
}
-public enum Team: SwiftProtobuf.Enum {
+public enum Team: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -130,11 +131,6 @@ public enum Team: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension Team: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [Team] = [
.unspecifedColor,
@@ -153,13 +149,12 @@ extension Team: CaseIterable {
.darkGreen,
.brown,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Role of the group member
-public enum MemberRole: SwiftProtobuf.Enum {
+public enum MemberRole: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -233,11 +228,6 @@ public enum MemberRole: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension MemberRole: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [MemberRole] = [
.unspecifed,
@@ -250,13 +240,12 @@ extension MemberRole: CaseIterable {
.rto,
.k9,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Packets for the official ATAK Plugin
-public struct TAKPacket {
+public struct TAKPacket: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -337,7 +326,7 @@ public struct TAKPacket {
///
/// The payload of the packet
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, @unchecked Sendable {
///
/// TAK position report
case pli(PLI)
@@ -349,28 +338,6 @@ public struct TAKPacket {
/// May be compressed / truncated by the sender (EUD)
case detail(Data)
- #if !swift(>=4.1)
- public static func ==(lhs: TAKPacket.OneOf_PayloadVariant, rhs: TAKPacket.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.pli, .pli): return {
- guard case .pli(let l) = lhs, case .pli(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.chat, .chat): return {
- guard case .chat(let l) = lhs, case .chat(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.detail, .detail): return {
- guard case .detail(let l) = lhs, case .detail(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
public init() {}
@@ -382,7 +349,7 @@ public struct TAKPacket {
///
/// ATAK GeoChat message
-public struct GeoChat {
+public struct GeoChat: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -424,7 +391,7 @@ public struct GeoChat {
///
/// ATAK Group
/// <__group role='Team Member' name='Cyan'/>
-public struct Group {
+public struct Group: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -446,7 +413,7 @@ public struct Group {
///
/// ATAK EUD Status
///
-public struct Status {
+public struct Status: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -463,7 +430,7 @@ public struct Status {
///
/// ATAK Contact
///
-public struct Contact {
+public struct Contact: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -483,7 +450,7 @@ public struct Contact {
///
/// Position Location Information from ATAK
-public struct PLI {
+public struct PLI: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -515,18 +482,6 @@ public struct PLI {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension Team: @unchecked Sendable {}
-extension MemberRole: @unchecked Sendable {}
-extension TAKPacket: @unchecked Sendable {}
-extension TAKPacket.OneOf_PayloadVariant: @unchecked Sendable {}
-extension GeoChat: @unchecked Sendable {}
-extension Group: @unchecked Sendable {}
-extension Status: @unchecked Sendable {}
-extension Contact: @unchecked Sendable {}
-extension PLI: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/cannedmessages.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/cannedmessages.pb.swift
index 1b8c84de..ce1f0503 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/cannedmessages.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/cannedmessages.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/cannedmessages.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -22,7 +22,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// Canned message module configuration.
-public struct CannedMessageModuleConfig {
+public struct CannedMessageModuleConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -36,10 +36,6 @@ public struct CannedMessageModuleConfig {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension CannedMessageModuleConfig: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/channel.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/channel.pb.swift
index 5b9c7e49..180cd698 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/channel.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/channel.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/channel.proto
@@ -36,13 +37,15 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
/// FIXME: Add description of multi-channel support and how primary vs secondary channels are used.
/// FIXME: explain how apps use channels for security.
/// explain how remote settings and remote gpio are managed as an example
-public struct ChannelSettings {
+public struct ChannelSettings: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
///
/// Deprecated in favor of LoraConfig.channel_num
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var channelNum: UInt32 = 0
///
@@ -111,7 +114,7 @@ public struct ChannelSettings {
///
/// This message is specifically for modules to store per-channel configuration data.
-public struct ModuleSettings {
+public struct ModuleSettings: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -132,7 +135,7 @@ public struct ModuleSettings {
///
/// A pair of a channel number, mode and the (sharable) settings for that channel
-public struct Channel {
+public struct Channel: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -170,7 +173,7 @@ public struct Channel {
/// cross band routing as needed.
/// If a device has only a single radio (the common case) only one channel can be PRIMARY at a time
/// (but any number of SECONDARY channels can't be sent received on that common frequency)
- public enum Role: SwiftProtobuf.Enum {
+ public enum Role: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -209,6 +212,13 @@ public struct Channel {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Channel.Role] = [
+ .disabled,
+ .primary,
+ .secondary,
+ ]
+
}
public init() {}
@@ -216,26 +226,6 @@ public struct Channel {
fileprivate var _settings: ChannelSettings? = nil
}
-#if swift(>=4.2)
-
-extension Channel.Role: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Channel.Role] = [
- .disabled,
- .primary,
- .secondary,
- ]
-}
-
-#endif // swift(>=4.2)
-
-#if swift(>=5.5) && canImport(_Concurrency)
-extension ChannelSettings: @unchecked Sendable {}
-extension ModuleSettings: @unchecked Sendable {}
-extension Channel: @unchecked Sendable {}
-extension Channel.Role: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/clientonly.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/clientonly.pb.swift
index f89a8e3c..d72c0ae1 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/clientonly.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/clientonly.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/clientonly.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -23,7 +23,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// This abstraction is used to contain any configuration for provisioning a node on any client.
/// It is useful for importing and exporting configurations.
-public struct DeviceProfile {
+public struct DeviceProfile: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -130,10 +130,6 @@ public struct DeviceProfile {
fileprivate var _cannedMessages: String? = nil
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension DeviceProfile: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/config.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/config.pb.swift
index a5f8cbc5..b3988aaa 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/config.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/config.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/config.proto
@@ -20,7 +21,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
typealias Version = _2
}
-public struct Config {
+public struct Config: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -113,7 +114,7 @@ public struct Config {
///
/// Payload Variant
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, Sendable {
case device(Config.DeviceConfig)
case position(Config.PositionConfig)
case power(Config.PowerConfig)
@@ -125,61 +126,11 @@ public struct Config {
case sessionkey(Config.SessionkeyConfig)
case deviceUi(DeviceUIConfig)
- #if !swift(>=4.1)
- public static func ==(lhs: Config.OneOf_PayloadVariant, rhs: Config.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.device, .device): return {
- guard case .device(let l) = lhs, case .device(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.position, .position): return {
- guard case .position(let l) = lhs, case .position(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.power, .power): return {
- guard case .power(let l) = lhs, case .power(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.network, .network): return {
- guard case .network(let l) = lhs, case .network(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.display, .display): return {
- guard case .display(let l) = lhs, case .display(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.lora, .lora): return {
- guard case .lora(let l) = lhs, case .lora(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.bluetooth, .bluetooth): return {
- guard case .bluetooth(let l) = lhs, case .bluetooth(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.security, .security): return {
- guard case .security(let l) = lhs, case .security(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.sessionkey, .sessionkey): return {
- guard case .sessionkey(let l) = lhs, case .sessionkey(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.deviceUi, .deviceUi): return {
- guard case .deviceUi(let l) = lhs, case .deviceUi(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
///
/// Configuration
- public struct DeviceConfig {
+ public struct DeviceConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -191,6 +142,8 @@ public struct Config {
///
/// Disabling this will disable the SerialConsole by not initilizing the StreamAPI
/// Moved to SecurityConfig
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var serialEnabled: Bool = false
///
@@ -220,6 +173,8 @@ public struct Config {
/// If true, device is considered to be "managed" by a mesh administrator
/// Clients should then limit available configuration and administrative options inside the user interface
/// Moved to SecurityConfig
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var isManaged: Bool = false
///
@@ -231,14 +186,14 @@ public struct Config {
public var tzdef: String = String()
///
- /// If true, disable the default blinking LED (LED_PIN) behavior on the device
+ /// If true, disable the default blinking LED (LED_PIN) behavior on the device
public var ledHeartbeatDisabled: Bool = false
public var unknownFields = SwiftProtobuf.UnknownStorage()
///
/// Defines the device's role on the Mesh network
- public enum Role: SwiftProtobuf.Enum {
+ public enum Role: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -256,6 +211,8 @@ public struct Config {
/// The wifi radio and the oled screen will be put to sleep.
/// This mode may still potentially have higher power usage due to it's preference in message rebroadcasting on the mesh.
case router // = 2
+
+ /// NOTE: This enum value was marked as deprecated in the .proto file
case routerClient // = 3
///
@@ -356,11 +313,27 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.DeviceConfig.Role] = [
+ .client,
+ .clientMute,
+ .router,
+ .routerClient,
+ .repeater,
+ .tracker,
+ .sensor,
+ .tak,
+ .clientHidden,
+ .lostAndFound,
+ .takTracker,
+ .routerLate,
+ ]
+
}
///
/// Defines the device's behavior for how messages are rebroadcast
- public enum RebroadcastMode: SwiftProtobuf.Enum {
+ public enum RebroadcastMode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -421,6 +394,16 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.DeviceConfig.RebroadcastMode] = [
+ .all,
+ .allSkipDecoding,
+ .localOnly,
+ .knownOnly,
+ .none,
+ .corePortnumsOnly,
+ ]
+
}
public init() {}
@@ -428,7 +411,7 @@ public struct Config {
///
/// Position Config
- public struct PositionConfig {
+ public struct PositionConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -450,6 +433,8 @@ public struct Config {
///
/// Is GPS enabled for this node?
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var gpsEnabled: Bool = false
///
@@ -460,6 +445,8 @@ public struct Config {
///
/// Deprecated in favor of using smart / regular broadcast intervals as implicit attempt time
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var gpsAttemptTime: UInt32 = 0
///
@@ -500,7 +487,7 @@ public struct Config {
/// are always included (also time if GPS-synced)
/// NOTE: the more fields are included, the larger the message will be -
/// leading to longer airtime and a higher risk of packet loss
- public enum PositionFlags: SwiftProtobuf.Enum {
+ public enum PositionFlags: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -590,9 +577,24 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.PositionConfig.PositionFlags] = [
+ .unset,
+ .altitude,
+ .altitudeMsl,
+ .geoidalSeparation,
+ .dop,
+ .hvdop,
+ .satinview,
+ .seqNo,
+ .timestamp,
+ .heading,
+ .speed,
+ ]
+
}
- public enum GpsMode: SwiftProtobuf.Enum {
+ public enum GpsMode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -630,6 +632,13 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.PositionConfig.GpsMode] = [
+ .disabled,
+ .enabled,
+ .notPresent,
+ ]
+
}
public init() {}
@@ -638,13 +647,13 @@ public struct Config {
///
/// Power Config\
/// See [Power Config](/docs/settings/config/power) for additional power config details.
- public struct PowerConfig {
+ public struct PowerConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
///
- /// Description: Will sleep everything as much as possible, for the tracker and sensor role this will also include the lora radio.
+ /// Description: Will sleep everything as much as possible, for the tracker and sensor role this will also include the lora radio.
/// Don't use this setting if you want to use your device with the phone apps or are using a device without a user button.
/// Technical Details: Works for ESP32 devices and NRF52 devices in the Sensor or Tracker roles
public var isPowerSaving: Bool = false
@@ -698,7 +707,7 @@ public struct Config {
///
/// Network Config
- public struct NetworkConfig {
+ public struct NetworkConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -717,7 +726,7 @@ public struct Config {
public var wifiPsk: String = String()
///
- /// NTP server to use if WiFi is conneced, defaults to `0.pool.ntp.org`
+ /// NTP server to use if WiFi is conneced, defaults to `meshtastic.pool.ntp.org`
public var ntpServer: String = String()
///
@@ -749,7 +758,7 @@ public struct Config {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum AddressMode: SwiftProtobuf.Enum {
+ public enum AddressMode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -781,11 +790,17 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.NetworkConfig.AddressMode] = [
+ .dhcp,
+ .static,
+ ]
+
}
///
/// Available flags auxiliary network protocols
- public enum ProtocolFlags: SwiftProtobuf.Enum {
+ public enum ProtocolFlags: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -817,9 +832,15 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.NetworkConfig.ProtocolFlags] = [
+ .noBroadcast,
+ .udpBroadcast,
+ ]
+
}
- public struct IpV4Config {
+ public struct IpV4Config: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -852,7 +873,7 @@ public struct Config {
///
/// Display Config
- public struct DisplayConfig {
+ public struct DisplayConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -913,7 +934,7 @@ public struct Config {
///
/// How the GPS coordinates are displayed on the OLED screen.
- public enum GpsCoordinateFormat: SwiftProtobuf.Enum {
+ public enum GpsCoordinateFormat: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -976,11 +997,21 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.DisplayConfig.GpsCoordinateFormat] = [
+ .dec,
+ .dms,
+ .utm,
+ .mgrs,
+ .olc,
+ .osgr,
+ ]
+
}
///
/// Unit display preference
- public enum DisplayUnits: SwiftProtobuf.Enum {
+ public enum DisplayUnits: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1012,11 +1043,17 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.DisplayConfig.DisplayUnits] = [
+ .metric,
+ .imperial,
+ ]
+
}
///
/// Override OLED outo detect with this if it fails.
- public enum OledType: SwiftProtobuf.Enum {
+ public enum OledType: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1060,9 +1097,17 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.DisplayConfig.OledType] = [
+ .oledAuto,
+ .oledSsd1306,
+ .oledSh1106,
+ .oledSh1107,
+ ]
+
}
- public enum DisplayMode: SwiftProtobuf.Enum {
+ public enum DisplayMode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1106,9 +1151,17 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.DisplayConfig.DisplayMode] = [
+ .default,
+ .twocolor,
+ .inverted,
+ .color,
+ ]
+
}
- public enum CompassOrientation: SwiftProtobuf.Enum {
+ public enum CompassOrientation: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1176,6 +1229,18 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.DisplayConfig.CompassOrientation] = [
+ .degrees0,
+ .degrees90,
+ .degrees180,
+ .degrees270,
+ .degrees0Inverted,
+ .degrees90Inverted,
+ .degrees180Inverted,
+ .degrees270Inverted,
+ ]
+
}
public init() {}
@@ -1183,7 +1248,7 @@ public struct Config {
///
/// Lora Config
- public struct LoRaConfig {
+ public struct LoRaConfig: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1347,7 +1412,7 @@ public struct Config {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum RegionCode: SwiftProtobuf.Enum {
+ public enum RegionCode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1499,12 +1564,38 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.LoRaConfig.RegionCode] = [
+ .unset,
+ .us,
+ .eu433,
+ .eu868,
+ .cn,
+ .jp,
+ .anz,
+ .kr,
+ .tw,
+ .ru,
+ .in,
+ .nz865,
+ .th,
+ .lora24,
+ .ua433,
+ .ua868,
+ .my433,
+ .my919,
+ .sg923,
+ .ph433,
+ .ph868,
+ .ph915,
+ ]
+
}
///
/// Standard predefined channel settings
/// Note: these mappings must match ModemPreset Choice in the device code.
- public enum ModemPreset: SwiftProtobuf.Enum {
+ public enum ModemPreset: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1518,6 +1609,8 @@ public struct Config {
///
/// Very Long Range - Slow
/// Deprecated in 2.5: Works only with txco and is unusably slow
+ ///
+ /// NOTE: This enum value was marked as deprecated in the .proto file
case veryLongSlow // = 2
///
@@ -1581,6 +1674,19 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.LoRaConfig.ModemPreset] = [
+ .longFast,
+ .longSlow,
+ .veryLongSlow,
+ .mediumSlow,
+ .mediumFast,
+ .shortSlow,
+ .shortFast,
+ .longModerate,
+ .shortTurbo,
+ ]
+
}
public init() {}
@@ -1588,7 +1694,7 @@ public struct Config {
fileprivate var _storage = _StorageClass.defaultInstance
}
- public struct BluetoothConfig {
+ public struct BluetoothConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1607,7 +1713,7 @@ public struct Config {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum PairingMode: SwiftProtobuf.Enum {
+ public enum PairingMode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1645,12 +1751,19 @@ public struct Config {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Config.BluetoothConfig.PairingMode] = [
+ .randomPin,
+ .fixedPin,
+ .noPin,
+ ]
+
}
public init() {}
}
- public struct SecurityConfig {
+ public struct SecurityConfig: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1694,7 +1807,7 @@ public struct Config {
///
/// Blank config request, strictly for getting the session key
- public struct SessionkeyConfig {
+ public struct SessionkeyConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1707,217 +1820,6 @@ public struct Config {
public init() {}
}
-#if swift(>=4.2)
-
-extension Config.DeviceConfig.Role: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.DeviceConfig.Role] = [
- .client,
- .clientMute,
- .router,
- .routerClient,
- .repeater,
- .tracker,
- .sensor,
- .tak,
- .clientHidden,
- .lostAndFound,
- .takTracker,
- .routerLate,
- ]
-}
-
-extension Config.DeviceConfig.RebroadcastMode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.DeviceConfig.RebroadcastMode] = [
- .all,
- .allSkipDecoding,
- .localOnly,
- .knownOnly,
- .none,
- .corePortnumsOnly,
- ]
-}
-
-extension Config.PositionConfig.PositionFlags: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.PositionConfig.PositionFlags] = [
- .unset,
- .altitude,
- .altitudeMsl,
- .geoidalSeparation,
- .dop,
- .hvdop,
- .satinview,
- .seqNo,
- .timestamp,
- .heading,
- .speed,
- ]
-}
-
-extension Config.PositionConfig.GpsMode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.PositionConfig.GpsMode] = [
- .disabled,
- .enabled,
- .notPresent,
- ]
-}
-
-extension Config.NetworkConfig.AddressMode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.NetworkConfig.AddressMode] = [
- .dhcp,
- .static,
- ]
-}
-
-extension Config.NetworkConfig.ProtocolFlags: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.NetworkConfig.ProtocolFlags] = [
- .noBroadcast,
- .udpBroadcast,
- ]
-}
-
-extension Config.DisplayConfig.GpsCoordinateFormat: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.DisplayConfig.GpsCoordinateFormat] = [
- .dec,
- .dms,
- .utm,
- .mgrs,
- .olc,
- .osgr,
- ]
-}
-
-extension Config.DisplayConfig.DisplayUnits: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.DisplayConfig.DisplayUnits] = [
- .metric,
- .imperial,
- ]
-}
-
-extension Config.DisplayConfig.OledType: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.DisplayConfig.OledType] = [
- .oledAuto,
- .oledSsd1306,
- .oledSh1106,
- .oledSh1107,
- ]
-}
-
-extension Config.DisplayConfig.DisplayMode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.DisplayConfig.DisplayMode] = [
- .default,
- .twocolor,
- .inverted,
- .color,
- ]
-}
-
-extension Config.DisplayConfig.CompassOrientation: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.DisplayConfig.CompassOrientation] = [
- .degrees0,
- .degrees90,
- .degrees180,
- .degrees270,
- .degrees0Inverted,
- .degrees90Inverted,
- .degrees180Inverted,
- .degrees270Inverted,
- ]
-}
-
-extension Config.LoRaConfig.RegionCode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.LoRaConfig.RegionCode] = [
- .unset,
- .us,
- .eu433,
- .eu868,
- .cn,
- .jp,
- .anz,
- .kr,
- .tw,
- .ru,
- .in,
- .nz865,
- .th,
- .lora24,
- .ua433,
- .ua868,
- .my433,
- .my919,
- .sg923,
- .ph433,
- .ph868,
- .ph915,
- ]
-}
-
-extension Config.LoRaConfig.ModemPreset: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.LoRaConfig.ModemPreset] = [
- .longFast,
- .longSlow,
- .veryLongSlow,
- .mediumSlow,
- .mediumFast,
- .shortSlow,
- .shortFast,
- .longModerate,
- .shortTurbo,
- ]
-}
-
-extension Config.BluetoothConfig.PairingMode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Config.BluetoothConfig.PairingMode] = [
- .randomPin,
- .fixedPin,
- .noPin,
- ]
-}
-
-#endif // swift(>=4.2)
-
-#if swift(>=5.5) && canImport(_Concurrency)
-extension Config: @unchecked Sendable {}
-extension Config.OneOf_PayloadVariant: @unchecked Sendable {}
-extension Config.DeviceConfig: @unchecked Sendable {}
-extension Config.DeviceConfig.Role: @unchecked Sendable {}
-extension Config.DeviceConfig.RebroadcastMode: @unchecked Sendable {}
-extension Config.PositionConfig: @unchecked Sendable {}
-extension Config.PositionConfig.PositionFlags: @unchecked Sendable {}
-extension Config.PositionConfig.GpsMode: @unchecked Sendable {}
-extension Config.PowerConfig: @unchecked Sendable {}
-extension Config.NetworkConfig: @unchecked Sendable {}
-extension Config.NetworkConfig.AddressMode: @unchecked Sendable {}
-extension Config.NetworkConfig.ProtocolFlags: @unchecked Sendable {}
-extension Config.NetworkConfig.IpV4Config: @unchecked Sendable {}
-extension Config.DisplayConfig: @unchecked Sendable {}
-extension Config.DisplayConfig.GpsCoordinateFormat: @unchecked Sendable {}
-extension Config.DisplayConfig.DisplayUnits: @unchecked Sendable {}
-extension Config.DisplayConfig.OledType: @unchecked Sendable {}
-extension Config.DisplayConfig.DisplayMode: @unchecked Sendable {}
-extension Config.DisplayConfig.CompassOrientation: @unchecked Sendable {}
-extension Config.LoRaConfig: @unchecked Sendable {}
-extension Config.LoRaConfig.RegionCode: @unchecked Sendable {}
-extension Config.LoRaConfig.ModemPreset: @unchecked Sendable {}
-extension Config.BluetoothConfig: @unchecked Sendable {}
-extension Config.BluetoothConfig.PairingMode: @unchecked Sendable {}
-extension Config.SecurityConfig: @unchecked Sendable {}
-extension Config.SessionkeyConfig: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
@@ -2425,7 +2327,7 @@ extension Config.PowerConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
if self.onBatteryShutdownAfterSecs != 0 {
try visitor.visitSingularUInt32Field(value: self.onBatteryShutdownAfterSecs, fieldNumber: 2)
}
- if self.adcMultiplierOverride != 0 {
+ if self.adcMultiplierOverride.bitPattern != 0 {
try visitor.visitSingularFloatField(value: self.adcMultiplierOverride, fieldNumber: 3)
}
if self.waitBluetoothSecs != 0 {
@@ -2892,7 +2794,7 @@ extension Config.LoRaConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem
if _storage._codingRate != 0 {
try visitor.visitSingularUInt32Field(value: _storage._codingRate, fieldNumber: 5)
}
- if _storage._frequencyOffset != 0 {
+ if _storage._frequencyOffset.bitPattern != 0 {
try visitor.visitSingularFloatField(value: _storage._frequencyOffset, fieldNumber: 6)
}
if _storage._region != .unset {
@@ -2916,7 +2818,7 @@ extension Config.LoRaConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplem
if _storage._sx126XRxBoostedGain != false {
try visitor.visitSingularBoolField(value: _storage._sx126XRxBoostedGain, fieldNumber: 13)
}
- if _storage._overrideFrequency != 0 {
+ if _storage._overrideFrequency.bitPattern != 0 {
try visitor.visitSingularFloatField(value: _storage._overrideFrequency, fieldNumber: 14)
}
if _storage._paFanDisabled != false {
@@ -3133,8 +3035,8 @@ extension Config.SessionkeyConfig: SwiftProtobuf.Message, SwiftProtobuf._Message
public static let _protobuf_nameMap = SwiftProtobuf._NameMap()
public mutating func decodeMessage(decoder: inout D) throws {
- while let _ = try decoder.nextFieldNumber() {
- }
+ // Load everything into unknown fields
+ while try decoder.nextFieldNumber() != nil {}
}
public func traverse(visitor: inout V) throws {
diff --git a/MeshtasticProtobufs/Sources/meshtastic/connection_status.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/connection_status.pb.swift
index a2ec180e..6847c0e3 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/connection_status.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/connection_status.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/connection_status.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -20,7 +20,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
typealias Version = _2
}
-public struct DeviceConnectionStatus {
+public struct DeviceConnectionStatus: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -81,7 +81,7 @@ public struct DeviceConnectionStatus {
///
/// WiFi connection status
-public struct WifiConnectionStatus {
+public struct WifiConnectionStatus: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -114,7 +114,7 @@ public struct WifiConnectionStatus {
///
/// Ethernet connection status
-public struct EthernetConnectionStatus {
+public struct EthernetConnectionStatus: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -139,7 +139,7 @@ public struct EthernetConnectionStatus {
///
/// Ethernet or WiFi connection status
-public struct NetworkConnectionStatus {
+public struct NetworkConnectionStatus: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -167,7 +167,7 @@ public struct NetworkConnectionStatus {
///
/// Bluetooth connection status
-public struct BluetoothConnectionStatus {
+public struct BluetoothConnectionStatus: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -191,7 +191,7 @@ public struct BluetoothConnectionStatus {
///
/// Serial connection status
-public struct SerialConnectionStatus {
+public struct SerialConnectionStatus: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -209,15 +209,6 @@ public struct SerialConnectionStatus {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension DeviceConnectionStatus: @unchecked Sendable {}
-extension WifiConnectionStatus: @unchecked Sendable {}
-extension EthernetConnectionStatus: @unchecked Sendable {}
-extension NetworkConnectionStatus: @unchecked Sendable {}
-extension BluetoothConnectionStatus: @unchecked Sendable {}
-extension SerialConnectionStatus: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/device_ui.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/device_ui.pb.swift
index 5e13b166..0281d6c1 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/device_ui.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/device_ui.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/device_ui.proto
@@ -20,7 +21,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
typealias Version = _2
}
-public enum Theme: SwiftProtobuf.Enum {
+public enum Theme: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -58,24 +59,18 @@ public enum Theme: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension Theme: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [Theme] = [
.dark,
.light,
.red,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Localization
-public enum Language: SwiftProtobuf.Enum {
+public enum Language: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -203,11 +198,6 @@ public enum Language: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension Language: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [Language] = [
.english,
@@ -229,11 +219,10 @@ extension Language: CaseIterable {
.simplifiedChinese,
.traditionalChinese,
]
+
}
-#endif // swift(>=4.2)
-
-public struct DeviceUIConfig {
+public struct DeviceUIConfig: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -246,21 +235,21 @@ public struct DeviceUIConfig {
}
///
- /// TFT display brightness 1..255
+ /// TFT display brightness 1..255
public var screenBrightness: UInt32 {
get {return _storage._screenBrightness}
set {_uniqueStorage()._screenBrightness = newValue}
}
///
- /// Screen timeout 0..900
+ /// Screen timeout 0..900
public var screenTimeout: UInt32 {
get {return _storage._screenTimeout}
set {_uniqueStorage()._screenTimeout = newValue}
}
///
- /// Screen/Settings lock enabled
+ /// Screen/Settings lock enabled
public var screenLock: Bool {
get {return _storage._screenLock}
set {_uniqueStorage()._screenLock = newValue}
@@ -277,7 +266,7 @@ public struct DeviceUIConfig {
}
///
- /// Color theme
+ /// Color theme
public var theme: Theme {
get {return _storage._theme}
set {_uniqueStorage()._theme = newValue}
@@ -301,14 +290,14 @@ public struct DeviceUIConfig {
}
///
- /// Localization
+ /// Localization
public var language: Language {
get {return _storage._language}
set {_uniqueStorage()._language = newValue}
}
///
- /// Node list filter
+ /// Node list filter
public var nodeFilter: NodeFilter {
get {return _storage._nodeFilter ?? NodeFilter()}
set {_uniqueStorage()._nodeFilter = newValue}
@@ -336,6 +325,17 @@ public struct DeviceUIConfig {
set {_uniqueStorage()._calibrationData = newValue}
}
+ ///
+ /// Map related data
+ public var mapData: Map {
+ get {return _storage._mapData ?? Map()}
+ set {_uniqueStorage()._mapData = newValue}
+ }
+ /// Returns true if `mapData` has been explicitly set.
+ public var hasMapData: Bool {return _storage._mapData != nil}
+ /// Clears the value of `mapData`. Subsequent reads from it will return its default value.
+ public mutating func clearMapData() {_uniqueStorage()._mapData = nil}
+
public var unknownFields = SwiftProtobuf.UnknownStorage()
public init() {}
@@ -343,7 +343,7 @@ public struct DeviceUIConfig {
fileprivate var _storage = _StorageClass.defaultInstance
}
-public struct NodeFilter {
+public struct NodeFilter: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -381,7 +381,7 @@ public struct NodeFilter {
public init() {}
}
-public struct NodeHighlight {
+public struct NodeHighlight: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -411,13 +411,58 @@ public struct NodeHighlight {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension Theme: @unchecked Sendable {}
-extension Language: @unchecked Sendable {}
-extension DeviceUIConfig: @unchecked Sendable {}
-extension NodeFilter: @unchecked Sendable {}
-extension NodeHighlight: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
+public struct GeoPoint: Sendable {
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
+ // methods supported on all messages.
+
+ ///
+ /// Zoom level
+ public var zoom: Int32 = 0
+
+ ///
+ /// Coordinate: latitude
+ public var latitude: Int32 = 0
+
+ ///
+ /// Coordinate: longitude
+ public var longitude: Int32 = 0
+
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
+
+ public init() {}
+}
+
+public struct Map: Sendable {
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
+ // methods supported on all messages.
+
+ ///
+ /// Home coordinates
+ public var home: GeoPoint {
+ get {return _home ?? GeoPoint()}
+ set {_home = newValue}
+ }
+ /// Returns true if `home` has been explicitly set.
+ public var hasHome: Bool {return self._home != nil}
+ /// Clears the value of `home`. Subsequent reads from it will return its default value.
+ public mutating func clearHome() {self._home = nil}
+
+ ///
+ /// Map tile style
+ public var style: String = String()
+
+ ///
+ /// Map scroll follows GPS
+ public var followGps: Bool = false
+
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
+
+ public init() {}
+
+ fileprivate var _home: GeoPoint? = nil
+}
// MARK: - Code below here is support for the SwiftProtobuf runtime.
@@ -471,6 +516,7 @@ extension DeviceUIConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
12: .standard(proto: "node_filter"),
13: .standard(proto: "node_highlight"),
14: .standard(proto: "calibration_data"),
+ 15: .standard(proto: "map_data"),
]
fileprivate class _StorageClass {
@@ -488,6 +534,7 @@ extension DeviceUIConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
var _nodeFilter: NodeFilter? = nil
var _nodeHighlight: NodeHighlight? = nil
var _calibrationData: Data = Data()
+ var _mapData: Map? = nil
#if swift(>=5.10)
// This property is used as the initial default value for new instances of the type.
@@ -516,6 +563,7 @@ extension DeviceUIConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
_nodeFilter = source._nodeFilter
_nodeHighlight = source._nodeHighlight
_calibrationData = source._calibrationData
+ _mapData = source._mapData
}
}
@@ -548,6 +596,7 @@ extension DeviceUIConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
case 12: try { try decoder.decodeSingularMessageField(value: &_storage._nodeFilter) }()
case 13: try { try decoder.decodeSingularMessageField(value: &_storage._nodeHighlight) }()
case 14: try { try decoder.decodeSingularBytesField(value: &_storage._calibrationData) }()
+ case 15: try { try decoder.decodeSingularMessageField(value: &_storage._mapData) }()
default: break
}
}
@@ -602,6 +651,9 @@ extension DeviceUIConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
if !_storage._calibrationData.isEmpty {
try visitor.visitSingularBytesField(value: _storage._calibrationData, fieldNumber: 14)
}
+ try { if let v = _storage._mapData {
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 15)
+ } }()
}
try unknownFields.traverse(visitor: &visitor)
}
@@ -625,6 +677,7 @@ extension DeviceUIConfig: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
if _storage._nodeFilter != rhs_storage._nodeFilter {return false}
if _storage._nodeHighlight != rhs_storage._nodeHighlight {return false}
if _storage._calibrationData != rhs_storage._calibrationData {return false}
+ if _storage._mapData != rhs_storage._mapData {return false}
return true
}
if !storagesAreEqual {return false}
@@ -757,3 +810,95 @@ extension NodeHighlight: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementa
return true
}
}
+
+extension GeoPoint: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
+ public static let protoMessageName: String = _protobuf_package + ".GeoPoint"
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 1: .same(proto: "zoom"),
+ 2: .same(proto: "latitude"),
+ 3: .same(proto: "longitude"),
+ ]
+
+ public mutating func decodeMessage(decoder: inout D) throws {
+ while let fieldNumber = try decoder.nextFieldNumber() {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every case branch when no optimizations are
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
+ switch fieldNumber {
+ case 1: try { try decoder.decodeSingularInt32Field(value: &self.zoom) }()
+ case 2: try { try decoder.decodeSingularInt32Field(value: &self.latitude) }()
+ case 3: try { try decoder.decodeSingularInt32Field(value: &self.longitude) }()
+ default: break
+ }
+ }
+ }
+
+ public func traverse(visitor: inout V) throws {
+ if self.zoom != 0 {
+ try visitor.visitSingularInt32Field(value: self.zoom, fieldNumber: 1)
+ }
+ if self.latitude != 0 {
+ try visitor.visitSingularInt32Field(value: self.latitude, fieldNumber: 2)
+ }
+ if self.longitude != 0 {
+ try visitor.visitSingularInt32Field(value: self.longitude, fieldNumber: 3)
+ }
+ try unknownFields.traverse(visitor: &visitor)
+ }
+
+ public static func ==(lhs: GeoPoint, rhs: GeoPoint) -> Bool {
+ if lhs.zoom != rhs.zoom {return false}
+ if lhs.latitude != rhs.latitude {return false}
+ if lhs.longitude != rhs.longitude {return false}
+ if lhs.unknownFields != rhs.unknownFields {return false}
+ return true
+ }
+}
+
+extension Map: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
+ public static let protoMessageName: String = _protobuf_package + ".Map"
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 1: .same(proto: "home"),
+ 2: .same(proto: "style"),
+ 3: .standard(proto: "follow_gps"),
+ ]
+
+ public mutating func decodeMessage(decoder: inout D) throws {
+ while let fieldNumber = try decoder.nextFieldNumber() {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every case branch when no optimizations are
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
+ switch fieldNumber {
+ case 1: try { try decoder.decodeSingularMessageField(value: &self._home) }()
+ case 2: try { try decoder.decodeSingularStringField(value: &self.style) }()
+ case 3: try { try decoder.decodeSingularBoolField(value: &self.followGps) }()
+ default: break
+ }
+ }
+ }
+
+ public func traverse(visitor: inout V) throws {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every if/case branch local when no optimizations
+ // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
+ // https://github.com/apple/swift-protobuf/issues/1182
+ try { if let v = self._home {
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 1)
+ } }()
+ if !self.style.isEmpty {
+ try visitor.visitSingularStringField(value: self.style, fieldNumber: 2)
+ }
+ if self.followGps != false {
+ try visitor.visitSingularBoolField(value: self.followGps, fieldNumber: 3)
+ }
+ try unknownFields.traverse(visitor: &visitor)
+ }
+
+ public static func ==(lhs: Map, rhs: Map) -> Bool {
+ if lhs._home != rhs._home {return false}
+ if lhs.style != rhs.style {return false}
+ if lhs.followGps != rhs.followGps {return false}
+ if lhs.unknownFields != rhs.unknownFields {return false}
+ return true
+ }
+}
diff --git a/MeshtasticProtobufs/Sources/meshtastic/deviceonly.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/deviceonly.pb.swift
index 34a33373..72248719 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/deviceonly.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/deviceonly.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/deviceonly.proto
@@ -22,7 +23,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// Position with static location information only for NodeDBLite
-public struct PositionLite {
+public struct PositionLite: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -57,13 +58,15 @@ public struct PositionLite {
public init() {}
}
-public struct UserLite {
+public struct UserLite: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
///
/// This is the addr of the radio.
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var macaddr: Data = Data()
///
@@ -102,7 +105,7 @@ public struct UserLite {
public init() {}
}
-public struct NodeInfoLite {
+public struct NodeInfoLite: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -205,7 +208,7 @@ public struct NodeInfoLite {
}
///
- /// Last byte of the node number of the node that should be used as the next hop to reach this node.
+ /// Last byte of the node number of the node that should be used as the next hop to reach this node.
public var nextHop: UInt32 {
get {return _storage._nextHop}
set {_uniqueStorage()._nextHop = newValue}
@@ -224,7 +227,7 @@ public struct NodeInfoLite {
/// FIXME, since we write this each time we enter deep sleep (and have infinite
/// flash) it would be better to use some sort of append only data structure for
/// the receive queue and use the preferences store for the other stuff
-public struct DeviceState {
+public struct DeviceState: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -284,13 +287,18 @@ public struct DeviceState {
/// Used only during development.
/// Indicates developer is testing and changes should never be saved to flash.
/// Deprecated in 2.3.1
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var noSave: Bool {
get {return _storage._noSave}
set {_uniqueStorage()._noSave = newValue}
}
///
- /// Some GPS receivers seem to have bogus settings from the factory, so we always do one factory reset.
+ /// Previously used to manage GPS factory resets.
+ /// Deprecated in 2.5.23
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var didGpsReset: Bool {
get {return _storage._didGpsReset}
set {_uniqueStorage()._didGpsReset = newValue}
@@ -316,13 +324,6 @@ public struct DeviceState {
set {_uniqueStorage()._nodeRemoteHardwarePins = newValue}
}
- ///
- /// New lite version of NodeDB to decrease memory footprint
- public var nodeDbLite: [NodeInfoLite] {
- get {return _storage._nodeDbLite}
- set {_uniqueStorage()._nodeDbLite = newValue}
- }
-
public var unknownFields = SwiftProtobuf.UnknownStorage()
public init() {}
@@ -330,9 +331,29 @@ public struct DeviceState {
fileprivate var _storage = _StorageClass.defaultInstance
}
+public struct NodeDatabase: Sendable {
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
+ // methods supported on all messages.
+
+ ///
+ /// A version integer used to invalidate old save files when we make
+ /// incompatible changes This integer is set at build time and is private to
+ /// NodeDB.cpp in the device code.
+ public var version: UInt32 = 0
+
+ ///
+ /// New lite version of NodeDB to decrease memory footprint
+ public var nodes: [NodeInfoLite] = []
+
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
+
+ public init() {}
+}
+
///
/// The on-disk saved channels
-public struct ChannelFile {
+public struct ChannelFile: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -352,13 +373,74 @@ public struct ChannelFile {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension PositionLite: @unchecked Sendable {}
-extension UserLite: @unchecked Sendable {}
-extension NodeInfoLite: @unchecked Sendable {}
-extension DeviceState: @unchecked Sendable {}
-extension ChannelFile: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
+///
+/// The on-disk backup of the node's preferences
+public struct BackupPreferences: Sendable {
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
+ // methods supported on all messages.
+
+ ///
+ /// The version of the backup
+ public var version: UInt32 = 0
+
+ ///
+ /// The timestamp of the backup (if node has time)
+ public var timestamp: UInt32 = 0
+
+ ///
+ /// The node's configuration
+ public var config: LocalConfig {
+ get {return _config ?? LocalConfig()}
+ set {_config = newValue}
+ }
+ /// Returns true if `config` has been explicitly set.
+ public var hasConfig: Bool {return self._config != nil}
+ /// Clears the value of `config`. Subsequent reads from it will return its default value.
+ public mutating func clearConfig() {self._config = nil}
+
+ ///
+ /// The node's module configuration
+ public var moduleConfig: LocalModuleConfig {
+ get {return _moduleConfig ?? LocalModuleConfig()}
+ set {_moduleConfig = newValue}
+ }
+ /// Returns true if `moduleConfig` has been explicitly set.
+ public var hasModuleConfig: Bool {return self._moduleConfig != nil}
+ /// Clears the value of `moduleConfig`. Subsequent reads from it will return its default value.
+ public mutating func clearModuleConfig() {self._moduleConfig = nil}
+
+ ///
+ /// The node's channels
+ public var channels: ChannelFile {
+ get {return _channels ?? ChannelFile()}
+ set {_channels = newValue}
+ }
+ /// Returns true if `channels` has been explicitly set.
+ public var hasChannels: Bool {return self._channels != nil}
+ /// Clears the value of `channels`. Subsequent reads from it will return its default value.
+ public mutating func clearChannels() {self._channels = nil}
+
+ ///
+ /// The node's user (owner) information
+ public var owner: User {
+ get {return _owner ?? User()}
+ set {_owner = newValue}
+ }
+ /// Returns true if `owner` has been explicitly set.
+ public var hasOwner: Bool {return self._owner != nil}
+ /// Clears the value of `owner`. Subsequent reads from it will return its default value.
+ public mutating func clearOwner() {self._owner = nil}
+
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
+
+ public init() {}
+
+ fileprivate var _config: LocalConfig? = nil
+ fileprivate var _moduleConfig: LocalModuleConfig? = nil
+ fileprivate var _channels: ChannelFile? = nil
+ fileprivate var _owner: User? = nil
+}
// MARK: - Code below here is support for the SwiftProtobuf runtime.
@@ -595,7 +677,7 @@ extension NodeInfoLite: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
try { if let v = _storage._position {
try visitor.visitSingularMessageField(value: v, fieldNumber: 3)
} }()
- if _storage._snr != 0 {
+ if _storage._snr.bitPattern != 0 {
try visitor.visitSingularFloatField(value: _storage._snr, fieldNumber: 4)
}
if _storage._lastHeard != 0 {
@@ -664,7 +746,6 @@ extension DeviceState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
11: .standard(proto: "did_gps_reset"),
12: .standard(proto: "rx_waypoint"),
13: .standard(proto: "node_remote_hardware_pins"),
- 14: .standard(proto: "node_db_lite"),
]
fileprivate class _StorageClass {
@@ -677,7 +758,6 @@ extension DeviceState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
var _didGpsReset: Bool = false
var _rxWaypoint: MeshPacket? = nil
var _nodeRemoteHardwarePins: [NodeRemoteHardwarePin] = []
- var _nodeDbLite: [NodeInfoLite] = []
#if swift(>=5.10)
// This property is used as the initial default value for new instances of the type.
@@ -701,7 +781,6 @@ extension DeviceState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
_didGpsReset = source._didGpsReset
_rxWaypoint = source._rxWaypoint
_nodeRemoteHardwarePins = source._nodeRemoteHardwarePins
- _nodeDbLite = source._nodeDbLite
}
}
@@ -729,7 +808,6 @@ extension DeviceState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
case 11: try { try decoder.decodeSingularBoolField(value: &_storage._didGpsReset) }()
case 12: try { try decoder.decodeSingularMessageField(value: &_storage._rxWaypoint) }()
case 13: try { try decoder.decodeRepeatedMessageField(value: &_storage._nodeRemoteHardwarePins) }()
- case 14: try { try decoder.decodeRepeatedMessageField(value: &_storage._nodeDbLite) }()
default: break
}
}
@@ -769,9 +847,6 @@ extension DeviceState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
if !_storage._nodeRemoteHardwarePins.isEmpty {
try visitor.visitRepeatedMessageField(value: _storage._nodeRemoteHardwarePins, fieldNumber: 13)
}
- if !_storage._nodeDbLite.isEmpty {
- try visitor.visitRepeatedMessageField(value: _storage._nodeDbLite, fieldNumber: 14)
- }
}
try unknownFields.traverse(visitor: &visitor)
}
@@ -790,7 +865,6 @@ extension DeviceState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
if _storage._didGpsReset != rhs_storage._didGpsReset {return false}
if _storage._rxWaypoint != rhs_storage._rxWaypoint {return false}
if _storage._nodeRemoteHardwarePins != rhs_storage._nodeRemoteHardwarePins {return false}
- if _storage._nodeDbLite != rhs_storage._nodeDbLite {return false}
return true
}
if !storagesAreEqual {return false}
@@ -800,6 +874,44 @@ extension DeviceState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
}
}
+extension NodeDatabase: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
+ public static let protoMessageName: String = _protobuf_package + ".NodeDatabase"
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 1: .same(proto: "version"),
+ 2: .same(proto: "nodes"),
+ ]
+
+ public mutating func decodeMessage(decoder: inout D) throws {
+ while let fieldNumber = try decoder.nextFieldNumber() {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every case branch when no optimizations are
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
+ switch fieldNumber {
+ case 1: try { try decoder.decodeSingularUInt32Field(value: &self.version) }()
+ case 2: try { try decoder.decodeRepeatedMessageField(value: &self.nodes) }()
+ default: break
+ }
+ }
+ }
+
+ public func traverse(visitor: inout V) throws {
+ if self.version != 0 {
+ try visitor.visitSingularUInt32Field(value: self.version, fieldNumber: 1)
+ }
+ if !self.nodes.isEmpty {
+ try visitor.visitRepeatedMessageField(value: self.nodes, fieldNumber: 2)
+ }
+ try unknownFields.traverse(visitor: &visitor)
+ }
+
+ public static func ==(lhs: NodeDatabase, rhs: NodeDatabase) -> Bool {
+ if lhs.version != rhs.version {return false}
+ if lhs.nodes != rhs.nodes {return false}
+ if lhs.unknownFields != rhs.unknownFields {return false}
+ return true
+ }
+}
+
extension ChannelFile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
public static let protoMessageName: String = _protobuf_package + ".ChannelFile"
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
@@ -837,3 +949,69 @@ extension ChannelFile: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementati
return true
}
}
+
+extension BackupPreferences: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
+ public static let protoMessageName: String = _protobuf_package + ".BackupPreferences"
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 1: .same(proto: "version"),
+ 2: .same(proto: "timestamp"),
+ 3: .same(proto: "config"),
+ 4: .standard(proto: "module_config"),
+ 5: .same(proto: "channels"),
+ 6: .same(proto: "owner"),
+ ]
+
+ public mutating func decodeMessage(decoder: inout D) throws {
+ while let fieldNumber = try decoder.nextFieldNumber() {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every case branch when no optimizations are
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
+ switch fieldNumber {
+ case 1: try { try decoder.decodeSingularUInt32Field(value: &self.version) }()
+ case 2: try { try decoder.decodeSingularFixed32Field(value: &self.timestamp) }()
+ case 3: try { try decoder.decodeSingularMessageField(value: &self._config) }()
+ case 4: try { try decoder.decodeSingularMessageField(value: &self._moduleConfig) }()
+ case 5: try { try decoder.decodeSingularMessageField(value: &self._channels) }()
+ case 6: try { try decoder.decodeSingularMessageField(value: &self._owner) }()
+ default: break
+ }
+ }
+ }
+
+ public func traverse(visitor: inout V) throws {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every if/case branch local when no optimizations
+ // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
+ // https://github.com/apple/swift-protobuf/issues/1182
+ if self.version != 0 {
+ try visitor.visitSingularUInt32Field(value: self.version, fieldNumber: 1)
+ }
+ if self.timestamp != 0 {
+ try visitor.visitSingularFixed32Field(value: self.timestamp, fieldNumber: 2)
+ }
+ try { if let v = self._config {
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 3)
+ } }()
+ try { if let v = self._moduleConfig {
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 4)
+ } }()
+ try { if let v = self._channels {
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 5)
+ } }()
+ try { if let v = self._owner {
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 6)
+ } }()
+ try unknownFields.traverse(visitor: &visitor)
+ }
+
+ public static func ==(lhs: BackupPreferences, rhs: BackupPreferences) -> Bool {
+ if lhs.version != rhs.version {return false}
+ if lhs.timestamp != rhs.timestamp {return false}
+ if lhs._config != rhs._config {return false}
+ if lhs._moduleConfig != rhs._moduleConfig {return false}
+ if lhs._channels != rhs._channels {return false}
+ if lhs._owner != rhs._owner {return false}
+ if lhs.unknownFields != rhs.unknownFields {return false}
+ return true
+ }
+}
diff --git a/MeshtasticProtobufs/Sources/meshtastic/interdevice.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/interdevice.pb.swift
new file mode 100644
index 00000000..165ed685
--- /dev/null
+++ b/MeshtasticProtobufs/Sources/meshtastic/interdevice.pb.swift
@@ -0,0 +1,328 @@
+// DO NOT EDIT.
+// swift-format-ignore-file
+// swiftlint:disable all
+//
+// Generated by the Swift generator plugin for the protocol buffer compiler.
+// Source: meshtastic/interdevice.proto
+//
+// For information on using the generated types, please see the documentation:
+// https://github.com/apple/swift-protobuf/
+
+import SwiftProtobuf
+
+// If the compiler emits an error on this type, it is because this file
+// was generated by a version of the `protoc` Swift plug-in that is
+// incompatible with the version of SwiftProtobuf to which you are linking.
+// Please ensure that you are building against the same version of the API
+// that was used to generate this file.
+fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck {
+ struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {}
+ typealias Version = _2
+}
+
+public enum MessageType: SwiftProtobuf.Enum, Swift.CaseIterable {
+ public typealias RawValue = Int
+ case ack // = 0
+
+ /// in ms
+ case collectInterval // = 160
+
+ /// duration ms
+ case beepOn // = 161
+
+ /// cancel prematurely
+ case beepOff // = 162
+ case shutdown // = 163
+ case powerOn // = 164
+ case scd41Temp // = 176
+ case scd41Humidity // = 177
+ case scd41Co2 // = 178
+ case aht20Temp // = 179
+ case aht20Humidity // = 180
+ case tvocIndex // = 181
+ case UNRECOGNIZED(Int)
+
+ public init() {
+ self = .ack
+ }
+
+ public init?(rawValue: Int) {
+ switch rawValue {
+ case 0: self = .ack
+ case 160: self = .collectInterval
+ case 161: self = .beepOn
+ case 162: self = .beepOff
+ case 163: self = .shutdown
+ case 164: self = .powerOn
+ case 176: self = .scd41Temp
+ case 177: self = .scd41Humidity
+ case 178: self = .scd41Co2
+ case 179: self = .aht20Temp
+ case 180: self = .aht20Humidity
+ case 181: self = .tvocIndex
+ default: self = .UNRECOGNIZED(rawValue)
+ }
+ }
+
+ public var rawValue: Int {
+ switch self {
+ case .ack: return 0
+ case .collectInterval: return 160
+ case .beepOn: return 161
+ case .beepOff: return 162
+ case .shutdown: return 163
+ case .powerOn: return 164
+ case .scd41Temp: return 176
+ case .scd41Humidity: return 177
+ case .scd41Co2: return 178
+ case .aht20Temp: return 179
+ case .aht20Humidity: return 180
+ case .tvocIndex: return 181
+ case .UNRECOGNIZED(let i): return i
+ }
+ }
+
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [MessageType] = [
+ .ack,
+ .collectInterval,
+ .beepOn,
+ .beepOff,
+ .shutdown,
+ .powerOn,
+ .scd41Temp,
+ .scd41Humidity,
+ .scd41Co2,
+ .aht20Temp,
+ .aht20Humidity,
+ .tvocIndex,
+ ]
+
+}
+
+public struct SensorData: Sendable {
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
+ // methods supported on all messages.
+
+ /// The message type
+ public var type: MessageType = .ack
+
+ /// The sensor data, either as a float or an uint32
+ public var data: SensorData.OneOf_Data? = nil
+
+ public var floatValue: Float {
+ get {
+ if case .floatValue(let v)? = data {return v}
+ return 0
+ }
+ set {data = .floatValue(newValue)}
+ }
+
+ public var uint32Value: UInt32 {
+ get {
+ if case .uint32Value(let v)? = data {return v}
+ return 0
+ }
+ set {data = .uint32Value(newValue)}
+ }
+
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
+
+ /// The sensor data, either as a float or an uint32
+ public enum OneOf_Data: Equatable, Sendable {
+ case floatValue(Float)
+ case uint32Value(UInt32)
+
+ }
+
+ public init() {}
+}
+
+public struct InterdeviceMessage: Sendable {
+ // SwiftProtobuf.Message conformance is added in an extension below. See the
+ // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
+ // methods supported on all messages.
+
+ /// The message data
+ public var data: InterdeviceMessage.OneOf_Data? = nil
+
+ public var nmea: String {
+ get {
+ if case .nmea(let v)? = data {return v}
+ return String()
+ }
+ set {data = .nmea(newValue)}
+ }
+
+ public var sensor: SensorData {
+ get {
+ if case .sensor(let v)? = data {return v}
+ return SensorData()
+ }
+ set {data = .sensor(newValue)}
+ }
+
+ public var unknownFields = SwiftProtobuf.UnknownStorage()
+
+ /// The message data
+ public enum OneOf_Data: Equatable, Sendable {
+ case nmea(String)
+ case sensor(SensorData)
+
+ }
+
+ public init() {}
+}
+
+// MARK: - Code below here is support for the SwiftProtobuf runtime.
+
+fileprivate let _protobuf_package = "meshtastic"
+
+extension MessageType: SwiftProtobuf._ProtoNameProviding {
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 0: .same(proto: "ACK"),
+ 160: .same(proto: "COLLECT_INTERVAL"),
+ 161: .same(proto: "BEEP_ON"),
+ 162: .same(proto: "BEEP_OFF"),
+ 163: .same(proto: "SHUTDOWN"),
+ 164: .same(proto: "POWER_ON"),
+ 176: .same(proto: "SCD41_TEMP"),
+ 177: .same(proto: "SCD41_HUMIDITY"),
+ 178: .same(proto: "SCD41_CO2"),
+ 179: .same(proto: "AHT20_TEMP"),
+ 180: .same(proto: "AHT20_HUMIDITY"),
+ 181: .same(proto: "TVOC_INDEX"),
+ ]
+}
+
+extension SensorData: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
+ public static let protoMessageName: String = _protobuf_package + ".SensorData"
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 1: .same(proto: "type"),
+ 2: .standard(proto: "float_value"),
+ 3: .standard(proto: "uint32_value"),
+ ]
+
+ public mutating func decodeMessage(decoder: inout D) throws {
+ while let fieldNumber = try decoder.nextFieldNumber() {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every case branch when no optimizations are
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
+ switch fieldNumber {
+ case 1: try { try decoder.decodeSingularEnumField(value: &self.type) }()
+ case 2: try {
+ var v: Float?
+ try decoder.decodeSingularFloatField(value: &v)
+ if let v = v {
+ if self.data != nil {try decoder.handleConflictingOneOf()}
+ self.data = .floatValue(v)
+ }
+ }()
+ case 3: try {
+ var v: UInt32?
+ try decoder.decodeSingularUInt32Field(value: &v)
+ if let v = v {
+ if self.data != nil {try decoder.handleConflictingOneOf()}
+ self.data = .uint32Value(v)
+ }
+ }()
+ default: break
+ }
+ }
+ }
+
+ public func traverse(visitor: inout V) throws {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every if/case branch local when no optimizations
+ // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
+ // https://github.com/apple/swift-protobuf/issues/1182
+ if self.type != .ack {
+ try visitor.visitSingularEnumField(value: self.type, fieldNumber: 1)
+ }
+ switch self.data {
+ case .floatValue?: try {
+ guard case .floatValue(let v)? = self.data else { preconditionFailure() }
+ try visitor.visitSingularFloatField(value: v, fieldNumber: 2)
+ }()
+ case .uint32Value?: try {
+ guard case .uint32Value(let v)? = self.data else { preconditionFailure() }
+ try visitor.visitSingularUInt32Field(value: v, fieldNumber: 3)
+ }()
+ case nil: break
+ }
+ try unknownFields.traverse(visitor: &visitor)
+ }
+
+ public static func ==(lhs: SensorData, rhs: SensorData) -> Bool {
+ if lhs.type != rhs.type {return false}
+ if lhs.data != rhs.data {return false}
+ if lhs.unknownFields != rhs.unknownFields {return false}
+ return true
+ }
+}
+
+extension InterdeviceMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
+ public static let protoMessageName: String = _protobuf_package + ".InterdeviceMessage"
+ public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
+ 1: .same(proto: "nmea"),
+ 2: .same(proto: "sensor"),
+ ]
+
+ public mutating func decodeMessage(decoder: inout D) throws {
+ while let fieldNumber = try decoder.nextFieldNumber() {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every case branch when no optimizations are
+ // enabled. https://github.com/apple/swift-protobuf/issues/1034
+ switch fieldNumber {
+ case 1: try {
+ var v: String?
+ try decoder.decodeSingularStringField(value: &v)
+ if let v = v {
+ if self.data != nil {try decoder.handleConflictingOneOf()}
+ self.data = .nmea(v)
+ }
+ }()
+ case 2: try {
+ var v: SensorData?
+ var hadOneofValue = false
+ if let current = self.data {
+ hadOneofValue = true
+ if case .sensor(let m) = current {v = m}
+ }
+ try decoder.decodeSingularMessageField(value: &v)
+ if let v = v {
+ if hadOneofValue {try decoder.handleConflictingOneOf()}
+ self.data = .sensor(v)
+ }
+ }()
+ default: break
+ }
+ }
+ }
+
+ public func traverse(visitor: inout V) throws {
+ // The use of inline closures is to circumvent an issue where the compiler
+ // allocates stack space for every if/case branch local when no optimizations
+ // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
+ // https://github.com/apple/swift-protobuf/issues/1182
+ switch self.data {
+ case .nmea?: try {
+ guard case .nmea(let v)? = self.data else { preconditionFailure() }
+ try visitor.visitSingularStringField(value: v, fieldNumber: 1)
+ }()
+ case .sensor?: try {
+ guard case .sensor(let v)? = self.data else { preconditionFailure() }
+ try visitor.visitSingularMessageField(value: v, fieldNumber: 2)
+ }()
+ case nil: break
+ }
+ try unknownFields.traverse(visitor: &visitor)
+ }
+
+ public static func ==(lhs: InterdeviceMessage, rhs: InterdeviceMessage) -> Bool {
+ if lhs.data != rhs.data {return false}
+ if lhs.unknownFields != rhs.unknownFields {return false}
+ return true
+ }
+}
diff --git a/MeshtasticProtobufs/Sources/meshtastic/localonly.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/localonly.pb.swift
index 0af27466..c3356286 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/localonly.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/localonly.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/localonly.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -20,7 +20,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
typealias Version = _2
}
-public struct LocalConfig {
+public struct LocalConfig: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -129,7 +129,7 @@ public struct LocalConfig {
fileprivate var _storage = _StorageClass.defaultInstance
}
-public struct LocalModuleConfig {
+public struct LocalModuleConfig: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -293,11 +293,6 @@ public struct LocalModuleConfig {
fileprivate var _storage = _StorageClass.defaultInstance
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension LocalConfig: @unchecked Sendable {}
-extension LocalModuleConfig: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/mesh.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/mesh.pb.swift
index bea1d14d..8c869ba8 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/mesh.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/mesh.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/mesh.proto
@@ -25,7 +26,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
/// bin/build-all.sh script.
/// Because they will be used to find firmware filenames in the android app for OTA updates.
/// To match the old style filenames, _ is converted to -, p is converted to .
-public enum HardwareModel: SwiftProtobuf.Enum {
+public enum HardwareModel: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -290,7 +291,7 @@ public enum HardwareModel: SwiftProtobuf.Enum {
case cdebyteEoraS3 // = 61
///
- /// TWC_MESH_V4
+ /// TWC_MESH_V4
/// Adafruit NRF52840 feather express with SX1262, SSD1306 OLED and NEO6M GPS
case twcMeshV4 // = 62
@@ -402,6 +403,10 @@ public enum HardwareModel: SwiftProtobuf.Enum {
/// https://www.loraitalia.it
case meshlink // = 87
+ ///
+ /// Seeed XIAO nRF52840 + Wio SX1262 kit
+ case xiaoNrf52Kit // = 88
+
///
/// ------------------------------------------------------------------------------------------------------------------------------------------
/// Reserved ID For developing private Ports. These will show up in live traffic sparsely, so we can use a high number. Keep it within 8 bits.
@@ -503,6 +508,7 @@ public enum HardwareModel: SwiftProtobuf.Enum {
case 85: self = .routastic
case 86: self = .meshTab
case 87: self = .meshlink
+ case 88: self = .xiaoNrf52Kit
case 255: self = .privateHw
default: self = .UNRECOGNIZED(rawValue)
}
@@ -598,16 +604,12 @@ public enum HardwareModel: SwiftProtobuf.Enum {
case .routastic: return 85
case .meshTab: return 86
case .meshlink: return 87
+ case .xiaoNrf52Kit: return 88
case .privateHw: return 255
case .UNRECOGNIZED(let i): return i
}
}
-}
-
-#if swift(>=4.2)
-
-extension HardwareModel: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [HardwareModel] = [
.unset,
@@ -698,15 +700,15 @@ extension HardwareModel: CaseIterable {
.routastic,
.meshTab,
.meshlink,
+ .xiaoNrf52Kit,
.privateHw,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Shared constants between device and phone
-public enum Constants: SwiftProtobuf.Enum {
+public enum Constants: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -741,26 +743,20 @@ public enum Constants: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension Constants: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [Constants] = [
.zero,
.dataPayloadLen,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Error codes for critical errors
/// The device might report these fault codes on the screen.
/// If you encounter a fault code, please post on the meshtastic.discourse.group
/// and we'll try to help.
-public enum CriticalErrorCode: SwiftProtobuf.Enum {
+public enum CriticalErrorCode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -869,11 +865,6 @@ public enum CriticalErrorCode: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension CriticalErrorCode: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [CriticalErrorCode] = [
.none,
@@ -891,15 +882,14 @@ extension CriticalErrorCode: CaseIterable {
.flashCorruptionRecoverable,
.flashCorruptionUnrecoverable,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Enum for modules excluded from a device's configuration.
/// Each value represents a ModuleConfigType that can be toggled as excluded
/// by setting its corresponding bit in the `excluded_modules` bitmask field.
-public enum ExcludedModules: SwiftProtobuf.Enum {
+public enum ExcludedModules: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1003,11 +993,6 @@ public enum ExcludedModules: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension ExcludedModules: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [ExcludedModules] = [
.excludedNone,
@@ -1025,13 +1010,12 @@ extension ExcludedModules: CaseIterable {
.detectionsensorConfig,
.paxcounterConfig,
]
-}
-#endif // swift(>=4.2)
+}
///
/// A GPS Position
-public struct Position {
+public struct Position: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1248,7 +1232,7 @@ public struct Position {
///
/// How the location was acquired: manual, onboard GPS, external (EUD) GPS
- public enum LocSource: SwiftProtobuf.Enum {
+ public enum LocSource: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1292,12 +1276,20 @@ public struct Position {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Position.LocSource] = [
+ .locUnset,
+ .locManual,
+ .locInternal,
+ .locExternal,
+ ]
+
}
///
/// How the altitude was acquired: manual, GPS int/ext, etc
/// Default: same as location_source if present
- public enum AltSource: SwiftProtobuf.Enum {
+ public enum AltSource: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1347,6 +1339,15 @@ public struct Position {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Position.AltSource] = [
+ .altUnset,
+ .altManual,
+ .altInternal,
+ .altExternal,
+ .altBarometric,
+ ]
+
}
public init() {}
@@ -1354,31 +1355,6 @@ public struct Position {
fileprivate var _storage = _StorageClass.defaultInstance
}
-#if swift(>=4.2)
-
-extension Position.LocSource: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Position.LocSource] = [
- .locUnset,
- .locManual,
- .locInternal,
- .locExternal,
- ]
-}
-
-extension Position.AltSource: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Position.AltSource] = [
- .altUnset,
- .altManual,
- .altInternal,
- .altExternal,
- .altBarometric,
- ]
-}
-
-#endif // swift(>=4.2)
-
///
/// Broadcast when a newly powered mesh node wants to find a node num it can use
/// Sent from the phone over bluetooth to set the user id for the owner of this node.
@@ -1400,7 +1376,7 @@ extension Position.AltSource: CaseIterable {
/// A few nodenums are reserved and will never be requested:
/// 0xff - broadcast
/// 0 through 3 - for future use
-public struct User {
+public struct User: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1425,6 +1401,8 @@ public struct User {
/// Deprecated in Meshtastic 2.1.x
/// This is the addr of the radio.
/// Not populated by the phone, but added by the esp32 when broadcasting
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var macaddr: Data = Data()
///
@@ -1456,7 +1434,7 @@ public struct User {
///
/// A message used in a traceroute
-public struct RouteDiscovery {
+public struct RouteDiscovery: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1484,7 +1462,7 @@ public struct RouteDiscovery {
///
/// A Routing control Data packet handled by the routing module
-public struct Routing {
+public struct Routing: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1524,7 +1502,7 @@ public struct Routing {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum OneOf_Variant: Equatable {
+ public enum OneOf_Variant: Equatable, Sendable {
///
/// A route request going from the requester
case routeRequest(RouteDiscovery)
@@ -1536,34 +1514,12 @@ public struct Routing {
/// in addition to ack.fail_id to provide details on the type of failure).
case errorReason(Routing.Error)
- #if !swift(>=4.1)
- public static func ==(lhs: Routing.OneOf_Variant, rhs: Routing.OneOf_Variant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.routeRequest, .routeRequest): return {
- guard case .routeRequest(let l) = lhs, case .routeRequest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.routeReply, .routeReply): return {
- guard case .routeReply(let l) = lhs, case .routeReply(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.errorReason, .errorReason): return {
- guard case .errorReason(let l) = lhs, case .errorReason(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
///
/// A failure in delivering a message (usually used for routing control messages, but might be provided in addition to ack.fail_id to provide
/// details on the type of failure).
- public enum Error: SwiftProtobuf.Enum {
+ public enum Error: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1681,42 +1637,36 @@ public struct Routing {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [Routing.Error] = [
+ .none,
+ .noRoute,
+ .gotNak,
+ .timeout,
+ .noInterface,
+ .maxRetransmit,
+ .noChannel,
+ .tooLarge,
+ .noResponse,
+ .dutyCycleLimit,
+ .badRequest,
+ .notAuthorized,
+ .pkiFailed,
+ .pkiUnknownPubkey,
+ .adminBadSessionKey,
+ .adminPublicKeyUnauthorized,
+ ]
+
}
public init() {}
}
-#if swift(>=4.2)
-
-extension Routing.Error: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [Routing.Error] = [
- .none,
- .noRoute,
- .gotNak,
- .timeout,
- .noInterface,
- .maxRetransmit,
- .noChannel,
- .tooLarge,
- .noResponse,
- .dutyCycleLimit,
- .badRequest,
- .notAuthorized,
- .pkiFailed,
- .pkiUnknownPubkey,
- .adminBadSessionKey,
- .adminPublicKeyUnauthorized,
- ]
-}
-
-#endif // swift(>=4.2)
-
///
/// (Formerly called SubPacket)
/// The payload portion fo a packet, this is the actual bytes that are sent
/// inside a radio packet (because from/to are broken out by the comms library)
-public struct DataMessage {
+public struct DataMessage: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1783,7 +1733,7 @@ public struct DataMessage {
///
/// Waypoint message, used to share arbitrary locations across the mesh
-public struct Waypoint {
+public struct Waypoint: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1845,7 +1795,7 @@ public struct Waypoint {
///
/// This message will be proxied over the PhoneAPI for the client to deliver to the MQTT server
-public struct MqttClientProxyMessage {
+public struct MqttClientProxyMessage: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1886,7 +1836,7 @@ public struct MqttClientProxyMessage {
///
/// The actual service envelope payload or text for mqtt pub / sub
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, @unchecked Sendable {
///
/// Bytes
case data(Data)
@@ -1894,24 +1844,6 @@ public struct MqttClientProxyMessage {
/// Text
case text(String)
- #if !swift(>=4.1)
- public static func ==(lhs: MqttClientProxyMessage.OneOf_PayloadVariant, rhs: MqttClientProxyMessage.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.data, .data): return {
- guard case .data(let l) = lhs, case .data(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.text, .text): return {
- guard case .text(let l) = lhs, case .text(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
public init() {}
@@ -1921,7 +1853,7 @@ public struct MqttClientProxyMessage {
/// A packet envelope sent/received over the mesh
/// only payload_variant is sent in the payload portion of the LORA packet.
/// The other fields are either not sent at all, or sent in the special 16 byte LORA header.
-public struct MeshPacket {
+public struct MeshPacket: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -2055,6 +1987,8 @@ public struct MeshPacket {
///
/// Describe if this message is delayed
+ ///
+ /// NOTE: This field was marked as deprecated in the .proto file.
public var delayed: MeshPacket.Delayed {
get {return _storage._delayed}
set {_uniqueStorage()._delayed = newValue}
@@ -2090,7 +2024,7 @@ public struct MeshPacket {
}
///
- /// Last byte of the node number of the node that should be used as the next hop in routing.
+ /// Last byte of the node number of the node that should be used as the next hop in routing.
/// Set by the firmware internally, clients are not supposed to set this.
public var nextHop: UInt32 {
get {return _storage._nextHop}
@@ -2116,7 +2050,7 @@ public struct MeshPacket {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, @unchecked Sendable {
///
/// TODO: REPLACE
case decoded(DataMessage)
@@ -2124,24 +2058,6 @@ public struct MeshPacket {
/// TODO: REPLACE
case encrypted(Data)
- #if !swift(>=4.1)
- public static func ==(lhs: MeshPacket.OneOf_PayloadVariant, rhs: MeshPacket.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.decoded, .decoded): return {
- guard case .decoded(let l) = lhs, case .decoded(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.encrypted, .encrypted): return {
- guard case .encrypted(let l) = lhs, case .encrypted(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
///
@@ -2163,7 +2079,7 @@ public struct MeshPacket {
/// So I bit the bullet and implemented a new (internal - not sent over the air)
/// field in MeshPacket called 'priority'.
/// And the transmission queue in the router object is now a priority queue.
- public enum Priority: SwiftProtobuf.Enum {
+ public enum Priority: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -2247,11 +2163,25 @@ public struct MeshPacket {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [MeshPacket.Priority] = [
+ .unset,
+ .min,
+ .background,
+ .default,
+ .reliable,
+ .response,
+ .high,
+ .alert,
+ .ack,
+ .max,
+ ]
+
}
///
/// Identify if this is a delayed packet
- public enum Delayed: SwiftProtobuf.Enum {
+ public enum Delayed: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -2289,6 +2219,13 @@ public struct MeshPacket {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [MeshPacket.Delayed] = [
+ .noDelay,
+ .broadcast,
+ .direct,
+ ]
+
}
public init() {}
@@ -2296,35 +2233,6 @@ public struct MeshPacket {
fileprivate var _storage = _StorageClass.defaultInstance
}
-#if swift(>=4.2)
-
-extension MeshPacket.Priority: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [MeshPacket.Priority] = [
- .unset,
- .min,
- .background,
- .default,
- .reliable,
- .response,
- .high,
- .alert,
- .ack,
- .max,
- ]
-}
-
-extension MeshPacket.Delayed: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [MeshPacket.Delayed] = [
- .noDelay,
- .broadcast,
- .direct,
- ]
-}
-
-#endif // swift(>=4.2)
-
///
/// The bluetooth to device link:
/// Old BTLE protocol docs from TODO, merge in above and make real docs...
@@ -2342,7 +2250,7 @@ extension MeshPacket.Delayed: CaseIterable {
/// level etc) SET_CONFIG (switches device to a new set of radio params and
/// preshared key, drops all existing nodes, force our node to rejoin this new group)
/// Full information about a node on the mesh
-public struct NodeInfo {
+public struct NodeInfo: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -2455,7 +2363,7 @@ public struct NodeInfo {
/// Unique local debugging info for this node
/// Note: we don't include position or the user info, because that will come in the
/// Sent to the phone in response to WantNodes.
-public struct MyNodeInfo {
+public struct MyNodeInfo: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -2494,7 +2402,7 @@ public struct MyNodeInfo {
/// on the message it is assumed to be a continuation of the previously sent message.
/// This allows the device code to use fixed maxlen 64 byte strings for messages,
/// and then extend as needed by emitting multiple records.
-public struct LogRecord {
+public struct LogRecord: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -2519,7 +2427,7 @@ public struct LogRecord {
///
/// Log levels, chosen to match python logging conventions.
- public enum Level: SwiftProtobuf.Enum {
+ public enum Level: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -2581,29 +2489,23 @@ public struct LogRecord {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [LogRecord.Level] = [
+ .unset,
+ .critical,
+ .error,
+ .warning,
+ .info,
+ .debug,
+ .trace,
+ ]
+
}
public init() {}
}
-#if swift(>=4.2)
-
-extension LogRecord.Level: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [LogRecord.Level] = [
- .unset,
- .critical,
- .error,
- .warning,
- .info,
- .debug,
- .trace,
- ]
-}
-
-#endif // swift(>=4.2)
-
-public struct QueueStatus {
+public struct QueueStatus: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -2630,7 +2532,7 @@ public struct QueueStatus {
/// It will support READ and NOTIFY. When a new packet arrives the device will BLE notify?
/// It will sit in that descriptor until consumed by the phone,
/// at which point the next item in the FIFO will be populated.
-public struct FromRadio {
+public struct FromRadio: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -2816,7 +2718,7 @@ public struct FromRadio {
///
/// Log levels, chosen to match python logging conventions.
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, Sendable {
///
/// Log levels, chosen to match python logging conventions.
case packet(MeshPacket)
@@ -2874,80 +2776,6 @@ public struct FromRadio {
/// Persistent data for device-ui
case deviceuiConfig(DeviceUIConfig)
- #if !swift(>=4.1)
- public static func ==(lhs: FromRadio.OneOf_PayloadVariant, rhs: FromRadio.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.packet, .packet): return {
- guard case .packet(let l) = lhs, case .packet(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.myInfo, .myInfo): return {
- guard case .myInfo(let l) = lhs, case .myInfo(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.nodeInfo, .nodeInfo): return {
- guard case .nodeInfo(let l) = lhs, case .nodeInfo(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.config, .config): return {
- guard case .config(let l) = lhs, case .config(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.logRecord, .logRecord): return {
- guard case .logRecord(let l) = lhs, case .logRecord(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.configCompleteID, .configCompleteID): return {
- guard case .configCompleteID(let l) = lhs, case .configCompleteID(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.rebooted, .rebooted): return {
- guard case .rebooted(let l) = lhs, case .rebooted(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.moduleConfig, .moduleConfig): return {
- guard case .moduleConfig(let l) = lhs, case .moduleConfig(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.channel, .channel): return {
- guard case .channel(let l) = lhs, case .channel(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.queueStatus, .queueStatus): return {
- guard case .queueStatus(let l) = lhs, case .queueStatus(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.xmodemPacket, .xmodemPacket): return {
- guard case .xmodemPacket(let l) = lhs, case .xmodemPacket(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.metadata, .metadata): return {
- guard case .metadata(let l) = lhs, case .metadata(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.mqttClientProxyMessage, .mqttClientProxyMessage): return {
- guard case .mqttClientProxyMessage(let l) = lhs, case .mqttClientProxyMessage(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.fileInfo, .fileInfo): return {
- guard case .fileInfo(let l) = lhs, case .fileInfo(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.clientNotification, .clientNotification): return {
- guard case .clientNotification(let l) = lhs, case .clientNotification(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.deviceuiConfig, .deviceuiConfig): return {
- guard case .deviceuiConfig(let l) = lhs, case .deviceuiConfig(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
public init() {}
@@ -2958,7 +2786,7 @@ public struct FromRadio {
/// To be used for important messages that should to be displayed to the user
/// in the form of push notifications or validation messages when saving
/// invalid configuration.
-public struct ClientNotification {
+public struct ClientNotification: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -2995,7 +2823,7 @@ public struct ClientNotification {
///
/// Individual File info for the device
-public struct FileInfo {
+public struct FileInfo: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3016,7 +2844,7 @@ public struct FileInfo {
///
/// Packets/commands to the radio will be written (reliably) to the toRadio characteristic.
/// Once the write completes the phone can assume it is handled.
-public struct ToRadio {
+public struct ToRadio: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3096,7 +2924,7 @@ public struct ToRadio {
///
/// Log levels, chosen to match python logging conventions.
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, Sendable {
///
/// Send this packet on the mesh
case packet(MeshPacket)
@@ -3123,40 +2951,6 @@ public struct ToRadio {
/// Heartbeat message (used to keep the device connection awake on serial)
case heartbeat(Heartbeat)
- #if !swift(>=4.1)
- public static func ==(lhs: ToRadio.OneOf_PayloadVariant, rhs: ToRadio.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.packet, .packet): return {
- guard case .packet(let l) = lhs, case .packet(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.wantConfigID, .wantConfigID): return {
- guard case .wantConfigID(let l) = lhs, case .wantConfigID(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.disconnect, .disconnect): return {
- guard case .disconnect(let l) = lhs, case .disconnect(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.xmodemPacket, .xmodemPacket): return {
- guard case .xmodemPacket(let l) = lhs, case .xmodemPacket(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.mqttClientProxyMessage, .mqttClientProxyMessage): return {
- guard case .mqttClientProxyMessage(let l) = lhs, case .mqttClientProxyMessage(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.heartbeat, .heartbeat): return {
- guard case .heartbeat(let l) = lhs, case .heartbeat(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
public init() {}
@@ -3164,7 +2958,7 @@ public struct ToRadio {
///
/// Compressed message payload
-public struct Compressed {
+public struct Compressed: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3184,7 +2978,7 @@ public struct Compressed {
///
/// Full info on edges for a single node
-public struct NeighborInfo {
+public struct NeighborInfo: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3212,7 +3006,7 @@ public struct NeighborInfo {
///
/// A single edge in the mesh
-public struct Neighbor {
+public struct Neighbor: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3242,7 +3036,7 @@ public struct Neighbor {
///
/// Device metadata response
-public struct DeviceMetadata {
+public struct DeviceMetadata: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3304,7 +3098,7 @@ public struct DeviceMetadata {
///
/// A heartbeat message is sent to the node from the client to keep the connection alive.
/// This is currently only needed to keep serial connections alive, but can be used by any PhoneAPI.
-public struct Heartbeat {
+public struct Heartbeat: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3316,7 +3110,7 @@ public struct Heartbeat {
///
/// RemoteHardwarePins associated with a node
-public struct NodeRemoteHardwarePin {
+public struct NodeRemoteHardwarePin: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3343,7 +3137,7 @@ public struct NodeRemoteHardwarePin {
fileprivate var _pin: RemoteHardwarePin? = nil
}
-public struct ChunkedPayload {
+public struct ChunkedPayload: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3371,7 +3165,7 @@ public struct ChunkedPayload {
///
/// Wrapper message for broken repeated oneof support
-public struct resend_chunks {
+public struct resend_chunks: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3385,7 +3179,7 @@ public struct resend_chunks {
///
/// Responses to a ChunkedPayload request
-public struct ChunkedPayloadResponse {
+public struct ChunkedPayloadResponse: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -3428,7 +3222,7 @@ public struct ChunkedPayloadResponse {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, Sendable {
///
/// Request to transfer chunked payload
case requestTransfer(Bool)
@@ -3439,77 +3233,11 @@ public struct ChunkedPayloadResponse {
/// Request missing indexes in the chunked payload
case resendChunks(resend_chunks)
- #if !swift(>=4.1)
- public static func ==(lhs: ChunkedPayloadResponse.OneOf_PayloadVariant, rhs: ChunkedPayloadResponse.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.requestTransfer, .requestTransfer): return {
- guard case .requestTransfer(let l) = lhs, case .requestTransfer(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.acceptTransfer, .acceptTransfer): return {
- guard case .acceptTransfer(let l) = lhs, case .acceptTransfer(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.resendChunks, .resendChunks): return {
- guard case .resendChunks(let l) = lhs, case .resendChunks(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension HardwareModel: @unchecked Sendable {}
-extension Constants: @unchecked Sendable {}
-extension CriticalErrorCode: @unchecked Sendable {}
-extension ExcludedModules: @unchecked Sendable {}
-extension Position: @unchecked Sendable {}
-extension Position.LocSource: @unchecked Sendable {}
-extension Position.AltSource: @unchecked Sendable {}
-extension User: @unchecked Sendable {}
-extension RouteDiscovery: @unchecked Sendable {}
-extension Routing: @unchecked Sendable {}
-extension Routing.OneOf_Variant: @unchecked Sendable {}
-extension Routing.Error: @unchecked Sendable {}
-extension DataMessage: @unchecked Sendable {}
-extension Waypoint: @unchecked Sendable {}
-extension MqttClientProxyMessage: @unchecked Sendable {}
-extension MqttClientProxyMessage.OneOf_PayloadVariant: @unchecked Sendable {}
-extension MeshPacket: @unchecked Sendable {}
-extension MeshPacket.OneOf_PayloadVariant: @unchecked Sendable {}
-extension MeshPacket.Priority: @unchecked Sendable {}
-extension MeshPacket.Delayed: @unchecked Sendable {}
-extension NodeInfo: @unchecked Sendable {}
-extension MyNodeInfo: @unchecked Sendable {}
-extension LogRecord: @unchecked Sendable {}
-extension LogRecord.Level: @unchecked Sendable {}
-extension QueueStatus: @unchecked Sendable {}
-extension FromRadio: @unchecked Sendable {}
-extension FromRadio.OneOf_PayloadVariant: @unchecked Sendable {}
-extension ClientNotification: @unchecked Sendable {}
-extension FileInfo: @unchecked Sendable {}
-extension ToRadio: @unchecked Sendable {}
-extension ToRadio.OneOf_PayloadVariant: @unchecked Sendable {}
-extension Compressed: @unchecked Sendable {}
-extension NeighborInfo: @unchecked Sendable {}
-extension Neighbor: @unchecked Sendable {}
-extension DeviceMetadata: @unchecked Sendable {}
-extension Heartbeat: @unchecked Sendable {}
-extension NodeRemoteHardwarePin: @unchecked Sendable {}
-extension ChunkedPayload: @unchecked Sendable {}
-extension resend_chunks: @unchecked Sendable {}
-extension ChunkedPayloadResponse: @unchecked Sendable {}
-extension ChunkedPayloadResponse.OneOf_PayloadVariant: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
@@ -3604,6 +3332,7 @@ extension HardwareModel: SwiftProtobuf._ProtoNameProviding {
85: .same(proto: "ROUTASTIC"),
86: .same(proto: "MESH_TAB"),
87: .same(proto: "MESHLINK"),
+ 88: .same(proto: "XIAO_NRF52_KIT"),
255: .same(proto: "PRIVATE_HW"),
]
}
@@ -4559,7 +4288,7 @@ extension MeshPacket: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementatio
if _storage._rxTime != 0 {
try visitor.visitSingularFixed32Field(value: _storage._rxTime, fieldNumber: 7)
}
- if _storage._rxSnr != 0 {
+ if _storage._rxSnr.bitPattern != 0 {
try visitor.visitSingularFloatField(value: _storage._rxSnr, fieldNumber: 8)
}
if _storage._hopLimit != 0 {
@@ -4761,7 +4490,7 @@ extension NodeInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
try { if let v = _storage._position {
try visitor.visitSingularMessageField(value: v, fieldNumber: 3)
} }()
- if _storage._snr != 0 {
+ if _storage._snr.bitPattern != 0 {
try visitor.visitSingularFloatField(value: _storage._snr, fieldNumber: 4)
}
if _storage._lastHeard != 0 {
@@ -5640,7 +5369,7 @@ extension Neighbor: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
if self.nodeID != 0 {
try visitor.visitSingularUInt32Field(value: self.nodeID, fieldNumber: 1)
}
- if self.snr != 0 {
+ if self.snr.bitPattern != 0 {
try visitor.visitSingularFloatField(value: self.snr, fieldNumber: 2)
}
if self.lastRxTime != 0 {
@@ -5765,8 +5494,8 @@ extension Heartbeat: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementation
public static let _protobuf_nameMap = SwiftProtobuf._NameMap()
public mutating func decodeMessage(decoder: inout D) throws {
- while let _ = try decoder.nextFieldNumber() {
- }
+ // Load everything into unknown fields
+ while try decoder.nextFieldNumber() != nil {}
}
public func traverse(visitor: inout V) throws {
diff --git a/MeshtasticProtobufs/Sources/meshtastic/module_config.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/module_config.pb.swift
index bcf4041c..0138ccff 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/module_config.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/module_config.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/module_config.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -20,7 +20,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
typealias Version = _2
}
-public enum RemoteHardwarePinType: SwiftProtobuf.Enum {
+public enum RemoteHardwarePinType: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -58,24 +58,18 @@ public enum RemoteHardwarePinType: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension RemoteHardwarePinType: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [RemoteHardwarePinType] = [
.unknown,
.digitalRead,
.digitalWrite,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Module Config
-public struct ModuleConfig {
+public struct ModuleConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -218,7 +212,7 @@ public struct ModuleConfig {
///
/// TODO: REPLACE
- public enum OneOf_PayloadVariant: Equatable {
+ public enum OneOf_PayloadVariant: Equatable, Sendable {
///
/// TODO: REPLACE
case mqtt(ModuleConfig.MQTTConfig)
@@ -259,73 +253,11 @@ public struct ModuleConfig {
/// TODO: REPLACE
case paxcounter(ModuleConfig.PaxcounterConfig)
- #if !swift(>=4.1)
- public static func ==(lhs: ModuleConfig.OneOf_PayloadVariant, rhs: ModuleConfig.OneOf_PayloadVariant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.mqtt, .mqtt): return {
- guard case .mqtt(let l) = lhs, case .mqtt(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.serial, .serial): return {
- guard case .serial(let l) = lhs, case .serial(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.externalNotification, .externalNotification): return {
- guard case .externalNotification(let l) = lhs, case .externalNotification(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.storeForward, .storeForward): return {
- guard case .storeForward(let l) = lhs, case .storeForward(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.rangeTest, .rangeTest): return {
- guard case .rangeTest(let l) = lhs, case .rangeTest(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.telemetry, .telemetry): return {
- guard case .telemetry(let l) = lhs, case .telemetry(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.cannedMessage, .cannedMessage): return {
- guard case .cannedMessage(let l) = lhs, case .cannedMessage(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.audio, .audio): return {
- guard case .audio(let l) = lhs, case .audio(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.remoteHardware, .remoteHardware): return {
- guard case .remoteHardware(let l) = lhs, case .remoteHardware(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.neighborInfo, .neighborInfo): return {
- guard case .neighborInfo(let l) = lhs, case .neighborInfo(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.ambientLighting, .ambientLighting): return {
- guard case .ambientLighting(let l) = lhs, case .ambientLighting(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.detectionSensor, .detectionSensor): return {
- guard case .detectionSensor(let l) = lhs, case .detectionSensor(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.paxcounter, .paxcounter): return {
- guard case .paxcounter(let l) = lhs, case .paxcounter(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
///
/// MQTT Client Config
- public struct MQTTConfig {
+ public struct MQTTConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -400,7 +332,7 @@ public struct ModuleConfig {
///
/// Settings for reporting unencrypted information about our node to a map via MQTT
- public struct MapReportSettings {
+ public struct MapReportSettings: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -420,7 +352,7 @@ public struct ModuleConfig {
///
/// RemoteHardwareModule Config
- public struct RemoteHardwareConfig {
+ public struct RemoteHardwareConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -444,7 +376,7 @@ public struct ModuleConfig {
///
/// NeighborInfoModule Config
- public struct NeighborInfoConfig {
+ public struct NeighborInfoConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -470,7 +402,7 @@ public struct ModuleConfig {
///
/// Detection Sensor Module Config
- public struct DetectionSensorConfig {
+ public struct DetectionSensorConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -517,7 +449,7 @@ public struct ModuleConfig {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum TriggerType: SwiftProtobuf.Enum {
+ public enum TriggerType: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
/// Event is triggered if pin is low
@@ -569,6 +501,16 @@ public struct ModuleConfig {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [ModuleConfig.DetectionSensorConfig.TriggerType] = [
+ .logicLow,
+ .logicHigh,
+ .fallingEdge,
+ .risingEdge,
+ .eitherEdgeActiveLow,
+ .eitherEdgeActiveHigh,
+ ]
+
}
public init() {}
@@ -576,7 +518,7 @@ public struct ModuleConfig {
///
/// Audio Config for codec2 voice
- public struct AudioConfig {
+ public struct AudioConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -613,7 +555,7 @@ public struct ModuleConfig {
///
/// Baudrate for codec2 voice
- public enum Audio_Baud: SwiftProtobuf.Enum {
+ public enum Audio_Baud: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
case codec2Default // = 0
case codec23200 // = 1
@@ -660,6 +602,19 @@ public struct ModuleConfig {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [ModuleConfig.AudioConfig.Audio_Baud] = [
+ .codec2Default,
+ .codec23200,
+ .codec22400,
+ .codec21600,
+ .codec21400,
+ .codec21300,
+ .codec21200,
+ .codec2700,
+ .codec2700B,
+ ]
+
}
public init() {}
@@ -667,7 +622,7 @@ public struct ModuleConfig {
///
/// Config for the Paxcounter Module
- public struct PaxcounterConfig {
+ public struct PaxcounterConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -693,7 +648,7 @@ public struct ModuleConfig {
///
/// Serial Config
- public struct SerialConfig {
+ public struct SerialConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -736,7 +691,7 @@ public struct ModuleConfig {
///
/// TODO: REPLACE
- public enum Serial_Baud: SwiftProtobuf.Enum {
+ public enum Serial_Baud: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
case baudDefault // = 0
case baud110 // = 1
@@ -804,11 +759,31 @@ public struct ModuleConfig {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [ModuleConfig.SerialConfig.Serial_Baud] = [
+ .baudDefault,
+ .baud110,
+ .baud300,
+ .baud600,
+ .baud1200,
+ .baud2400,
+ .baud4800,
+ .baud9600,
+ .baud19200,
+ .baud38400,
+ .baud57600,
+ .baud115200,
+ .baud230400,
+ .baud460800,
+ .baud576000,
+ .baud921600,
+ ]
+
}
///
/// TODO: REPLACE
- public enum Serial_Mode: SwiftProtobuf.Enum {
+ public enum Serial_Mode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
case `default` // = 0
case simple // = 1
@@ -853,6 +828,17 @@ public struct ModuleConfig {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [ModuleConfig.SerialConfig.Serial_Mode] = [
+ .default,
+ .simple,
+ .proto,
+ .textmsg,
+ .nmea,
+ .caltopo,
+ .ws85,
+ ]
+
}
public init() {}
@@ -860,7 +846,7 @@ public struct ModuleConfig {
///
/// External Notifications Config
- public struct ExternalNotificationConfig {
+ public struct ExternalNotificationConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -943,7 +929,7 @@ public struct ModuleConfig {
///
/// Store and Forward Module Config
- public struct StoreForwardConfig {
+ public struct StoreForwardConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -979,7 +965,7 @@ public struct ModuleConfig {
///
/// Preferences for the RangeTestModule
- public struct RangeTestConfig {
+ public struct RangeTestConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1004,7 +990,7 @@ public struct ModuleConfig {
///
/// Configuration for both device and environment metrics
- public struct TelemetryConfig {
+ public struct TelemetryConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1073,7 +1059,7 @@ public struct ModuleConfig {
///
/// Canned Messages Module Config
- public struct CannedMessageConfig {
+ public struct CannedMessageConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1128,7 +1114,7 @@ public struct ModuleConfig {
///
/// TODO: REPLACE
- public enum InputEventChar: SwiftProtobuf.Enum {
+ public enum InputEventChar: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -1196,6 +1182,18 @@ public struct ModuleConfig {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [ModuleConfig.CannedMessageConfig.InputEventChar] = [
+ .none,
+ .up,
+ .down,
+ .left,
+ .right,
+ .select,
+ .back,
+ .cancel,
+ ]
+
}
public init() {}
@@ -1204,7 +1202,7 @@ public struct ModuleConfig {
///
///Ambient Lighting Module - Settings for control of onboard LEDs to allow users to adjust the brightness levels and respective color levels.
///Initially created for the RAK14001 RGB LED module.
- public struct AmbientLightingConfig {
+ public struct AmbientLightingConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1237,89 +1235,9 @@ public struct ModuleConfig {
public init() {}
}
-#if swift(>=4.2)
-
-extension ModuleConfig.DetectionSensorConfig.TriggerType: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [ModuleConfig.DetectionSensorConfig.TriggerType] = [
- .logicLow,
- .logicHigh,
- .fallingEdge,
- .risingEdge,
- .eitherEdgeActiveLow,
- .eitherEdgeActiveHigh,
- ]
-}
-
-extension ModuleConfig.AudioConfig.Audio_Baud: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [ModuleConfig.AudioConfig.Audio_Baud] = [
- .codec2Default,
- .codec23200,
- .codec22400,
- .codec21600,
- .codec21400,
- .codec21300,
- .codec21200,
- .codec2700,
- .codec2700B,
- ]
-}
-
-extension ModuleConfig.SerialConfig.Serial_Baud: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [ModuleConfig.SerialConfig.Serial_Baud] = [
- .baudDefault,
- .baud110,
- .baud300,
- .baud600,
- .baud1200,
- .baud2400,
- .baud4800,
- .baud9600,
- .baud19200,
- .baud38400,
- .baud57600,
- .baud115200,
- .baud230400,
- .baud460800,
- .baud576000,
- .baud921600,
- ]
-}
-
-extension ModuleConfig.SerialConfig.Serial_Mode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [ModuleConfig.SerialConfig.Serial_Mode] = [
- .default,
- .simple,
- .proto,
- .textmsg,
- .nmea,
- .caltopo,
- .ws85,
- ]
-}
-
-extension ModuleConfig.CannedMessageConfig.InputEventChar: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [ModuleConfig.CannedMessageConfig.InputEventChar] = [
- .none,
- .up,
- .down,
- .left,
- .right,
- .select,
- .back,
- .cancel,
- ]
-}
-
-#endif // swift(>=4.2)
-
///
/// A GPIO pin definition for remote hardware module
-public struct RemoteHardwarePin {
+public struct RemoteHardwarePin: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1341,32 +1259,6 @@ public struct RemoteHardwarePin {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension RemoteHardwarePinType: @unchecked Sendable {}
-extension ModuleConfig: @unchecked Sendable {}
-extension ModuleConfig.OneOf_PayloadVariant: @unchecked Sendable {}
-extension ModuleConfig.MQTTConfig: @unchecked Sendable {}
-extension ModuleConfig.MapReportSettings: @unchecked Sendable {}
-extension ModuleConfig.RemoteHardwareConfig: @unchecked Sendable {}
-extension ModuleConfig.NeighborInfoConfig: @unchecked Sendable {}
-extension ModuleConfig.DetectionSensorConfig: @unchecked Sendable {}
-extension ModuleConfig.DetectionSensorConfig.TriggerType: @unchecked Sendable {}
-extension ModuleConfig.AudioConfig: @unchecked Sendable {}
-extension ModuleConfig.AudioConfig.Audio_Baud: @unchecked Sendable {}
-extension ModuleConfig.PaxcounterConfig: @unchecked Sendable {}
-extension ModuleConfig.SerialConfig: @unchecked Sendable {}
-extension ModuleConfig.SerialConfig.Serial_Baud: @unchecked Sendable {}
-extension ModuleConfig.SerialConfig.Serial_Mode: @unchecked Sendable {}
-extension ModuleConfig.ExternalNotificationConfig: @unchecked Sendable {}
-extension ModuleConfig.StoreForwardConfig: @unchecked Sendable {}
-extension ModuleConfig.RangeTestConfig: @unchecked Sendable {}
-extension ModuleConfig.TelemetryConfig: @unchecked Sendable {}
-extension ModuleConfig.CannedMessageConfig: @unchecked Sendable {}
-extension ModuleConfig.CannedMessageConfig.InputEventChar: @unchecked Sendable {}
-extension ModuleConfig.AmbientLightingConfig: @unchecked Sendable {}
-extension RemoteHardwarePin: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/mqtt.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/mqtt.pb.swift
index efe6cdd5..006fd9c8 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/mqtt.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/mqtt.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/mqtt.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -22,7 +22,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// This message wraps a MeshPacket with extra metadata about the sender and how it arrived.
-public struct ServiceEnvelope {
+public struct ServiceEnvelope: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -57,7 +57,7 @@ public struct ServiceEnvelope {
///
/// Information about a node intended to be reported unencrypted to a map using MQTT.
-public struct MapReport {
+public struct MapReport: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -121,11 +121,6 @@ public struct MapReport {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension ServiceEnvelope: @unchecked Sendable {}
-extension MapReport: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/paxcount.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/paxcount.pb.swift
index cf8aa463..e24ed371 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/paxcount.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/paxcount.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/paxcount.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -22,7 +22,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// TODO: REPLACE
-public struct Paxcount {
+public struct Paxcount: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -44,10 +44,6 @@ public struct Paxcount {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension Paxcount: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/portnums.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/portnums.pb.swift
index 3f9afc46..cac96bc4 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/portnums.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/portnums.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/portnums.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -33,7 +33,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
/// Note: This was formerly a Type enum named 'typ' with the same id #
/// We have change to this 'portnum' based scheme for specifying app handlers for particular payloads.
/// This change is backwards compatible by treating the legacy OPAQUE/CLEAR_TEXT values identically.
-public enum PortNum: SwiftProtobuf.Enum {
+public enum PortNum: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -193,6 +193,11 @@ public enum PortNum: SwiftProtobuf.Enum {
/// PowerStress based monitoring support (for automated power consumption testing)
case powerstressApp // = 74
+ ///
+ /// Reticulum Network Stack Tunnel App
+ /// ENCODING: Fragmented RNS Packet. Handled by Meshtastic RNS interface
+ case reticulumTunnelApp // = 76
+
///
/// Private applications should use portnums >= 256.
/// To simplify initial development and testing you can use "PRIVATE_APP"
@@ -241,6 +246,7 @@ public enum PortNum: SwiftProtobuf.Enum {
case 72: self = .atakPlugin
case 73: self = .mapReportApp
case 74: self = .powerstressApp
+ case 76: self = .reticulumTunnelApp
case 256: self = .privateApp
case 257: self = .atakForwarder
case 511: self = .max
@@ -276,6 +282,7 @@ public enum PortNum: SwiftProtobuf.Enum {
case .atakPlugin: return 72
case .mapReportApp: return 73
case .powerstressApp: return 74
+ case .reticulumTunnelApp: return 76
case .privateApp: return 256
case .atakForwarder: return 257
case .max: return 511
@@ -283,11 +290,6 @@ public enum PortNum: SwiftProtobuf.Enum {
}
}
-}
-
-#if swift(>=4.2)
-
-extension PortNum: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [PortNum] = [
.unknownApp,
@@ -316,18 +318,14 @@ extension PortNum: CaseIterable {
.atakPlugin,
.mapReportApp,
.powerstressApp,
+ .reticulumTunnelApp,
.privateApp,
.atakForwarder,
.max,
]
+
}
-#endif // swift(>=4.2)
-
-#if swift(>=5.5) && canImport(_Concurrency)
-extension PortNum: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
extension PortNum: SwiftProtobuf._ProtoNameProviding {
@@ -358,6 +356,7 @@ extension PortNum: SwiftProtobuf._ProtoNameProviding {
72: .same(proto: "ATAK_PLUGIN"),
73: .same(proto: "MAP_REPORT_APP"),
74: .same(proto: "POWERSTRESS_APP"),
+ 76: .same(proto: "RETICULUM_TUNNEL_APP"),
256: .same(proto: "PRIVATE_APP"),
257: .same(proto: "ATAK_FORWARDER"),
511: .same(proto: "MAX"),
diff --git a/MeshtasticProtobufs/Sources/meshtastic/powermon.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/powermon.pb.swift
index 5f51e948..58c21701 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/powermon.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/powermon.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/powermon.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -22,7 +22,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
/// Note: There are no 'PowerMon' messages normally in use (PowerMons are sent only as structured logs - slogs).
///But we wrap our State enum in this message to effectively nest a namespace (without our linter yelling at us)
-public struct PowerMon {
+public struct PowerMon: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -31,7 +31,7 @@ public struct PowerMon {
/// Any significant power changing event in meshtastic should be tagged with a powermon state transition.
///If you are making new meshtastic features feel free to add new entries at the end of this definition.
- public enum State: SwiftProtobuf.Enum {
+ public enum State: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
case none // = 0
case cpuDeepSleep // = 1
@@ -104,37 +104,31 @@ public struct PowerMon {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [PowerMon.State] = [
+ .none,
+ .cpuDeepSleep,
+ .cpuLightSleep,
+ .vext1On,
+ .loraRxon,
+ .loraTxon,
+ .loraRxactive,
+ .btOn,
+ .ledOn,
+ .screenOn,
+ .screenDrawing,
+ .wifiOn,
+ .gpsActive,
+ ]
+
}
public init() {}
}
-#if swift(>=4.2)
-
-extension PowerMon.State: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [PowerMon.State] = [
- .none,
- .cpuDeepSleep,
- .cpuLightSleep,
- .vext1On,
- .loraRxon,
- .loraTxon,
- .loraRxactive,
- .btOn,
- .ledOn,
- .screenOn,
- .screenDrawing,
- .wifiOn,
- .gpsActive,
- ]
-}
-
-#endif // swift(>=4.2)
-
///
/// PowerStress testing support via the C++ PowerStress module
-public struct PowerStressMessage {
+public struct PowerStressMessage: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -151,7 +145,7 @@ public struct PowerStressMessage {
/// What operation would we like the UUT to perform.
///note: senders should probably set want_response in their request packets, so that they can know when the state
///machine has started processing their request
- public enum Opcode: SwiftProtobuf.Enum {
+ public enum Opcode: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -272,48 +266,35 @@ public struct PowerStressMessage {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [PowerStressMessage.Opcode] = [
+ .unset,
+ .printInfo,
+ .forceQuiet,
+ .endQuiet,
+ .screenOn,
+ .screenOff,
+ .cpuIdle,
+ .cpuDeepsleep,
+ .cpuFullon,
+ .ledOn,
+ .ledOff,
+ .loraOff,
+ .loraTx,
+ .loraRx,
+ .btOff,
+ .btOn,
+ .wifiOff,
+ .wifiOn,
+ .gpsOff,
+ .gpsOn,
+ ]
+
}
public init() {}
}
-#if swift(>=4.2)
-
-extension PowerStressMessage.Opcode: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [PowerStressMessage.Opcode] = [
- .unset,
- .printInfo,
- .forceQuiet,
- .endQuiet,
- .screenOn,
- .screenOff,
- .cpuIdle,
- .cpuDeepsleep,
- .cpuFullon,
- .ledOn,
- .ledOff,
- .loraOff,
- .loraTx,
- .loraRx,
- .btOff,
- .btOn,
- .wifiOff,
- .wifiOn,
- .gpsOff,
- .gpsOn,
- ]
-}
-
-#endif // swift(>=4.2)
-
-#if swift(>=5.5) && canImport(_Concurrency)
-extension PowerMon: @unchecked Sendable {}
-extension PowerMon.State: @unchecked Sendable {}
-extension PowerStressMessage: @unchecked Sendable {}
-extension PowerStressMessage.Opcode: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
@@ -323,8 +304,8 @@ extension PowerMon: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
public static let _protobuf_nameMap = SwiftProtobuf._NameMap()
public mutating func decodeMessage(decoder: inout D) throws {
- while let _ = try decoder.nextFieldNumber() {
- }
+ // Load everything into unknown fields
+ while try decoder.nextFieldNumber() != nil {}
}
public func traverse(visitor: inout V) throws {
@@ -379,7 +360,7 @@ extension PowerStressMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
if self.cmd != .unset {
try visitor.visitSingularEnumField(value: self.cmd, fieldNumber: 1)
}
- if self.numSeconds != 0 {
+ if self.numSeconds.bitPattern != 0 {
try visitor.visitSingularFloatField(value: self.numSeconds, fieldNumber: 2)
}
try unknownFields.traverse(visitor: &visitor)
diff --git a/MeshtasticProtobufs/Sources/meshtastic/remote_hardware.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/remote_hardware.pb.swift
index ac6eeb26..d23dc07b 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/remote_hardware.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/remote_hardware.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/remote_hardware.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -30,7 +30,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
/// because no security yet (beyond the channel mechanism).
/// It should be off by default and then protected based on some TBD mechanism
/// (a special channel once multichannel support is included?)
-public struct HardwareMessage {
+public struct HardwareMessage: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -52,7 +52,7 @@ public struct HardwareMessage {
///
/// TODO: REPLACE
- public enum TypeEnum: SwiftProtobuf.Enum {
+ public enum TypeEnum: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -110,32 +110,21 @@ public struct HardwareMessage {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [HardwareMessage.TypeEnum] = [
+ .unset,
+ .writeGpios,
+ .watchGpios,
+ .gpiosChanged,
+ .readGpios,
+ .readGpiosReply,
+ ]
+
}
public init() {}
}
-#if swift(>=4.2)
-
-extension HardwareMessage.TypeEnum: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [HardwareMessage.TypeEnum] = [
- .unset,
- .writeGpios,
- .watchGpios,
- .gpiosChanged,
- .readGpios,
- .readGpiosReply,
- ]
-}
-
-#endif // swift(>=4.2)
-
-#if swift(>=5.5) && canImport(_Concurrency)
-extension HardwareMessage: @unchecked Sendable {}
-extension HardwareMessage.TypeEnum: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/rtttl.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/rtttl.pb.swift
index 6fdf3208..38d0c880 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/rtttl.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/rtttl.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/rtttl.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -22,7 +22,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// Canned message module configuration.
-public struct RTTTLConfig {
+public struct RTTTLConfig: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -36,10 +36,6 @@ public struct RTTTLConfig {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension RTTTLConfig: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/storeforward.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/storeforward.pb.swift
index 54efa77b..deb96569 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/storeforward.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/storeforward.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/storeforward.proto
@@ -22,7 +23,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// TODO: REPLACE
-public struct StoreAndForward {
+public struct StoreAndForward: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -79,7 +80,7 @@ public struct StoreAndForward {
///
/// TODO: REPLACE
- public enum OneOf_Variant: Equatable {
+ public enum OneOf_Variant: Equatable, @unchecked Sendable {
///
/// TODO: REPLACE
case stats(StoreAndForward.Statistics)
@@ -93,38 +94,12 @@ public struct StoreAndForward {
/// Text from history message.
case text(Data)
- #if !swift(>=4.1)
- public static func ==(lhs: StoreAndForward.OneOf_Variant, rhs: StoreAndForward.OneOf_Variant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.stats, .stats): return {
- guard case .stats(let l) = lhs, case .stats(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.history, .history): return {
- guard case .history(let l) = lhs, case .history(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.heartbeat, .heartbeat): return {
- guard case .heartbeat(let l) = lhs, case .heartbeat(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.text, .text): return {
- guard case .text(let l) = lhs, case .text(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
///
/// 001 - 063 = From Router
/// 064 - 127 = From Client
- public enum RequestResponse: SwiftProtobuf.Enum {
+ public enum RequestResponse: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -242,11 +217,31 @@ public struct StoreAndForward {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [StoreAndForward.RequestResponse] = [
+ .unset,
+ .routerError,
+ .routerHeartbeat,
+ .routerPing,
+ .routerPong,
+ .routerBusy,
+ .routerHistory,
+ .routerStats,
+ .routerTextDirect,
+ .routerTextBroadcast,
+ .clientError,
+ .clientHistory,
+ .clientStats,
+ .clientPing,
+ .clientPong,
+ .clientAbort,
+ ]
+
}
///
/// TODO: REPLACE
- public struct Statistics {
+ public struct Statistics: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -294,7 +289,7 @@ public struct StoreAndForward {
///
/// TODO: REPLACE
- public struct History {
+ public struct History: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -319,7 +314,7 @@ public struct StoreAndForward {
///
/// TODO: REPLACE
- public struct Heartbeat {
+ public struct Heartbeat: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -340,41 +335,6 @@ public struct StoreAndForward {
public init() {}
}
-#if swift(>=4.2)
-
-extension StoreAndForward.RequestResponse: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [StoreAndForward.RequestResponse] = [
- .unset,
- .routerError,
- .routerHeartbeat,
- .routerPing,
- .routerPong,
- .routerBusy,
- .routerHistory,
- .routerStats,
- .routerTextDirect,
- .routerTextBroadcast,
- .clientError,
- .clientHistory,
- .clientStats,
- .clientPing,
- .clientPong,
- .clientAbort,
- ]
-}
-
-#endif // swift(>=4.2)
-
-#if swift(>=5.5) && canImport(_Concurrency)
-extension StoreAndForward: @unchecked Sendable {}
-extension StoreAndForward.OneOf_Variant: @unchecked Sendable {}
-extension StoreAndForward.RequestResponse: @unchecked Sendable {}
-extension StoreAndForward.Statistics: @unchecked Sendable {}
-extension StoreAndForward.History: @unchecked Sendable {}
-extension StoreAndForward.Heartbeat: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
diff --git a/MeshtasticProtobufs/Sources/meshtastic/telemetry.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/telemetry.pb.swift
index e652a89c..4cd8e939 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/telemetry.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/telemetry.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/telemetry.proto
@@ -7,7 +8,6 @@
// For information on using the generated types, please see the documentation:
// https://github.com/apple/swift-protobuf/
-import Foundation
import SwiftProtobuf
// If the compiler emits an error on this type, it is because this file
@@ -22,7 +22,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
///
/// Supported I2C Sensors for telemetry in Meshtastic
-public enum TelemetrySensorType: SwiftProtobuf.Enum {
+public enum TelemetrySensorType: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
///
@@ -122,7 +122,7 @@ public enum TelemetrySensorType: SwiftProtobuf.Enum {
case aht10 // = 23
///
- /// DFRobot Lark Weather station (temperature, humidity, pressure, wind speed and direction)
+ /// DFRobot Lark Weather station (temperature, humidity, pressure, wind speed and direction)
case dfrobotLark // = 24
///
@@ -146,7 +146,7 @@ public enum TelemetrySensorType: SwiftProtobuf.Enum {
case customSensor // = 29
///
- /// MAX30102 Pulse Oximeter and Heart-Rate Sensor
+ /// MAX30102 Pulse Oximeter and Heart-Rate Sensor
case max30102 // = 30
///
@@ -168,6 +168,14 @@ public enum TelemetrySensorType: SwiftProtobuf.Enum {
///
/// DFRobot Gravity tipping bucket rain gauge
case dfrobotRain // = 35
+
+ ///
+ /// Infineon DPS310 High accuracy pressure and temperature
+ case dps310 // = 36
+
+ ///
+ /// RAKWireless RAK12035 Soil Moisture Sensor Module
+ case rak12035 // = 37
case UNRECOGNIZED(Int)
public init() {
@@ -212,6 +220,8 @@ public enum TelemetrySensorType: SwiftProtobuf.Enum {
case 33: self = .radsens
case 34: self = .ina226
case 35: self = .dfrobotRain
+ case 36: self = .dps310
+ case 37: self = .rak12035
default: self = .UNRECOGNIZED(rawValue)
}
}
@@ -254,15 +264,12 @@ public enum TelemetrySensorType: SwiftProtobuf.Enum {
case .radsens: return 33
case .ina226: return 34
case .dfrobotRain: return 35
+ case .dps310: return 36
+ case .rak12035: return 37
case .UNRECOGNIZED(let i): return i
}
}
-}
-
-#if swift(>=4.2)
-
-extension TelemetrySensorType: CaseIterable {
// The compiler won't synthesize support with the UNRECOGNIZED case.
public static let allCases: [TelemetrySensorType] = [
.sensorUnset,
@@ -301,14 +308,15 @@ extension TelemetrySensorType: CaseIterable {
.radsens,
.ina226,
.dfrobotRain,
+ .dps310,
+ .rak12035,
]
-}
-#endif // swift(>=4.2)
+}
///
/// Key native device metrics such as battery level
-public struct DeviceMetrics {
+public struct DeviceMetrics: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -381,7 +389,7 @@ public struct DeviceMetrics {
///
/// Weather station or other environmental metrics
-public struct EnvironmentMetrics {
+public struct EnvironmentMetrics: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -452,7 +460,7 @@ public struct EnvironmentMetrics {
/// Clears the value of `current`. Subsequent reads from it will return its default value.
public mutating func clearCurrent() {_uniqueStorage()._current = nil}
- ///
+ ///
/// relative scale IAQ value as measured by Bosch BME680 . value 0-500.
/// Belongs to Air Quality but is not particle but VOC measurement. Other VOC values can also be put in here.
public var iaq: UInt32 {
@@ -608,6 +616,28 @@ public struct EnvironmentMetrics {
/// Clears the value of `rainfall24H`. Subsequent reads from it will return its default value.
public mutating func clearRainfall24H() {_uniqueStorage()._rainfall24H = nil}
+ ///
+ /// Soil moisture measured (% 1-100)
+ public var soilMoisture: UInt32 {
+ get {return _storage._soilMoisture ?? 0}
+ set {_uniqueStorage()._soilMoisture = newValue}
+ }
+ /// Returns true if `soilMoisture` has been explicitly set.
+ public var hasSoilMoisture: Bool {return _storage._soilMoisture != nil}
+ /// Clears the value of `soilMoisture`. Subsequent reads from it will return its default value.
+ public mutating func clearSoilMoisture() {_uniqueStorage()._soilMoisture = nil}
+
+ ///
+ /// Soil temperature measured (*C)
+ public var soilTemperature: Float {
+ get {return _storage._soilTemperature ?? 0}
+ set {_uniqueStorage()._soilTemperature = newValue}
+ }
+ /// Returns true if `soilTemperature` has been explicitly set.
+ public var hasSoilTemperature: Bool {return _storage._soilTemperature != nil}
+ /// Clears the value of `soilTemperature`. Subsequent reads from it will return its default value.
+ public mutating func clearSoilTemperature() {_uniqueStorage()._soilTemperature = nil}
+
public var unknownFields = SwiftProtobuf.UnknownStorage()
public init() {}
@@ -617,7 +647,7 @@ public struct EnvironmentMetrics {
///
/// Power Metrics (voltage / current / etc)
-public struct PowerMetrics {
+public struct PowerMetrics: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -702,7 +732,7 @@ public struct PowerMetrics {
///
/// Air quality metrics
-public struct AirQualityMetrics {
+public struct AirQualityMetrics: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -871,7 +901,7 @@ public struct AirQualityMetrics {
///
/// Local device mesh statistics
-public struct LocalStats {
+public struct LocalStats: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -929,7 +959,7 @@ public struct LocalStats {
///
/// Health telemetry metrics
-public struct HealthMetrics {
+public struct HealthMetrics: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -978,7 +1008,7 @@ public struct HealthMetrics {
///
/// Types of Measurements the telemetry module is equipped to handle
-public struct Telemetry {
+public struct Telemetry: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1051,7 +1081,7 @@ public struct Telemetry {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum OneOf_Variant: Equatable {
+ public enum OneOf_Variant: Equatable, Sendable {
///
/// Key native device metrics such as battery level
case deviceMetrics(DeviceMetrics)
@@ -1071,40 +1101,6 @@ public struct Telemetry {
/// Health telemetry metrics
case healthMetrics(HealthMetrics)
- #if !swift(>=4.1)
- public static func ==(lhs: Telemetry.OneOf_Variant, rhs: Telemetry.OneOf_Variant) -> Bool {
- // The use of inline closures is to circumvent an issue where the compiler
- // allocates stack space for every case branch when no optimizations are
- // enabled. https://github.com/apple/swift-protobuf/issues/1034
- switch (lhs, rhs) {
- case (.deviceMetrics, .deviceMetrics): return {
- guard case .deviceMetrics(let l) = lhs, case .deviceMetrics(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.environmentMetrics, .environmentMetrics): return {
- guard case .environmentMetrics(let l) = lhs, case .environmentMetrics(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.airQualityMetrics, .airQualityMetrics): return {
- guard case .airQualityMetrics(let l) = lhs, case .airQualityMetrics(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.powerMetrics, .powerMetrics): return {
- guard case .powerMetrics(let l) = lhs, case .powerMetrics(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.localStats, .localStats): return {
- guard case .localStats(let l) = lhs, case .localStats(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- case (.healthMetrics, .healthMetrics): return {
- guard case .healthMetrics(let l) = lhs, case .healthMetrics(let r) = rhs else { preconditionFailure() }
- return l == r
- }()
- default: return false
- }
- }
- #endif
}
public init() {}
@@ -1112,7 +1108,7 @@ public struct Telemetry {
///
/// NAU7802 Telemetry configuration, for saving to flash
-public struct Nau7802Config {
+public struct Nau7802Config: Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -1130,19 +1126,6 @@ public struct Nau7802Config {
public init() {}
}
-#if swift(>=5.5) && canImport(_Concurrency)
-extension TelemetrySensorType: @unchecked Sendable {}
-extension DeviceMetrics: @unchecked Sendable {}
-extension EnvironmentMetrics: @unchecked Sendable {}
-extension PowerMetrics: @unchecked Sendable {}
-extension AirQualityMetrics: @unchecked Sendable {}
-extension LocalStats: @unchecked Sendable {}
-extension HealthMetrics: @unchecked Sendable {}
-extension Telemetry: @unchecked Sendable {}
-extension Telemetry.OneOf_Variant: @unchecked Sendable {}
-extension Nau7802Config: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"
@@ -1185,6 +1168,8 @@ extension TelemetrySensorType: SwiftProtobuf._ProtoNameProviding {
33: .same(proto: "RADSENS"),
34: .same(proto: "INA226"),
35: .same(proto: "DFROBOT_RAIN"),
+ 36: .same(proto: "DPS310"),
+ 37: .same(proto: "RAK12035"),
]
}
@@ -1271,6 +1256,8 @@ extension EnvironmentMetrics: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
18: .same(proto: "radiation"),
19: .standard(proto: "rainfall_1h"),
20: .standard(proto: "rainfall_24h"),
+ 21: .standard(proto: "soil_moisture"),
+ 22: .standard(proto: "soil_temperature"),
]
fileprivate class _StorageClass {
@@ -1294,6 +1281,8 @@ extension EnvironmentMetrics: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
var _radiation: Float? = nil
var _rainfall1H: Float? = nil
var _rainfall24H: Float? = nil
+ var _soilMoisture: UInt32? = nil
+ var _soilTemperature: Float? = nil
#if swift(>=5.10)
// This property is used as the initial default value for new instances of the type.
@@ -1328,6 +1317,8 @@ extension EnvironmentMetrics: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
_radiation = source._radiation
_rainfall1H = source._rainfall1H
_rainfall24H = source._rainfall24H
+ _soilMoisture = source._soilMoisture
+ _soilTemperature = source._soilTemperature
}
}
@@ -1366,6 +1357,8 @@ extension EnvironmentMetrics: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
case 18: try { try decoder.decodeSingularFloatField(value: &_storage._radiation) }()
case 19: try { try decoder.decodeSingularFloatField(value: &_storage._rainfall1H) }()
case 20: try { try decoder.decodeSingularFloatField(value: &_storage._rainfall24H) }()
+ case 21: try { try decoder.decodeSingularUInt32Field(value: &_storage._soilMoisture) }()
+ case 22: try { try decoder.decodeSingularFloatField(value: &_storage._soilTemperature) }()
default: break
}
}
@@ -1438,6 +1431,12 @@ extension EnvironmentMetrics: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
try { if let v = _storage._rainfall24H {
try visitor.visitSingularFloatField(value: v, fieldNumber: 20)
} }()
+ try { if let v = _storage._soilMoisture {
+ try visitor.visitSingularUInt32Field(value: v, fieldNumber: 21)
+ } }()
+ try { if let v = _storage._soilTemperature {
+ try visitor.visitSingularFloatField(value: v, fieldNumber: 22)
+ } }()
}
try unknownFields.traverse(visitor: &visitor)
}
@@ -1467,6 +1466,8 @@ extension EnvironmentMetrics: SwiftProtobuf.Message, SwiftProtobuf._MessageImple
if _storage._radiation != rhs_storage._radiation {return false}
if _storage._rainfall1H != rhs_storage._rainfall1H {return false}
if _storage._rainfall24H != rhs_storage._rainfall24H {return false}
+ if _storage._soilMoisture != rhs_storage._soilMoisture {return false}
+ if _storage._soilTemperature != rhs_storage._soilTemperature {return false}
return true
}
if !storagesAreEqual {return false}
@@ -1692,10 +1693,10 @@ extension LocalStats: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementatio
if self.uptimeSeconds != 0 {
try visitor.visitSingularUInt32Field(value: self.uptimeSeconds, fieldNumber: 1)
}
- if self.channelUtilization != 0 {
+ if self.channelUtilization.bitPattern != 0 {
try visitor.visitSingularFloatField(value: self.channelUtilization, fieldNumber: 2)
}
- if self.airUtilTx != 0 {
+ if self.airUtilTx.bitPattern != 0 {
try visitor.visitSingularFloatField(value: self.airUtilTx, fieldNumber: 3)
}
if self.numPacketsTx != 0 {
@@ -1962,7 +1963,7 @@ extension Nau7802Config: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementa
if self.zeroOffset != 0 {
try visitor.visitSingularInt32Field(value: self.zeroOffset, fieldNumber: 1)
}
- if self.calibrationFactor != 0 {
+ if self.calibrationFactor.bitPattern != 0 {
try visitor.visitSingularFloatField(value: self.calibrationFactor, fieldNumber: 2)
}
try unknownFields.traverse(visitor: &visitor)
diff --git a/MeshtasticProtobufs/Sources/meshtastic/xmodem.pb.swift b/MeshtasticProtobufs/Sources/meshtastic/xmodem.pb.swift
index 1f41fe0b..46907a58 100644
--- a/MeshtasticProtobufs/Sources/meshtastic/xmodem.pb.swift
+++ b/MeshtasticProtobufs/Sources/meshtastic/xmodem.pb.swift
@@ -1,5 +1,6 @@
// DO NOT EDIT.
// swift-format-ignore-file
+// swiftlint:disable all
//
// Generated by the Swift generator plugin for the protocol buffer compiler.
// Source: meshtastic/xmodem.proto
@@ -20,7 +21,7 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
typealias Version = _2
}
-public struct XModem {
+public struct XModem: @unchecked Sendable {
// SwiftProtobuf.Message conformance is added in an extension below. See the
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
// methods supported on all messages.
@@ -35,7 +36,7 @@ public struct XModem {
public var unknownFields = SwiftProtobuf.UnknownStorage()
- public enum Control: SwiftProtobuf.Enum {
+ public enum Control: SwiftProtobuf.Enum, Swift.CaseIterable {
public typealias RawValue = Int
case nul // = 0
case soh // = 1
@@ -79,34 +80,23 @@ public struct XModem {
}
}
+ // The compiler won't synthesize support with the UNRECOGNIZED case.
+ public static let allCases: [XModem.Control] = [
+ .nul,
+ .soh,
+ .stx,
+ .eot,
+ .ack,
+ .nak,
+ .can,
+ .ctrlz,
+ ]
+
}
public init() {}
}
-#if swift(>=4.2)
-
-extension XModem.Control: CaseIterable {
- // The compiler won't synthesize support with the UNRECOGNIZED case.
- public static let allCases: [XModem.Control] = [
- .nul,
- .soh,
- .stx,
- .eot,
- .ack,
- .nak,
- .can,
- .ctrlz,
- ]
-}
-
-#endif // swift(>=4.2)
-
-#if swift(>=5.5) && canImport(_Concurrency)
-extension XModem: @unchecked Sendable {}
-extension XModem.Control: @unchecked Sendable {}
-#endif // swift(>=5.5) && canImport(_Concurrency)
-
// MARK: - Code below here is support for the SwiftProtobuf runtime.
fileprivate let _protobuf_package = "meshtastic"