mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Support increased MQTT Username and Password setup Fix Test projects increase version to 2.0.5
1169 lines
42 KiB
Swift
1169 lines
42 KiB
Swift
// DO NOT EDIT.
|
|
// swift-format-ignore-file
|
|
//
|
|
// Generated by the Swift generator plugin for the protocol buffer compiler.
|
|
// Source: admin.proto
|
|
//
|
|
// 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
|
|
// 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
|
|
}
|
|
|
|
///
|
|
/// 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)
|
|
struct AdminMessage {
|
|
// 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.
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
var payloadVariant: AdminMessage.OneOf_PayloadVariant? = nil
|
|
|
|
///
|
|
/// 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)
|
|
var getChannelRequest: UInt32 {
|
|
get {
|
|
if case .getChannelRequest(let v)? = payloadVariant {return v}
|
|
return 0
|
|
}
|
|
set {payloadVariant = .getChannelRequest(newValue)}
|
|
}
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
var getChannelResponse: Channel {
|
|
get {
|
|
if case .getChannelResponse(let v)? = payloadVariant {return v}
|
|
return Channel()
|
|
}
|
|
set {payloadVariant = .getChannelResponse(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Send the current owner data in the response to this message.
|
|
var getOwnerRequest: Bool {
|
|
get {
|
|
if case .getOwnerRequest(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .getOwnerRequest(newValue)}
|
|
}
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
var getOwnerResponse: User {
|
|
get {
|
|
if case .getOwnerResponse(let v)? = payloadVariant {return v}
|
|
return User()
|
|
}
|
|
set {payloadVariant = .getOwnerResponse(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Ask for the following config data to be sent
|
|
var getConfigRequest: AdminMessage.ConfigType {
|
|
get {
|
|
if case .getConfigRequest(let v)? = payloadVariant {return v}
|
|
return .deviceConfig
|
|
}
|
|
set {payloadVariant = .getConfigRequest(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Send the current Config in the response to this message.
|
|
var getConfigResponse: Config {
|
|
get {
|
|
if case .getConfigResponse(let v)? = payloadVariant {return v}
|
|
return Config()
|
|
}
|
|
set {payloadVariant = .getConfigResponse(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Ask for the following config data to be sent
|
|
var getModuleConfigRequest: AdminMessage.ModuleConfigType {
|
|
get {
|
|
if case .getModuleConfigRequest(let v)? = payloadVariant {return v}
|
|
return .mqttConfig
|
|
}
|
|
set {payloadVariant = .getModuleConfigRequest(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Send the current Config in the response to this message.
|
|
var getModuleConfigResponse: ModuleConfig {
|
|
get {
|
|
if case .getModuleConfigResponse(let v)? = payloadVariant {return v}
|
|
return ModuleConfig()
|
|
}
|
|
set {payloadVariant = .getModuleConfigResponse(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Get the Canned Message Module messages in the response to this message.
|
|
var getCannedMessageModuleMessagesRequest: Bool {
|
|
get {
|
|
if case .getCannedMessageModuleMessagesRequest(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .getCannedMessageModuleMessagesRequest(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Get the Canned Message Module messages in the response to this message.
|
|
var getCannedMessageModuleMessagesResponse: String {
|
|
get {
|
|
if case .getCannedMessageModuleMessagesResponse(let v)? = payloadVariant {return v}
|
|
return String()
|
|
}
|
|
set {payloadVariant = .getCannedMessageModuleMessagesResponse(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Request the node to send device metadata (firmware, protobuf version, etc)
|
|
var getDeviceMetadataRequest: Bool {
|
|
get {
|
|
if case .getDeviceMetadataRequest(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .getDeviceMetadataRequest(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Device metadata response
|
|
var getDeviceMetadataResponse: DeviceMetadata {
|
|
get {
|
|
if case .getDeviceMetadataResponse(let v)? = payloadVariant {return v}
|
|
return DeviceMetadata()
|
|
}
|
|
set {payloadVariant = .getDeviceMetadataResponse(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Set the owner for this node
|
|
var setOwner: User {
|
|
get {
|
|
if case .setOwner(let v)? = payloadVariant {return v}
|
|
return User()
|
|
}
|
|
set {payloadVariant = .setOwner(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Set channels (using the new API).
|
|
/// A special channel is the "primary channel".
|
|
/// The other records are secondary channels.
|
|
/// Note: only one channel can be marked as primary.
|
|
/// If the client sets a particular channel to be primary, the previous channel will be set to SECONDARY automatically.
|
|
var setChannel: Channel {
|
|
get {
|
|
if case .setChannel(let v)? = payloadVariant {return v}
|
|
return Channel()
|
|
}
|
|
set {payloadVariant = .setChannel(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Set the current Config
|
|
var setConfig: Config {
|
|
get {
|
|
if case .setConfig(let v)? = payloadVariant {return v}
|
|
return Config()
|
|
}
|
|
set {payloadVariant = .setConfig(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Set the current Config
|
|
var setModuleConfig: ModuleConfig {
|
|
get {
|
|
if case .setModuleConfig(let v)? = payloadVariant {return v}
|
|
return ModuleConfig()
|
|
}
|
|
set {payloadVariant = .setModuleConfig(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Set the Canned Message Module messages text.
|
|
var setCannedMessageModuleMessages: String {
|
|
get {
|
|
if case .setCannedMessageModuleMessages(let v)? = payloadVariant {return v}
|
|
return String()
|
|
}
|
|
set {payloadVariant = .setCannedMessageModuleMessages(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Begins an edit transaction for config, module config, owner, and channel settings changes
|
|
/// This will delay the standard *implicit* save to the file system and subsequent reboot behavior until committed (commit_edit_settings)
|
|
var beginEditSettings: Bool {
|
|
get {
|
|
if case .beginEditSettings(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .beginEditSettings(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Commits an open transaction for any edits made to config, module config, owner, and channel settings
|
|
var commitEditSettings: Bool {
|
|
get {
|
|
if case .commitEditSettings(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .commitEditSettings(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Setting channels/radio config remotely carries the risk that you might send an invalid config and the radio never talks to your mesh again.
|
|
/// Therefore if setting either of these properties remotely, you must send a confirm_xxx message within 10 minutes.
|
|
/// If you fail to do so, the radio will assume loss of comms and revert your changes.
|
|
/// These messages are optional when changing the local node.
|
|
var confirmSetChannel: Bool {
|
|
get {
|
|
if case .confirmSetChannel(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .confirmSetChannel(newValue)}
|
|
}
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
var confirmSetRadio: Bool {
|
|
get {
|
|
if case .confirmSetRadio(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .confirmSetRadio(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Tell the node to reboot into the OTA Firmware in this many seconds (or <0 to cancel reboot)
|
|
/// Only Implemented for ESP32 Devices. This needs to be issued to send a new main firmware via bluetooth.
|
|
var rebootOtaSeconds: Int32 {
|
|
get {
|
|
if case .rebootOtaSeconds(let v)? = payloadVariant {return v}
|
|
return 0
|
|
}
|
|
set {payloadVariant = .rebootOtaSeconds(newValue)}
|
|
}
|
|
|
|
///
|
|
/// This message is only supported for the simulator porduino build.
|
|
/// If received the simulator will exit successfully.
|
|
var exitSimulator: Bool {
|
|
get {
|
|
if case .exitSimulator(let v)? = payloadVariant {return v}
|
|
return false
|
|
}
|
|
set {payloadVariant = .exitSimulator(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Tell the node to reboot in this many seconds (or <0 to cancel reboot)
|
|
var rebootSeconds: Int32 {
|
|
get {
|
|
if case .rebootSeconds(let v)? = payloadVariant {return v}
|
|
return 0
|
|
}
|
|
set {payloadVariant = .rebootSeconds(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Tell the node to shutdown in this many seconds (or <0 to cancel shutdown)
|
|
var shutdownSeconds: Int32 {
|
|
get {
|
|
if case .shutdownSeconds(let v)? = payloadVariant {return v}
|
|
return 0
|
|
}
|
|
set {payloadVariant = .shutdownSeconds(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Tell the node to factory reset, all device settings will be returned to factory defaults.
|
|
var factoryReset: Int32 {
|
|
get {
|
|
if case .factoryReset(let v)? = payloadVariant {return v}
|
|
return 0
|
|
}
|
|
set {payloadVariant = .factoryReset(newValue)}
|
|
}
|
|
|
|
///
|
|
/// Tell the node to reset the nodedb.
|
|
var nodedbReset: Int32 {
|
|
get {
|
|
if case .nodedbReset(let v)? = payloadVariant {return v}
|
|
return 0
|
|
}
|
|
set {payloadVariant = .nodedbReset(newValue)}
|
|
}
|
|
|
|
var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
enum OneOf_PayloadVariant: Equatable {
|
|
///
|
|
/// 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)
|
|
case getChannelRequest(UInt32)
|
|
///
|
|
/// TODO: REPLACE
|
|
case getChannelResponse(Channel)
|
|
///
|
|
/// Send the current owner data in the response to this message.
|
|
case getOwnerRequest(Bool)
|
|
///
|
|
/// TODO: REPLACE
|
|
case getOwnerResponse(User)
|
|
///
|
|
/// Ask for the following config data to be sent
|
|
case getConfigRequest(AdminMessage.ConfigType)
|
|
///
|
|
/// Send the current Config in the response to this message.
|
|
case getConfigResponse(Config)
|
|
///
|
|
/// Ask for the following config data to be sent
|
|
case getModuleConfigRequest(AdminMessage.ModuleConfigType)
|
|
///
|
|
/// Send the current Config in the response to this message.
|
|
case getModuleConfigResponse(ModuleConfig)
|
|
///
|
|
/// Get the Canned Message Module messages in the response to this message.
|
|
case getCannedMessageModuleMessagesRequest(Bool)
|
|
///
|
|
/// Get the Canned Message Module messages in the response to this message.
|
|
case getCannedMessageModuleMessagesResponse(String)
|
|
///
|
|
/// Request the node to send device metadata (firmware, protobuf version, etc)
|
|
case getDeviceMetadataRequest(Bool)
|
|
///
|
|
/// Device metadata response
|
|
case getDeviceMetadataResponse(DeviceMetadata)
|
|
///
|
|
/// Set the owner for this node
|
|
case setOwner(User)
|
|
///
|
|
/// Set channels (using the new API).
|
|
/// A special channel is the "primary channel".
|
|
/// The other records are secondary channels.
|
|
/// Note: only one channel can be marked as primary.
|
|
/// If the client sets a particular channel to be primary, the previous channel will be set to SECONDARY automatically.
|
|
case setChannel(Channel)
|
|
///
|
|
/// Set the current Config
|
|
case setConfig(Config)
|
|
///
|
|
/// Set the current Config
|
|
case setModuleConfig(ModuleConfig)
|
|
///
|
|
/// Set the Canned Message Module messages text.
|
|
case setCannedMessageModuleMessages(String)
|
|
///
|
|
/// Begins an edit transaction for config, module config, owner, and channel settings changes
|
|
/// This will delay the standard *implicit* save to the file system and subsequent reboot behavior until committed (commit_edit_settings)
|
|
case beginEditSettings(Bool)
|
|
///
|
|
/// Commits an open transaction for any edits made to config, module config, owner, and channel settings
|
|
case commitEditSettings(Bool)
|
|
///
|
|
/// Setting channels/radio config remotely carries the risk that you might send an invalid config and the radio never talks to your mesh again.
|
|
/// Therefore if setting either of these properties remotely, you must send a confirm_xxx message within 10 minutes.
|
|
/// If you fail to do so, the radio will assume loss of comms and revert your changes.
|
|
/// These messages are optional when changing the local node.
|
|
case confirmSetChannel(Bool)
|
|
///
|
|
/// TODO: REPLACE
|
|
case confirmSetRadio(Bool)
|
|
///
|
|
/// Tell the node to reboot into the OTA Firmware in this many seconds (or <0 to cancel reboot)
|
|
/// Only Implemented for ESP32 Devices. This needs to be issued to send a new main firmware via bluetooth.
|
|
case rebootOtaSeconds(Int32)
|
|
///
|
|
/// This message is only supported for the simulator porduino build.
|
|
/// If received the simulator will exit successfully.
|
|
case exitSimulator(Bool)
|
|
///
|
|
/// Tell the node to reboot in this many seconds (or <0 to cancel reboot)
|
|
case rebootSeconds(Int32)
|
|
///
|
|
/// Tell the node to shutdown in this many seconds (or <0 to cancel shutdown)
|
|
case shutdownSeconds(Int32)
|
|
///
|
|
/// Tell the node to factory reset, all device settings will be returned to factory defaults.
|
|
case factoryReset(Int32)
|
|
///
|
|
/// Tell the node to reset the nodedb.
|
|
case nodedbReset(Int32)
|
|
|
|
#if !swift(>=4.1)
|
|
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 (.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 (.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 (.confirmSetChannel, .confirmSetChannel): return {
|
|
guard case .confirmSetChannel(let l) = lhs, case .confirmSetChannel(let r) = rhs else { preconditionFailure() }
|
|
return l == r
|
|
}()
|
|
case (.confirmSetRadio, .confirmSetRadio): return {
|
|
guard case .confirmSetRadio(let l) = lhs, case .confirmSetRadio(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 (.factoryReset, .factoryReset): return {
|
|
guard case .factoryReset(let l) = lhs, case .factoryReset(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
|
|
enum ConfigType: SwiftProtobuf.Enum {
|
|
typealias RawValue = Int
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case deviceConfig // = 0
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case positionConfig // = 1
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case powerConfig // = 2
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case networkConfig // = 3
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case displayConfig // = 4
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case loraConfig // = 5
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case bluetoothConfig // = 6
|
|
case UNRECOGNIZED(Int)
|
|
|
|
init() {
|
|
self = .deviceConfig
|
|
}
|
|
|
|
init?(rawValue: Int) {
|
|
switch rawValue {
|
|
case 0: self = .deviceConfig
|
|
case 1: self = .positionConfig
|
|
case 2: self = .powerConfig
|
|
case 3: self = .networkConfig
|
|
case 4: self = .displayConfig
|
|
case 5: self = .loraConfig
|
|
case 6: self = .bluetoothConfig
|
|
default: self = .UNRECOGNIZED(rawValue)
|
|
}
|
|
}
|
|
|
|
var rawValue: Int {
|
|
switch self {
|
|
case .deviceConfig: return 0
|
|
case .positionConfig: return 1
|
|
case .powerConfig: return 2
|
|
case .networkConfig: return 3
|
|
case .displayConfig: return 4
|
|
case .loraConfig: return 5
|
|
case .bluetoothConfig: return 6
|
|
case .UNRECOGNIZED(let i): return i
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
enum ModuleConfigType: SwiftProtobuf.Enum {
|
|
typealias RawValue = Int
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case mqttConfig // = 0
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case serialConfig // = 1
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case extnotifConfig // = 2
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case storeforwardConfig // = 3
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case rangetestConfig // = 4
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case telemetryConfig // = 5
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case cannedmsgConfig // = 6
|
|
|
|
///
|
|
/// TODO: REPLACE
|
|
case audioConfig // = 7
|
|
case UNRECOGNIZED(Int)
|
|
|
|
init() {
|
|
self = .mqttConfig
|
|
}
|
|
|
|
init?(rawValue: Int) {
|
|
switch rawValue {
|
|
case 0: self = .mqttConfig
|
|
case 1: self = .serialConfig
|
|
case 2: self = .extnotifConfig
|
|
case 3: self = .storeforwardConfig
|
|
case 4: self = .rangetestConfig
|
|
case 5: self = .telemetryConfig
|
|
case 6: self = .cannedmsgConfig
|
|
case 7: self = .audioConfig
|
|
default: self = .UNRECOGNIZED(rawValue)
|
|
}
|
|
}
|
|
|
|
var rawValue: Int {
|
|
switch self {
|
|
case .mqttConfig: return 0
|
|
case .serialConfig: return 1
|
|
case .extnotifConfig: return 2
|
|
case .storeforwardConfig: return 3
|
|
case .rangetestConfig: return 4
|
|
case .telemetryConfig: return 5
|
|
case .cannedmsgConfig: return 6
|
|
case .audioConfig: return 7
|
|
case .UNRECOGNIZED(let i): return i
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
init() {}
|
|
}
|
|
|
|
#if swift(>=4.2)
|
|
|
|
extension AdminMessage.ConfigType: CaseIterable {
|
|
// The compiler won't synthesize support with the UNRECOGNIZED case.
|
|
static var allCases: [AdminMessage.ConfigType] = [
|
|
.deviceConfig,
|
|
.positionConfig,
|
|
.powerConfig,
|
|
.networkConfig,
|
|
.displayConfig,
|
|
.loraConfig,
|
|
.bluetoothConfig,
|
|
]
|
|
}
|
|
|
|
extension AdminMessage.ModuleConfigType: CaseIterable {
|
|
// The compiler won't synthesize support with the UNRECOGNIZED case.
|
|
static var allCases: [AdminMessage.ModuleConfigType] = [
|
|
.mqttConfig,
|
|
.serialConfig,
|
|
.extnotifConfig,
|
|
.storeforwardConfig,
|
|
.rangetestConfig,
|
|
.telemetryConfig,
|
|
.cannedmsgConfig,
|
|
.audioConfig,
|
|
]
|
|
}
|
|
|
|
#endif // swift(>=4.2)
|
|
|
|
#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 {}
|
|
#endif // swift(>=5.5) && canImport(_Concurrency)
|
|
|
|
// MARK: - Code below here is support for the SwiftProtobuf runtime.
|
|
|
|
extension AdminMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
static let protoMessageName: String = "AdminMessage"
|
|
static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
|
|
1: .standard(proto: "get_channel_request"),
|
|
2: .standard(proto: "get_channel_response"),
|
|
3: .standard(proto: "get_owner_request"),
|
|
4: .standard(proto: "get_owner_response"),
|
|
5: .standard(proto: "get_config_request"),
|
|
6: .standard(proto: "get_config_response"),
|
|
7: .standard(proto: "get_module_config_request"),
|
|
8: .standard(proto: "get_module_config_response"),
|
|
10: .standard(proto: "get_canned_message_module_messages_request"),
|
|
11: .standard(proto: "get_canned_message_module_messages_response"),
|
|
12: .standard(proto: "get_device_metadata_request"),
|
|
13: .standard(proto: "get_device_metadata_response"),
|
|
32: .standard(proto: "set_owner"),
|
|
33: .standard(proto: "set_channel"),
|
|
34: .standard(proto: "set_config"),
|
|
35: .standard(proto: "set_module_config"),
|
|
36: .standard(proto: "set_canned_message_module_messages"),
|
|
64: .standard(proto: "begin_edit_settings"),
|
|
65: .standard(proto: "commit_edit_settings"),
|
|
66: .standard(proto: "confirm_set_channel"),
|
|
67: .standard(proto: "confirm_set_radio"),
|
|
95: .standard(proto: "reboot_ota_seconds"),
|
|
96: .standard(proto: "exit_simulator"),
|
|
97: .standard(proto: "reboot_seconds"),
|
|
98: .standard(proto: "shutdown_seconds"),
|
|
99: .standard(proto: "factory_reset"),
|
|
100: .standard(proto: "nodedb_reset"),
|
|
]
|
|
|
|
mutating func decodeMessage<D: SwiftProtobuf.Decoder>(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: UInt32?
|
|
try decoder.decodeSingularUInt32Field(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getChannelRequest(v)
|
|
}
|
|
}()
|
|
case 2: try {
|
|
var v: Channel?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .getChannelResponse(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getChannelResponse(v)
|
|
}
|
|
}()
|
|
case 3: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getOwnerRequest(v)
|
|
}
|
|
}()
|
|
case 4: try {
|
|
var v: User?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .getOwnerResponse(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getOwnerResponse(v)
|
|
}
|
|
}()
|
|
case 5: try {
|
|
var v: AdminMessage.ConfigType?
|
|
try decoder.decodeSingularEnumField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getConfigRequest(v)
|
|
}
|
|
}()
|
|
case 6: try {
|
|
var v: Config?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .getConfigResponse(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getConfigResponse(v)
|
|
}
|
|
}()
|
|
case 7: try {
|
|
var v: AdminMessage.ModuleConfigType?
|
|
try decoder.decodeSingularEnumField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getModuleConfigRequest(v)
|
|
}
|
|
}()
|
|
case 8: try {
|
|
var v: ModuleConfig?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .getModuleConfigResponse(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getModuleConfigResponse(v)
|
|
}
|
|
}()
|
|
case 10: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getCannedMessageModuleMessagesRequest(v)
|
|
}
|
|
}()
|
|
case 11: try {
|
|
var v: String?
|
|
try decoder.decodeSingularStringField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getCannedMessageModuleMessagesResponse(v)
|
|
}
|
|
}()
|
|
case 12: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getDeviceMetadataRequest(v)
|
|
}
|
|
}()
|
|
case 13: try {
|
|
var v: DeviceMetadata?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .getDeviceMetadataResponse(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .getDeviceMetadataResponse(v)
|
|
}
|
|
}()
|
|
case 32: try {
|
|
var v: User?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .setOwner(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .setOwner(v)
|
|
}
|
|
}()
|
|
case 33: try {
|
|
var v: Channel?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .setChannel(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .setChannel(v)
|
|
}
|
|
}()
|
|
case 34: try {
|
|
var v: Config?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .setConfig(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .setConfig(v)
|
|
}
|
|
}()
|
|
case 35: try {
|
|
var v: ModuleConfig?
|
|
var hadOneofValue = false
|
|
if let current = self.payloadVariant {
|
|
hadOneofValue = true
|
|
if case .setModuleConfig(let m) = current {v = m}
|
|
}
|
|
try decoder.decodeSingularMessageField(value: &v)
|
|
if let v = v {
|
|
if hadOneofValue {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .setModuleConfig(v)
|
|
}
|
|
}()
|
|
case 36: try {
|
|
var v: String?
|
|
try decoder.decodeSingularStringField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .setCannedMessageModuleMessages(v)
|
|
}
|
|
}()
|
|
case 64: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .beginEditSettings(v)
|
|
}
|
|
}()
|
|
case 65: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .commitEditSettings(v)
|
|
}
|
|
}()
|
|
case 66: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .confirmSetChannel(v)
|
|
}
|
|
}()
|
|
case 67: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .confirmSetRadio(v)
|
|
}
|
|
}()
|
|
case 95: try {
|
|
var v: Int32?
|
|
try decoder.decodeSingularInt32Field(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .rebootOtaSeconds(v)
|
|
}
|
|
}()
|
|
case 96: try {
|
|
var v: Bool?
|
|
try decoder.decodeSingularBoolField(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .exitSimulator(v)
|
|
}
|
|
}()
|
|
case 97: try {
|
|
var v: Int32?
|
|
try decoder.decodeSingularInt32Field(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .rebootSeconds(v)
|
|
}
|
|
}()
|
|
case 98: try {
|
|
var v: Int32?
|
|
try decoder.decodeSingularInt32Field(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .shutdownSeconds(v)
|
|
}
|
|
}()
|
|
case 99: try {
|
|
var v: Int32?
|
|
try decoder.decodeSingularInt32Field(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .factoryReset(v)
|
|
}
|
|
}()
|
|
case 100: try {
|
|
var v: Int32?
|
|
try decoder.decodeSingularInt32Field(value: &v)
|
|
if let v = v {
|
|
if self.payloadVariant != nil {try decoder.handleConflictingOneOf()}
|
|
self.payloadVariant = .nodedbReset(v)
|
|
}
|
|
}()
|
|
default: break
|
|
}
|
|
}
|
|
}
|
|
|
|
func traverse<V: SwiftProtobuf.Visitor>(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.payloadVariant {
|
|
case .getChannelRequest?: try {
|
|
guard case .getChannelRequest(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularUInt32Field(value: v, fieldNumber: 1)
|
|
}()
|
|
case .getChannelResponse?: try {
|
|
guard case .getChannelResponse(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 2)
|
|
}()
|
|
case .getOwnerRequest?: try {
|
|
guard case .getOwnerRequest(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 3)
|
|
}()
|
|
case .getOwnerResponse?: try {
|
|
guard case .getOwnerResponse(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 4)
|
|
}()
|
|
case .getConfigRequest?: try {
|
|
guard case .getConfigRequest(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularEnumField(value: v, fieldNumber: 5)
|
|
}()
|
|
case .getConfigResponse?: try {
|
|
guard case .getConfigResponse(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 6)
|
|
}()
|
|
case .getModuleConfigRequest?: try {
|
|
guard case .getModuleConfigRequest(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularEnumField(value: v, fieldNumber: 7)
|
|
}()
|
|
case .getModuleConfigResponse?: try {
|
|
guard case .getModuleConfigResponse(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 8)
|
|
}()
|
|
case .getCannedMessageModuleMessagesRequest?: try {
|
|
guard case .getCannedMessageModuleMessagesRequest(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 10)
|
|
}()
|
|
case .getCannedMessageModuleMessagesResponse?: try {
|
|
guard case .getCannedMessageModuleMessagesResponse(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularStringField(value: v, fieldNumber: 11)
|
|
}()
|
|
case .getDeviceMetadataRequest?: try {
|
|
guard case .getDeviceMetadataRequest(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 12)
|
|
}()
|
|
case .getDeviceMetadataResponse?: try {
|
|
guard case .getDeviceMetadataResponse(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 13)
|
|
}()
|
|
case .setOwner?: try {
|
|
guard case .setOwner(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 32)
|
|
}()
|
|
case .setChannel?: try {
|
|
guard case .setChannel(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 33)
|
|
}()
|
|
case .setConfig?: try {
|
|
guard case .setConfig(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 34)
|
|
}()
|
|
case .setModuleConfig?: try {
|
|
guard case .setModuleConfig(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularMessageField(value: v, fieldNumber: 35)
|
|
}()
|
|
case .setCannedMessageModuleMessages?: try {
|
|
guard case .setCannedMessageModuleMessages(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularStringField(value: v, fieldNumber: 36)
|
|
}()
|
|
case .beginEditSettings?: try {
|
|
guard case .beginEditSettings(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 64)
|
|
}()
|
|
case .commitEditSettings?: try {
|
|
guard case .commitEditSettings(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 65)
|
|
}()
|
|
case .confirmSetChannel?: try {
|
|
guard case .confirmSetChannel(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 66)
|
|
}()
|
|
case .confirmSetRadio?: try {
|
|
guard case .confirmSetRadio(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 67)
|
|
}()
|
|
case .rebootOtaSeconds?: try {
|
|
guard case .rebootOtaSeconds(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularInt32Field(value: v, fieldNumber: 95)
|
|
}()
|
|
case .exitSimulator?: try {
|
|
guard case .exitSimulator(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularBoolField(value: v, fieldNumber: 96)
|
|
}()
|
|
case .rebootSeconds?: try {
|
|
guard case .rebootSeconds(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularInt32Field(value: v, fieldNumber: 97)
|
|
}()
|
|
case .shutdownSeconds?: try {
|
|
guard case .shutdownSeconds(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularInt32Field(value: v, fieldNumber: 98)
|
|
}()
|
|
case .factoryReset?: try {
|
|
guard case .factoryReset(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularInt32Field(value: v, fieldNumber: 99)
|
|
}()
|
|
case .nodedbReset?: try {
|
|
guard case .nodedbReset(let v)? = self.payloadVariant else { preconditionFailure() }
|
|
try visitor.visitSingularInt32Field(value: v, fieldNumber: 100)
|
|
}()
|
|
case nil: break
|
|
}
|
|
try unknownFields.traverse(visitor: &visitor)
|
|
}
|
|
|
|
static func ==(lhs: AdminMessage, rhs: AdminMessage) -> Bool {
|
|
if lhs.payloadVariant != rhs.payloadVariant {return false}
|
|
if lhs.unknownFields != rhs.unknownFields {return false}
|
|
return true
|
|
}
|
|
}
|
|
|
|
extension AdminMessage.ConfigType: SwiftProtobuf._ProtoNameProviding {
|
|
static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
|
|
0: .same(proto: "DEVICE_CONFIG"),
|
|
1: .same(proto: "POSITION_CONFIG"),
|
|
2: .same(proto: "POWER_CONFIG"),
|
|
3: .same(proto: "NETWORK_CONFIG"),
|
|
4: .same(proto: "DISPLAY_CONFIG"),
|
|
5: .same(proto: "LORA_CONFIG"),
|
|
6: .same(proto: "BLUETOOTH_CONFIG"),
|
|
]
|
|
}
|
|
|
|
extension AdminMessage.ModuleConfigType: SwiftProtobuf._ProtoNameProviding {
|
|
static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
|
|
0: .same(proto: "MQTT_CONFIG"),
|
|
1: .same(proto: "SERIAL_CONFIG"),
|
|
2: .same(proto: "EXTNOTIF_CONFIG"),
|
|
3: .same(proto: "STOREFORWARD_CONFIG"),
|
|
4: .same(proto: "RANGETEST_CONFIG"),
|
|
5: .same(proto: "TELEMETRY_CONFIG"),
|
|
6: .same(proto: "CANNEDMSG_CONFIG"),
|
|
7: .same(proto: "AUDIO_CONFIG"),
|
|
]
|
|
}
|