mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Update protos
This commit is contained in:
parent
2c8ec9cd8c
commit
5bb162764e
1 changed files with 8 additions and 0 deletions
|
|
@ -102,6 +102,10 @@ enum PortNum: SwiftProtobuf.Enum {
|
|||
/// This marker comes from the 'moduleConfig.audio.bitrate' enum minus one.
|
||||
case audioApp // = 9
|
||||
|
||||
///
|
||||
/// Same as Text Message but originating from Detection Sensor Module.
|
||||
case detectionSensorApp // = 10
|
||||
|
||||
///
|
||||
/// Provides a 'ping' service that replies to any packet it receives.
|
||||
/// Also serves as a small example module.
|
||||
|
|
@ -197,6 +201,7 @@ enum PortNum: SwiftProtobuf.Enum {
|
|||
case 7: self = .textMessageCompressedApp
|
||||
case 8: self = .waypointApp
|
||||
case 9: self = .audioApp
|
||||
case 10: self = .detectionSensorApp
|
||||
case 32: self = .replyApp
|
||||
case 33: self = .ipTunnelApp
|
||||
case 64: self = .serialApp
|
||||
|
|
@ -226,6 +231,7 @@ enum PortNum: SwiftProtobuf.Enum {
|
|||
case .textMessageCompressedApp: return 7
|
||||
case .waypointApp: return 8
|
||||
case .audioApp: return 9
|
||||
case .detectionSensorApp: return 10
|
||||
case .replyApp: return 32
|
||||
case .ipTunnelApp: return 33
|
||||
case .serialApp: return 64
|
||||
|
|
@ -260,6 +266,7 @@ extension PortNum: CaseIterable {
|
|||
.textMessageCompressedApp,
|
||||
.waypointApp,
|
||||
.audioApp,
|
||||
.detectionSensorApp,
|
||||
.replyApp,
|
||||
.ipTunnelApp,
|
||||
.serialApp,
|
||||
|
|
@ -296,6 +303,7 @@ extension PortNum: SwiftProtobuf._ProtoNameProviding {
|
|||
7: .same(proto: "TEXT_MESSAGE_COMPRESSED_APP"),
|
||||
8: .same(proto: "WAYPOINT_APP"),
|
||||
9: .same(proto: "AUDIO_APP"),
|
||||
10: .same(proto: "DETECTION_SENSOR_APP"),
|
||||
32: .same(proto: "REPLY_APP"),
|
||||
33: .same(proto: "IP_TUNNEL_APP"),
|
||||
64: .same(proto: "SERIAL_APP"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue