@blueyerobotics/protocol-definitions 3.2.0-bb5ffe79 → 3.2.0-c75f3166
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +165 -0
- package/README.npm.md +40 -0
- package/dist/control.d.ts +6 -2
- package/dist/control.js +39 -8
- package/dist/message_formats.d.ts +90 -14
- package/dist/message_formats.js +466 -38
- package/dist/req_rep.d.ts +22 -0
- package/dist/req_rep.js +191 -1
- package/dist/telemetry.d.ts +25 -1
- package/dist/telemetry.js +213 -5
- package/package.json +8 -6
package/dist/message_formats.js
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
// source: message_formats.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.SurfaceUnitVersionInfo = exports.SurfaceUnitBatteryInfo = exports.CPUInfo = exports.PersistentStorageSettings = exports.MutltibeamRecordingIndex = exports.MultibeamFrameOffset = exports.MultibeamErrorFlags = exports.MultibeamDiscovery = exports.MultibeamConfig = exports.MultibeamPing = exports.MedusaSpectrometerData = exports.Imu = exports.Vector3 = exports.GuestPortCurrent = exports.MultibeamServo = exports.GenericServo = exports.CpProbe = exports.ThicknessGauge = exports.GuestPortRestartInfo = exports.GuestPortInfo = exports.GuestPortConnectorInfo = void 0;
|
|
8
|
+
exports.AutoPilotHeaveState = exports.AutoPilotSurgeYawState = exports.WeatherVaningState = exports.StationKeepingState = exports.AutoAltitudeState = exports.AutoDepthState = exports.AutoHeadingState = exports.ConnectionDuration = exports.LatLongPosition = exports.Laser = exports.Lights = exports.MotionInput = exports.KernelLogEntry_KeyValuePair = exports.KernelLogEntry = exports.LogEntry = exports.BinlogRecord = exports.SurfaceUnitBatteryInfo_ChargeStatus = exports.MultibeamConfig_MaximumNumberOfBeams = exports.MultibeamConfig_PingRate = exports.CalibrationState_Status = exports.RemovableStorageDevice_Status = exports.BatteryBQ40Z50_BatteryStatus_BatteryError = exports.PingerConfiguration_MountingDirection = exports.KernelLogEntry_KernelLogLevel = exports.LogEntry_LogLevel = exports.MultibeamFrequencyMode = exports.GuestPortError = exports.GuestPortDetachStatus = exports.NavigationSensorID = exports.GuestPortNumber = exports.GuestPortDeviceID = exports.FontSize = exports.ThicknessUnit = exports.DepthUnit = exports.LogoType = exports.TemperatureUnit = exports.StreamingProtocol = exports.Camera = exports.Framerate = exports.Resolution = exports.PressureSensorType = exports.Model = exports.StorageLocation = exports.NotificationLevel = exports.NotificationType = exports.ResetCoordinateSource = exports.HeadingMode = exports.HeadingSource = exports.LocationSource = exports.IntervalType = void 0;
|
|
9
|
+
exports.CameraParameters = exports.ErrorFlags = exports.DroneInfo = exports.TiltVelocity = exports.TiltAngle = exports.NStreamers = exports.IperfStatus = exports.CalibrationState = exports.RemovableStorageErrorFlags = exports.RemovableStorageDevice = exports.StoragePartition = exports.StorageSpace = exports.RecordOn = exports.DiveTime = exports.ControllerHealth = exports.ControlForce = exports.Notification = exports.Reference = exports.Depth = exports.DvlVelocity = exports.DvlTransducer = exports.ResetPositionSettings = exports.PositionEstimate = exports.ForwardDistance = exports.Altitude = exports.MagneticDeclination = exports.Attitude = exports.BatteryBQ40Z50_BatteryChargingEvents = exports.BatteryBQ40Z50_BatterySafetyEvents = exports.BatteryBQ40Z50_BatteryLifetimes_CellVoltages = exports.BatteryBQ40Z50_BatteryLifetimes = exports.BatteryBQ40Z50_BatteryStatus = exports.BatteryBQ40Z50_Temperature = exports.BatteryBQ40Z50_Voltage = exports.BatteryBQ40Z50 = exports.Battery = exports.CanisterHumidity = exports.CanisterTemperature = exports.CPUTemperature = exports.WaterTemperature = exports.PingerConfiguration = exports.WaterDensity = exports.TimeLapseState = exports.RecordState = exports.ConnectedClient = exports.ClientInfo = exports.GripperVelocities = exports.SystemTime = exports.TiltStabilizationState = exports.ControlMode = void 0;
|
|
10
|
+
exports.SurfaceUnitVersionInfo = exports.SurfaceUnitBatteryInfo = exports.CPUInfo = exports.PersistentStorageSettings = exports.MutltibeamRecordingIndex = exports.MultibeamFrameOffset = exports.MultibeamErrorFlags = exports.MultibeamDiscovery = exports.MultibeamConfig = exports.MultibeamPing = exports.MedusaSpectrometerData = exports.Imu = exports.Vector3 = exports.GuestPortCurrent = exports.MultibeamServo = exports.GenericServo = exports.CpProbe = exports.ThicknessGauge = exports.GuestPortRestartInfo = exports.GuestPortInfo = exports.GuestPortConnectorInfo = exports.GuestPortDeviceList = exports.GuestPortDevice = exports.NavigationSensorStatus = exports.OverlayParameters = void 0;
|
|
11
11
|
exports.intervalTypeFromJSON = intervalTypeFromJSON;
|
|
12
12
|
exports.intervalTypeToJSON = intervalTypeToJSON;
|
|
13
13
|
exports.locationSourceFromJSON = locationSourceFromJSON;
|
|
@@ -22,6 +22,8 @@ exports.notificationTypeFromJSON = notificationTypeFromJSON;
|
|
|
22
22
|
exports.notificationTypeToJSON = notificationTypeToJSON;
|
|
23
23
|
exports.notificationLevelFromJSON = notificationLevelFromJSON;
|
|
24
24
|
exports.notificationLevelToJSON = notificationLevelToJSON;
|
|
25
|
+
exports.storageLocationFromJSON = storageLocationFromJSON;
|
|
26
|
+
exports.storageLocationToJSON = storageLocationToJSON;
|
|
25
27
|
exports.modelFromJSON = modelFromJSON;
|
|
26
28
|
exports.modelToJSON = modelToJSON;
|
|
27
29
|
exports.pressureSensorTypeFromJSON = pressureSensorTypeFromJSON;
|
|
@@ -58,6 +60,8 @@ exports.multibeamFrequencyModeFromJSON = multibeamFrequencyModeFromJSON;
|
|
|
58
60
|
exports.multibeamFrequencyModeToJSON = multibeamFrequencyModeToJSON;
|
|
59
61
|
exports.logEntry_LogLevelFromJSON = logEntry_LogLevelFromJSON;
|
|
60
62
|
exports.logEntry_LogLevelToJSON = logEntry_LogLevelToJSON;
|
|
63
|
+
exports.kernelLogEntry_KernelLogLevelFromJSON = kernelLogEntry_KernelLogLevelFromJSON;
|
|
64
|
+
exports.kernelLogEntry_KernelLogLevelToJSON = kernelLogEntry_KernelLogLevelToJSON;
|
|
61
65
|
exports.pingerConfiguration_MountingDirectionFromJSON = pingerConfiguration_MountingDirectionFromJSON;
|
|
62
66
|
exports.pingerConfiguration_MountingDirectionToJSON = pingerConfiguration_MountingDirectionToJSON;
|
|
63
67
|
exports.batteryBQ40Z50_BatteryStatus_BatteryErrorFromJSON = batteryBQ40Z50_BatteryStatus_BatteryErrorFromJSON;
|
|
@@ -593,6 +597,51 @@ function notificationLevelToJSON(object) {
|
|
|
593
597
|
return "UNRECOGNIZED";
|
|
594
598
|
}
|
|
595
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* Storage location.
|
|
602
|
+
*
|
|
603
|
+
* Used to specify which storage location to use for recording photos and videos.
|
|
604
|
+
*/
|
|
605
|
+
var StorageLocation;
|
|
606
|
+
(function (StorageLocation) {
|
|
607
|
+
/** STORAGE_LOCATION_UNSPECIFIED - Unspecified. */
|
|
608
|
+
StorageLocation[StorageLocation["STORAGE_LOCATION_UNSPECIFIED"] = 0] = "STORAGE_LOCATION_UNSPECIFIED";
|
|
609
|
+
/** STORAGE_LOCATION_INTERNAL - Internal storage of the drone. */
|
|
610
|
+
StorageLocation[StorageLocation["STORAGE_LOCATION_INTERNAL"] = 1] = "STORAGE_LOCATION_INTERNAL";
|
|
611
|
+
/** STORAGE_LOCATION_REMOVABLE - Removable storage device. */
|
|
612
|
+
StorageLocation[StorageLocation["STORAGE_LOCATION_REMOVABLE"] = 2] = "STORAGE_LOCATION_REMOVABLE";
|
|
613
|
+
StorageLocation[StorageLocation["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
614
|
+
})(StorageLocation || (exports.StorageLocation = StorageLocation = {}));
|
|
615
|
+
function storageLocationFromJSON(object) {
|
|
616
|
+
switch (object) {
|
|
617
|
+
case 0:
|
|
618
|
+
case "STORAGE_LOCATION_UNSPECIFIED":
|
|
619
|
+
return StorageLocation.STORAGE_LOCATION_UNSPECIFIED;
|
|
620
|
+
case 1:
|
|
621
|
+
case "STORAGE_LOCATION_INTERNAL":
|
|
622
|
+
return StorageLocation.STORAGE_LOCATION_INTERNAL;
|
|
623
|
+
case 2:
|
|
624
|
+
case "STORAGE_LOCATION_REMOVABLE":
|
|
625
|
+
return StorageLocation.STORAGE_LOCATION_REMOVABLE;
|
|
626
|
+
case -1:
|
|
627
|
+
case "UNRECOGNIZED":
|
|
628
|
+
default:
|
|
629
|
+
return StorageLocation.UNRECOGNIZED;
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
function storageLocationToJSON(object) {
|
|
633
|
+
switch (object) {
|
|
634
|
+
case StorageLocation.STORAGE_LOCATION_UNSPECIFIED:
|
|
635
|
+
return "STORAGE_LOCATION_UNSPECIFIED";
|
|
636
|
+
case StorageLocation.STORAGE_LOCATION_INTERNAL:
|
|
637
|
+
return "STORAGE_LOCATION_INTERNAL";
|
|
638
|
+
case StorageLocation.STORAGE_LOCATION_REMOVABLE:
|
|
639
|
+
return "STORAGE_LOCATION_REMOVABLE";
|
|
640
|
+
case StorageLocation.UNRECOGNIZED:
|
|
641
|
+
default:
|
|
642
|
+
return "UNRECOGNIZED";
|
|
643
|
+
}
|
|
644
|
+
}
|
|
596
645
|
/** Drone models produced by Blueye. */
|
|
597
646
|
var Model;
|
|
598
647
|
(function (Model) {
|
|
@@ -722,15 +771,13 @@ var Resolution;
|
|
|
722
771
|
(function (Resolution) {
|
|
723
772
|
/** RESOLUTION_UNSPECIFIED - Resolution not specified. */
|
|
724
773
|
Resolution[Resolution["RESOLUTION_UNSPECIFIED"] = 0] = "RESOLUTION_UNSPECIFIED";
|
|
725
|
-
/**
|
|
726
|
-
Resolution[Resolution["
|
|
727
|
-
/** RESOLUTION_SVGA - SVGA (800x600). */
|
|
728
|
-
Resolution[Resolution["RESOLUTION_SVGA"] = 5] = "RESOLUTION_SVGA";
|
|
774
|
+
/** RESOLUTION_VGA_480P - VGA (640x480). */
|
|
775
|
+
Resolution[Resolution["RESOLUTION_VGA_480P"] = 4] = "RESOLUTION_VGA_480P";
|
|
729
776
|
/** RESOLUTION_HD_720P - 720p HD (1280x720). */
|
|
730
777
|
Resolution[Resolution["RESOLUTION_HD_720P"] = 2] = "RESOLUTION_HD_720P";
|
|
731
778
|
/** RESOLUTION_FULLHD_1080P - 1080p Full HD (1920x1080). */
|
|
732
779
|
Resolution[Resolution["RESOLUTION_FULLHD_1080P"] = 1] = "RESOLUTION_FULLHD_1080P";
|
|
733
|
-
/** RESOLUTION_UHD_4K - 4K Ultra HD (3840x2160). */
|
|
780
|
+
/** RESOLUTION_UHD_4K - 4K Ultra HD (3840x2160, Only supported on X3 Ultra). */
|
|
734
781
|
Resolution[Resolution["RESOLUTION_UHD_4K"] = 3] = "RESOLUTION_UHD_4K";
|
|
735
782
|
Resolution[Resolution["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
736
783
|
})(Resolution || (exports.Resolution = Resolution = {}));
|
|
@@ -740,11 +787,8 @@ function resolutionFromJSON(object) {
|
|
|
740
787
|
case "RESOLUTION_UNSPECIFIED":
|
|
741
788
|
return Resolution.RESOLUTION_UNSPECIFIED;
|
|
742
789
|
case 4:
|
|
743
|
-
case "
|
|
744
|
-
return Resolution.
|
|
745
|
-
case 5:
|
|
746
|
-
case "RESOLUTION_SVGA":
|
|
747
|
-
return Resolution.RESOLUTION_SVGA;
|
|
790
|
+
case "RESOLUTION_VGA_480P":
|
|
791
|
+
return Resolution.RESOLUTION_VGA_480P;
|
|
748
792
|
case 2:
|
|
749
793
|
case "RESOLUTION_HD_720P":
|
|
750
794
|
return Resolution.RESOLUTION_HD_720P;
|
|
@@ -764,10 +808,8 @@ function resolutionToJSON(object) {
|
|
|
764
808
|
switch (object) {
|
|
765
809
|
case Resolution.RESOLUTION_UNSPECIFIED:
|
|
766
810
|
return "RESOLUTION_UNSPECIFIED";
|
|
767
|
-
case Resolution.
|
|
768
|
-
return "
|
|
769
|
-
case Resolution.RESOLUTION_SVGA:
|
|
770
|
-
return "RESOLUTION_SVGA";
|
|
811
|
+
case Resolution.RESOLUTION_VGA_480P:
|
|
812
|
+
return "RESOLUTION_VGA_480P";
|
|
771
813
|
case Resolution.RESOLUTION_HD_720P:
|
|
772
814
|
return "RESOLUTION_HD_720P";
|
|
773
815
|
case Resolution.RESOLUTION_FULLHD_1080P:
|
|
@@ -786,7 +828,7 @@ var Framerate;
|
|
|
786
828
|
Framerate[Framerate["FRAMERATE_UNSPECIFIED"] = 0] = "FRAMERATE_UNSPECIFIED";
|
|
787
829
|
/** FRAMERATE_FPS_30 - 30 frames per second. */
|
|
788
830
|
Framerate[Framerate["FRAMERATE_FPS_30"] = 1] = "FRAMERATE_FPS_30";
|
|
789
|
-
/** FRAMERATE_FPS_25 - 25 frames per second. */
|
|
831
|
+
/** FRAMERATE_FPS_25 - 25 frames per second. (Only supported on Pioneer/Pro/X1/X3) */
|
|
790
832
|
Framerate[Framerate["FRAMERATE_FPS_25"] = 2] = "FRAMERATE_FPS_25";
|
|
791
833
|
Framerate[Framerate["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
792
834
|
})(Framerate || (exports.Framerate = Framerate = {}));
|
|
@@ -867,7 +909,7 @@ var StreamingProtocol;
|
|
|
867
909
|
StreamingProtocol[StreamingProtocol["STREAMING_PROTOCOL_UNSPECIFIED"] = 0] = "STREAMING_PROTOCOL_UNSPECIFIED";
|
|
868
910
|
/** STREAMING_PROTOCOL_RTSP_H264 - RTSP streaming protocol using H264 codec. */
|
|
869
911
|
StreamingProtocol[StreamingProtocol["STREAMING_PROTOCOL_RTSP_H264"] = 1] = "STREAMING_PROTOCOL_RTSP_H264";
|
|
870
|
-
/** STREAMING_PROTOCOL_RTSP_MJPEG - RTSP streaming protocol using MJPEG codec. */
|
|
912
|
+
/** STREAMING_PROTOCOL_RTSP_MJPEG - RTSP streaming protocol using MJPEG codec. No recording when activated. */
|
|
871
913
|
StreamingProtocol[StreamingProtocol["STREAMING_PROTOCOL_RTSP_MJPEG"] = 2] = "STREAMING_PROTOCOL_RTSP_MJPEG";
|
|
872
914
|
StreamingProtocol[StreamingProtocol["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
873
915
|
})(StreamingProtocol || (exports.StreamingProtocol = StreamingProtocol = {}));
|
|
@@ -1234,8 +1276,12 @@ var GuestPortDeviceID;
|
|
|
1234
1276
|
GuestPortDeviceID[GuestPortDeviceID["GUEST_PORT_DEVICE_ID_WATERLINKED_SONAR_3D15"] = 43] = "GUEST_PORT_DEVICE_ID_WATERLINKED_SONAR_3D15";
|
|
1235
1277
|
/** GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650 - Cerulean Tracker 650. */
|
|
1236
1278
|
GuestPortDeviceID[GuestPortDeviceID["GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650"] = 44] = "GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650";
|
|
1237
|
-
/** GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE - Blueye External USB Storage */
|
|
1279
|
+
/** GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE - Blueye External USB Storage. */
|
|
1238
1280
|
GuestPortDeviceID[GuestPortDeviceID["GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE"] = 45] = "GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE";
|
|
1281
|
+
/** GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2 - Blueye Multibeam Skid Servo V2. */
|
|
1282
|
+
GuestPortDeviceID[GuestPortDeviceID["GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2"] = 46] = "GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2";
|
|
1283
|
+
/** GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT - Cerulean Omniscan 450 Compact. */
|
|
1284
|
+
GuestPortDeviceID[GuestPortDeviceID["GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT"] = 47] = "GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT";
|
|
1239
1285
|
GuestPortDeviceID[GuestPortDeviceID["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
1240
1286
|
})(GuestPortDeviceID || (exports.GuestPortDeviceID = GuestPortDeviceID = {}));
|
|
1241
1287
|
function guestPortDeviceIDFromJSON(object) {
|
|
@@ -1378,6 +1424,12 @@ function guestPortDeviceIDFromJSON(object) {
|
|
|
1378
1424
|
case 45:
|
|
1379
1425
|
case "GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE":
|
|
1380
1426
|
return GuestPortDeviceID.GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE;
|
|
1427
|
+
case 46:
|
|
1428
|
+
case "GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2":
|
|
1429
|
+
return GuestPortDeviceID.GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2;
|
|
1430
|
+
case 47:
|
|
1431
|
+
case "GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT":
|
|
1432
|
+
return GuestPortDeviceID.GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT;
|
|
1381
1433
|
case -1:
|
|
1382
1434
|
case "UNRECOGNIZED":
|
|
1383
1435
|
default:
|
|
@@ -1478,6 +1530,10 @@ function guestPortDeviceIDToJSON(object) {
|
|
|
1478
1530
|
return "GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650";
|
|
1479
1531
|
case GuestPortDeviceID.GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE:
|
|
1480
1532
|
return "GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE";
|
|
1533
|
+
case GuestPortDeviceID.GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2:
|
|
1534
|
+
return "GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2";
|
|
1535
|
+
case GuestPortDeviceID.GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT:
|
|
1536
|
+
return "GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT";
|
|
1481
1537
|
case GuestPortDeviceID.UNRECOGNIZED:
|
|
1482
1538
|
default:
|
|
1483
1539
|
return "UNRECOGNIZED";
|
|
@@ -1822,6 +1878,89 @@ function logEntry_LogLevelToJSON(object) {
|
|
|
1822
1878
|
return "UNRECOGNIZED";
|
|
1823
1879
|
}
|
|
1824
1880
|
}
|
|
1881
|
+
/** Kernel log level. */
|
|
1882
|
+
var KernelLogEntry_KernelLogLevel;
|
|
1883
|
+
(function (KernelLogEntry_KernelLogLevel) {
|
|
1884
|
+
/** KERNEL_LOG_LEVEL_UNSPECIFIED - Unspecified log level. */
|
|
1885
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_UNSPECIFIED"] = 0] = "KERNEL_LOG_LEVEL_UNSPECIFIED";
|
|
1886
|
+
/** KERNEL_LOG_LEVEL_EMERG - Emergency log level. */
|
|
1887
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_EMERG"] = 1] = "KERNEL_LOG_LEVEL_EMERG";
|
|
1888
|
+
/** KERNEL_LOG_LEVEL_ALERT - Alert log level. */
|
|
1889
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_ALERT"] = 2] = "KERNEL_LOG_LEVEL_ALERT";
|
|
1890
|
+
/** KERNEL_LOG_LEVEL_CRIT - Critical log level. */
|
|
1891
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_CRIT"] = 3] = "KERNEL_LOG_LEVEL_CRIT";
|
|
1892
|
+
/** KERNEL_LOG_LEVEL_ERR - Error log level. */
|
|
1893
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_ERR"] = 4] = "KERNEL_LOG_LEVEL_ERR";
|
|
1894
|
+
/** KERNEL_LOG_LEVEL_WARNING - Warning log level. */
|
|
1895
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_WARNING"] = 5] = "KERNEL_LOG_LEVEL_WARNING";
|
|
1896
|
+
/** KERNEL_LOG_LEVEL_NOTICE - Notice log level. */
|
|
1897
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_NOTICE"] = 6] = "KERNEL_LOG_LEVEL_NOTICE";
|
|
1898
|
+
/** KERNEL_LOG_LEVEL_INFO - Informational log level. */
|
|
1899
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_INFO"] = 7] = "KERNEL_LOG_LEVEL_INFO";
|
|
1900
|
+
/** KERNEL_LOG_LEVEL_DEBUG - Debug log level. */
|
|
1901
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["KERNEL_LOG_LEVEL_DEBUG"] = 8] = "KERNEL_LOG_LEVEL_DEBUG";
|
|
1902
|
+
KernelLogEntry_KernelLogLevel[KernelLogEntry_KernelLogLevel["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
1903
|
+
})(KernelLogEntry_KernelLogLevel || (exports.KernelLogEntry_KernelLogLevel = KernelLogEntry_KernelLogLevel = {}));
|
|
1904
|
+
function kernelLogEntry_KernelLogLevelFromJSON(object) {
|
|
1905
|
+
switch (object) {
|
|
1906
|
+
case 0:
|
|
1907
|
+
case "KERNEL_LOG_LEVEL_UNSPECIFIED":
|
|
1908
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_UNSPECIFIED;
|
|
1909
|
+
case 1:
|
|
1910
|
+
case "KERNEL_LOG_LEVEL_EMERG":
|
|
1911
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_EMERG;
|
|
1912
|
+
case 2:
|
|
1913
|
+
case "KERNEL_LOG_LEVEL_ALERT":
|
|
1914
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_ALERT;
|
|
1915
|
+
case 3:
|
|
1916
|
+
case "KERNEL_LOG_LEVEL_CRIT":
|
|
1917
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_CRIT;
|
|
1918
|
+
case 4:
|
|
1919
|
+
case "KERNEL_LOG_LEVEL_ERR":
|
|
1920
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_ERR;
|
|
1921
|
+
case 5:
|
|
1922
|
+
case "KERNEL_LOG_LEVEL_WARNING":
|
|
1923
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_WARNING;
|
|
1924
|
+
case 6:
|
|
1925
|
+
case "KERNEL_LOG_LEVEL_NOTICE":
|
|
1926
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_NOTICE;
|
|
1927
|
+
case 7:
|
|
1928
|
+
case "KERNEL_LOG_LEVEL_INFO":
|
|
1929
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_INFO;
|
|
1930
|
+
case 8:
|
|
1931
|
+
case "KERNEL_LOG_LEVEL_DEBUG":
|
|
1932
|
+
return KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_DEBUG;
|
|
1933
|
+
case -1:
|
|
1934
|
+
case "UNRECOGNIZED":
|
|
1935
|
+
default:
|
|
1936
|
+
return KernelLogEntry_KernelLogLevel.UNRECOGNIZED;
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
function kernelLogEntry_KernelLogLevelToJSON(object) {
|
|
1940
|
+
switch (object) {
|
|
1941
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_UNSPECIFIED:
|
|
1942
|
+
return "KERNEL_LOG_LEVEL_UNSPECIFIED";
|
|
1943
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_EMERG:
|
|
1944
|
+
return "KERNEL_LOG_LEVEL_EMERG";
|
|
1945
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_ALERT:
|
|
1946
|
+
return "KERNEL_LOG_LEVEL_ALERT";
|
|
1947
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_CRIT:
|
|
1948
|
+
return "KERNEL_LOG_LEVEL_CRIT";
|
|
1949
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_ERR:
|
|
1950
|
+
return "KERNEL_LOG_LEVEL_ERR";
|
|
1951
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_WARNING:
|
|
1952
|
+
return "KERNEL_LOG_LEVEL_WARNING";
|
|
1953
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_NOTICE:
|
|
1954
|
+
return "KERNEL_LOG_LEVEL_NOTICE";
|
|
1955
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_INFO:
|
|
1956
|
+
return "KERNEL_LOG_LEVEL_INFO";
|
|
1957
|
+
case KernelLogEntry_KernelLogLevel.KERNEL_LOG_LEVEL_DEBUG:
|
|
1958
|
+
return "KERNEL_LOG_LEVEL_DEBUG";
|
|
1959
|
+
case KernelLogEntry_KernelLogLevel.UNRECOGNIZED:
|
|
1960
|
+
default:
|
|
1961
|
+
return "UNRECOGNIZED";
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1825
1964
|
var PingerConfiguration_MountingDirection;
|
|
1826
1965
|
(function (PingerConfiguration_MountingDirection) {
|
|
1827
1966
|
/** MOUNTING_DIRECTION_UNSPECIFIED - Mounting direction is unspecified. */
|
|
@@ -1943,10 +2082,12 @@ var RemovableStorageDevice_Status;
|
|
|
1943
2082
|
RemovableStorageDevice_Status[RemovableStorageDevice_Status["STATUS_UNSPECIFIED"] = 0] = "STATUS_UNSPECIFIED";
|
|
1944
2083
|
/** STATUS_READY - The storage device is valid and ready for use. */
|
|
1945
2084
|
RemovableStorageDevice_Status[RemovableStorageDevice_Status["STATUS_READY"] = 1] = "STATUS_READY";
|
|
1946
|
-
/** STATUS_FORMATTING - The storage device is being formatted */
|
|
2085
|
+
/** STATUS_FORMATTING - The storage device is being formatted. */
|
|
1947
2086
|
RemovableStorageDevice_Status[RemovableStorageDevice_Status["STATUS_FORMATTING"] = 2] = "STATUS_FORMATTING";
|
|
1948
2087
|
/** STATUS_ERROR - The storage device is in an error state. */
|
|
1949
2088
|
RemovableStorageDevice_Status[RemovableStorageDevice_Status["STATUS_ERROR"] = 3] = "STATUS_ERROR";
|
|
2089
|
+
/** STATUS_UNPLUGGED - The storage device is not present. */
|
|
2090
|
+
RemovableStorageDevice_Status[RemovableStorageDevice_Status["STATUS_UNPLUGGED"] = 4] = "STATUS_UNPLUGGED";
|
|
1950
2091
|
RemovableStorageDevice_Status[RemovableStorageDevice_Status["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
1951
2092
|
})(RemovableStorageDevice_Status || (exports.RemovableStorageDevice_Status = RemovableStorageDevice_Status = {}));
|
|
1952
2093
|
function removableStorageDevice_StatusFromJSON(object) {
|
|
@@ -1963,6 +2104,9 @@ function removableStorageDevice_StatusFromJSON(object) {
|
|
|
1963
2104
|
case 3:
|
|
1964
2105
|
case "STATUS_ERROR":
|
|
1965
2106
|
return RemovableStorageDevice_Status.STATUS_ERROR;
|
|
2107
|
+
case 4:
|
|
2108
|
+
case "STATUS_UNPLUGGED":
|
|
2109
|
+
return RemovableStorageDevice_Status.STATUS_UNPLUGGED;
|
|
1966
2110
|
case -1:
|
|
1967
2111
|
case "UNRECOGNIZED":
|
|
1968
2112
|
default:
|
|
@@ -1979,6 +2123,8 @@ function removableStorageDevice_StatusToJSON(object) {
|
|
|
1979
2123
|
return "STATUS_FORMATTING";
|
|
1980
2124
|
case RemovableStorageDevice_Status.STATUS_ERROR:
|
|
1981
2125
|
return "STATUS_ERROR";
|
|
2126
|
+
case RemovableStorageDevice_Status.STATUS_UNPLUGGED:
|
|
2127
|
+
return "STATUS_UNPLUGGED";
|
|
1982
2128
|
case RemovableStorageDevice_Status.UNRECOGNIZED:
|
|
1983
2129
|
default:
|
|
1984
2130
|
return "UNRECOGNIZED";
|
|
@@ -2471,6 +2617,189 @@ exports.LogEntry = {
|
|
|
2471
2617
|
return message;
|
|
2472
2618
|
},
|
|
2473
2619
|
};
|
|
2620
|
+
function createBaseKernelLogEntry() {
|
|
2621
|
+
return { level: 0, seqnum: 0, timestamp: undefined, messages: [], fields: [] };
|
|
2622
|
+
}
|
|
2623
|
+
exports.KernelLogEntry = {
|
|
2624
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
2625
|
+
if (message.level !== 0) {
|
|
2626
|
+
writer.uint32(8).int32(message.level);
|
|
2627
|
+
}
|
|
2628
|
+
if (message.seqnum !== 0) {
|
|
2629
|
+
writer.uint32(16).uint32(message.seqnum);
|
|
2630
|
+
}
|
|
2631
|
+
if (message.timestamp !== undefined) {
|
|
2632
|
+
timestamp_1.Timestamp.encode(toTimestamp(message.timestamp), writer.uint32(26).fork()).join();
|
|
2633
|
+
}
|
|
2634
|
+
for (const v of message.messages) {
|
|
2635
|
+
writer.uint32(34).string(v);
|
|
2636
|
+
}
|
|
2637
|
+
for (const v of message.fields) {
|
|
2638
|
+
exports.KernelLogEntry_KeyValuePair.encode(v, writer.uint32(42).fork()).join();
|
|
2639
|
+
}
|
|
2640
|
+
return writer;
|
|
2641
|
+
},
|
|
2642
|
+
decode(input, length) {
|
|
2643
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
2644
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
2645
|
+
const message = createBaseKernelLogEntry();
|
|
2646
|
+
while (reader.pos < end) {
|
|
2647
|
+
const tag = reader.uint32();
|
|
2648
|
+
switch (tag >>> 3) {
|
|
2649
|
+
case 1: {
|
|
2650
|
+
if (tag !== 8) {
|
|
2651
|
+
break;
|
|
2652
|
+
}
|
|
2653
|
+
message.level = reader.int32();
|
|
2654
|
+
continue;
|
|
2655
|
+
}
|
|
2656
|
+
case 2: {
|
|
2657
|
+
if (tag !== 16) {
|
|
2658
|
+
break;
|
|
2659
|
+
}
|
|
2660
|
+
message.seqnum = reader.uint32();
|
|
2661
|
+
continue;
|
|
2662
|
+
}
|
|
2663
|
+
case 3: {
|
|
2664
|
+
if (tag !== 26) {
|
|
2665
|
+
break;
|
|
2666
|
+
}
|
|
2667
|
+
message.timestamp = fromTimestamp(timestamp_1.Timestamp.decode(reader, reader.uint32()));
|
|
2668
|
+
continue;
|
|
2669
|
+
}
|
|
2670
|
+
case 4: {
|
|
2671
|
+
if (tag !== 34) {
|
|
2672
|
+
break;
|
|
2673
|
+
}
|
|
2674
|
+
message.messages.push(reader.string());
|
|
2675
|
+
continue;
|
|
2676
|
+
}
|
|
2677
|
+
case 5: {
|
|
2678
|
+
if (tag !== 42) {
|
|
2679
|
+
break;
|
|
2680
|
+
}
|
|
2681
|
+
message.fields.push(exports.KernelLogEntry_KeyValuePair.decode(reader, reader.uint32()));
|
|
2682
|
+
continue;
|
|
2683
|
+
}
|
|
2684
|
+
}
|
|
2685
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
2686
|
+
break;
|
|
2687
|
+
}
|
|
2688
|
+
reader.skip(tag & 7);
|
|
2689
|
+
}
|
|
2690
|
+
return message;
|
|
2691
|
+
},
|
|
2692
|
+
fromJSON(object) {
|
|
2693
|
+
return {
|
|
2694
|
+
level: isSet(object.level) ? kernelLogEntry_KernelLogLevelFromJSON(object.level) : 0,
|
|
2695
|
+
seqnum: isSet(object.seqnum) ? gt.Number(object.seqnum) : 0,
|
|
2696
|
+
timestamp: isSet(object.timestamp) ? fromJsonTimestamp(object.timestamp) : undefined,
|
|
2697
|
+
messages: gt.Array.isArray(object?.messages) ? object.messages.map((e) => gt.String(e)) : [],
|
|
2698
|
+
fields: gt.Array.isArray(object?.fields)
|
|
2699
|
+
? object.fields.map((e) => exports.KernelLogEntry_KeyValuePair.fromJSON(e))
|
|
2700
|
+
: [],
|
|
2701
|
+
};
|
|
2702
|
+
},
|
|
2703
|
+
toJSON(message) {
|
|
2704
|
+
const obj = {};
|
|
2705
|
+
if (message.level !== 0) {
|
|
2706
|
+
obj.level = kernelLogEntry_KernelLogLevelToJSON(message.level);
|
|
2707
|
+
}
|
|
2708
|
+
if (message.seqnum !== 0) {
|
|
2709
|
+
obj.seqnum = Math.round(message.seqnum);
|
|
2710
|
+
}
|
|
2711
|
+
if (message.timestamp !== undefined) {
|
|
2712
|
+
obj.timestamp = message.timestamp.toISOString();
|
|
2713
|
+
}
|
|
2714
|
+
if (message.messages?.length) {
|
|
2715
|
+
obj.messages = message.messages;
|
|
2716
|
+
}
|
|
2717
|
+
if (message.fields?.length) {
|
|
2718
|
+
obj.fields = message.fields.map((e) => exports.KernelLogEntry_KeyValuePair.toJSON(e));
|
|
2719
|
+
}
|
|
2720
|
+
return obj;
|
|
2721
|
+
},
|
|
2722
|
+
create(base) {
|
|
2723
|
+
return exports.KernelLogEntry.fromPartial(base ?? {});
|
|
2724
|
+
},
|
|
2725
|
+
fromPartial(object) {
|
|
2726
|
+
const message = createBaseKernelLogEntry();
|
|
2727
|
+
message.level = object.level ?? 0;
|
|
2728
|
+
message.seqnum = object.seqnum ?? 0;
|
|
2729
|
+
message.timestamp = object.timestamp ?? undefined;
|
|
2730
|
+
message.messages = object.messages?.map((e) => e) || [];
|
|
2731
|
+
message.fields = object.fields?.map((e) => exports.KernelLogEntry_KeyValuePair.fromPartial(e)) || [];
|
|
2732
|
+
return message;
|
|
2733
|
+
},
|
|
2734
|
+
};
|
|
2735
|
+
function createBaseKernelLogEntry_KeyValuePair() {
|
|
2736
|
+
return { key: "", value: "" };
|
|
2737
|
+
}
|
|
2738
|
+
exports.KernelLogEntry_KeyValuePair = {
|
|
2739
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
2740
|
+
if (message.key !== "") {
|
|
2741
|
+
writer.uint32(10).string(message.key);
|
|
2742
|
+
}
|
|
2743
|
+
if (message.value !== "") {
|
|
2744
|
+
writer.uint32(18).string(message.value);
|
|
2745
|
+
}
|
|
2746
|
+
return writer;
|
|
2747
|
+
},
|
|
2748
|
+
decode(input, length) {
|
|
2749
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
2750
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
2751
|
+
const message = createBaseKernelLogEntry_KeyValuePair();
|
|
2752
|
+
while (reader.pos < end) {
|
|
2753
|
+
const tag = reader.uint32();
|
|
2754
|
+
switch (tag >>> 3) {
|
|
2755
|
+
case 1: {
|
|
2756
|
+
if (tag !== 10) {
|
|
2757
|
+
break;
|
|
2758
|
+
}
|
|
2759
|
+
message.key = reader.string();
|
|
2760
|
+
continue;
|
|
2761
|
+
}
|
|
2762
|
+
case 2: {
|
|
2763
|
+
if (tag !== 18) {
|
|
2764
|
+
break;
|
|
2765
|
+
}
|
|
2766
|
+
message.value = reader.string();
|
|
2767
|
+
continue;
|
|
2768
|
+
}
|
|
2769
|
+
}
|
|
2770
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
2771
|
+
break;
|
|
2772
|
+
}
|
|
2773
|
+
reader.skip(tag & 7);
|
|
2774
|
+
}
|
|
2775
|
+
return message;
|
|
2776
|
+
},
|
|
2777
|
+
fromJSON(object) {
|
|
2778
|
+
return {
|
|
2779
|
+
key: isSet(object.key) ? gt.String(object.key) : "",
|
|
2780
|
+
value: isSet(object.value) ? gt.String(object.value) : "",
|
|
2781
|
+
};
|
|
2782
|
+
},
|
|
2783
|
+
toJSON(message) {
|
|
2784
|
+
const obj = {};
|
|
2785
|
+
if (message.key !== "") {
|
|
2786
|
+
obj.key = message.key;
|
|
2787
|
+
}
|
|
2788
|
+
if (message.value !== "") {
|
|
2789
|
+
obj.value = message.value;
|
|
2790
|
+
}
|
|
2791
|
+
return obj;
|
|
2792
|
+
},
|
|
2793
|
+
create(base) {
|
|
2794
|
+
return exports.KernelLogEntry_KeyValuePair.fromPartial(base ?? {});
|
|
2795
|
+
},
|
|
2796
|
+
fromPartial(object) {
|
|
2797
|
+
const message = createBaseKernelLogEntry_KeyValuePair();
|
|
2798
|
+
message.key = object.key ?? "";
|
|
2799
|
+
message.value = object.value ?? "";
|
|
2800
|
+
return message;
|
|
2801
|
+
},
|
|
2802
|
+
};
|
|
2474
2803
|
function createBaseMotionInput() {
|
|
2475
2804
|
return { surge: 0, sway: 0, heave: 0, roll: 0, pitch: 0, yaw: 0, slow: 0, boost: 0 };
|
|
2476
2805
|
}
|
|
@@ -3752,6 +4081,9 @@ function createBaseRecordState() {
|
|
|
3752
4081
|
multibeamIsRecording: false,
|
|
3753
4082
|
multibeamSeconds: 0,
|
|
3754
4083
|
multibeamFps: 0,
|
|
4084
|
+
mainStorageLocation: 0,
|
|
4085
|
+
guestportStorageLocation: 0,
|
|
4086
|
+
multibeamStorageLocation: 0,
|
|
3755
4087
|
};
|
|
3756
4088
|
}
|
|
3757
4089
|
exports.RecordState = {
|
|
@@ -3783,6 +4115,15 @@ exports.RecordState = {
|
|
|
3783
4115
|
if (message.multibeamFps !== 0) {
|
|
3784
4116
|
writer.uint32(77).float(message.multibeamFps);
|
|
3785
4117
|
}
|
|
4118
|
+
if (message.mainStorageLocation !== 0) {
|
|
4119
|
+
writer.uint32(80).int32(message.mainStorageLocation);
|
|
4120
|
+
}
|
|
4121
|
+
if (message.guestportStorageLocation !== 0) {
|
|
4122
|
+
writer.uint32(88).int32(message.guestportStorageLocation);
|
|
4123
|
+
}
|
|
4124
|
+
if (message.multibeamStorageLocation !== 0) {
|
|
4125
|
+
writer.uint32(96).int32(message.multibeamStorageLocation);
|
|
4126
|
+
}
|
|
3786
4127
|
return writer;
|
|
3787
4128
|
},
|
|
3788
4129
|
decode(input, length) {
|
|
@@ -3855,6 +4196,27 @@ exports.RecordState = {
|
|
|
3855
4196
|
message.multibeamFps = reader.float();
|
|
3856
4197
|
continue;
|
|
3857
4198
|
}
|
|
4199
|
+
case 10: {
|
|
4200
|
+
if (tag !== 80) {
|
|
4201
|
+
break;
|
|
4202
|
+
}
|
|
4203
|
+
message.mainStorageLocation = reader.int32();
|
|
4204
|
+
continue;
|
|
4205
|
+
}
|
|
4206
|
+
case 11: {
|
|
4207
|
+
if (tag !== 88) {
|
|
4208
|
+
break;
|
|
4209
|
+
}
|
|
4210
|
+
message.guestportStorageLocation = reader.int32();
|
|
4211
|
+
continue;
|
|
4212
|
+
}
|
|
4213
|
+
case 12: {
|
|
4214
|
+
if (tag !== 96) {
|
|
4215
|
+
break;
|
|
4216
|
+
}
|
|
4217
|
+
message.multibeamStorageLocation = reader.int32();
|
|
4218
|
+
continue;
|
|
4219
|
+
}
|
|
3858
4220
|
}
|
|
3859
4221
|
if ((tag & 7) === 4 || tag === 0) {
|
|
3860
4222
|
break;
|
|
@@ -3874,6 +4236,13 @@ exports.RecordState = {
|
|
|
3874
4236
|
multibeamIsRecording: isSet(object.multibeamIsRecording) ? gt.Boolean(object.multibeamIsRecording) : false,
|
|
3875
4237
|
multibeamSeconds: isSet(object.multibeamSeconds) ? gt.Number(object.multibeamSeconds) : 0,
|
|
3876
4238
|
multibeamFps: isSet(object.multibeamFps) ? gt.Number(object.multibeamFps) : 0,
|
|
4239
|
+
mainStorageLocation: isSet(object.mainStorageLocation) ? storageLocationFromJSON(object.mainStorageLocation) : 0,
|
|
4240
|
+
guestportStorageLocation: isSet(object.guestportStorageLocation)
|
|
4241
|
+
? storageLocationFromJSON(object.guestportStorageLocation)
|
|
4242
|
+
: 0,
|
|
4243
|
+
multibeamStorageLocation: isSet(object.multibeamStorageLocation)
|
|
4244
|
+
? storageLocationFromJSON(object.multibeamStorageLocation)
|
|
4245
|
+
: 0,
|
|
3877
4246
|
};
|
|
3878
4247
|
},
|
|
3879
4248
|
toJSON(message) {
|
|
@@ -3905,6 +4274,15 @@ exports.RecordState = {
|
|
|
3905
4274
|
if (message.multibeamFps !== 0) {
|
|
3906
4275
|
obj.multibeamFps = message.multibeamFps;
|
|
3907
4276
|
}
|
|
4277
|
+
if (message.mainStorageLocation !== 0) {
|
|
4278
|
+
obj.mainStorageLocation = storageLocationToJSON(message.mainStorageLocation);
|
|
4279
|
+
}
|
|
4280
|
+
if (message.guestportStorageLocation !== 0) {
|
|
4281
|
+
obj.guestportStorageLocation = storageLocationToJSON(message.guestportStorageLocation);
|
|
4282
|
+
}
|
|
4283
|
+
if (message.multibeamStorageLocation !== 0) {
|
|
4284
|
+
obj.multibeamStorageLocation = storageLocationToJSON(message.multibeamStorageLocation);
|
|
4285
|
+
}
|
|
3908
4286
|
return obj;
|
|
3909
4287
|
},
|
|
3910
4288
|
create(base) {
|
|
@@ -3921,6 +4299,9 @@ exports.RecordState = {
|
|
|
3921
4299
|
message.multibeamIsRecording = object.multibeamIsRecording ?? false;
|
|
3922
4300
|
message.multibeamSeconds = object.multibeamSeconds ?? 0;
|
|
3923
4301
|
message.multibeamFps = object.multibeamFps ?? 0;
|
|
4302
|
+
message.mainStorageLocation = object.mainStorageLocation ?? 0;
|
|
4303
|
+
message.guestportStorageLocation = object.guestportStorageLocation ?? 0;
|
|
4304
|
+
message.multibeamStorageLocation = object.multibeamStorageLocation ?? 0;
|
|
3924
4305
|
return message;
|
|
3925
4306
|
},
|
|
3926
4307
|
};
|
|
@@ -7828,7 +8209,7 @@ exports.StorageSpace = {
|
|
|
7828
8209
|
},
|
|
7829
8210
|
};
|
|
7830
8211
|
function createBaseStoragePartition() {
|
|
7831
|
-
return { storageSpace: undefined, fileSystemType: "", devicePath: "", mountPath: "" };
|
|
8212
|
+
return { storageSpace: undefined, fileSystemType: "", devicePath: "", mountPath: "", label: "" };
|
|
7832
8213
|
}
|
|
7833
8214
|
exports.StoragePartition = {
|
|
7834
8215
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
@@ -7844,6 +8225,9 @@ exports.StoragePartition = {
|
|
|
7844
8225
|
if (message.mountPath !== "") {
|
|
7845
8226
|
writer.uint32(34).string(message.mountPath);
|
|
7846
8227
|
}
|
|
8228
|
+
if (message.label !== "") {
|
|
8229
|
+
writer.uint32(42).string(message.label);
|
|
8230
|
+
}
|
|
7847
8231
|
return writer;
|
|
7848
8232
|
},
|
|
7849
8233
|
decode(input, length) {
|
|
@@ -7881,6 +8265,13 @@ exports.StoragePartition = {
|
|
|
7881
8265
|
message.mountPath = reader.string();
|
|
7882
8266
|
continue;
|
|
7883
8267
|
}
|
|
8268
|
+
case 5: {
|
|
8269
|
+
if (tag !== 42) {
|
|
8270
|
+
break;
|
|
8271
|
+
}
|
|
8272
|
+
message.label = reader.string();
|
|
8273
|
+
continue;
|
|
8274
|
+
}
|
|
7884
8275
|
}
|
|
7885
8276
|
if ((tag & 7) === 4 || tag === 0) {
|
|
7886
8277
|
break;
|
|
@@ -7895,6 +8286,7 @@ exports.StoragePartition = {
|
|
|
7895
8286
|
fileSystemType: isSet(object.fileSystemType) ? gt.String(object.fileSystemType) : "",
|
|
7896
8287
|
devicePath: isSet(object.devicePath) ? gt.String(object.devicePath) : "",
|
|
7897
8288
|
mountPath: isSet(object.mountPath) ? gt.String(object.mountPath) : "",
|
|
8289
|
+
label: isSet(object.label) ? gt.String(object.label) : "",
|
|
7898
8290
|
};
|
|
7899
8291
|
},
|
|
7900
8292
|
toJSON(message) {
|
|
@@ -7911,6 +8303,9 @@ exports.StoragePartition = {
|
|
|
7911
8303
|
if (message.mountPath !== "") {
|
|
7912
8304
|
obj.mountPath = message.mountPath;
|
|
7913
8305
|
}
|
|
8306
|
+
if (message.label !== "") {
|
|
8307
|
+
obj.label = message.label;
|
|
8308
|
+
}
|
|
7914
8309
|
return obj;
|
|
7915
8310
|
},
|
|
7916
8311
|
create(base) {
|
|
@@ -7924,6 +8319,7 @@ exports.StoragePartition = {
|
|
|
7924
8319
|
message.fileSystemType = object.fileSystemType ?? "";
|
|
7925
8320
|
message.devicePath = object.devicePath ?? "";
|
|
7926
8321
|
message.mountPath = object.mountPath ?? "";
|
|
8322
|
+
message.label = object.label ?? "";
|
|
7927
8323
|
return message;
|
|
7928
8324
|
},
|
|
7929
8325
|
};
|
|
@@ -9628,13 +10024,15 @@ function createBaseCameraParameters() {
|
|
|
9628
10024
|
sharpness: 0,
|
|
9629
10025
|
backlightCompensation: 0,
|
|
9630
10026
|
denoise: 0,
|
|
10027
|
+
ehdrEnabled: false,
|
|
10028
|
+
ehdrExposureMinNumber: 0,
|
|
10029
|
+
ehdrExposureMaxNumber: 0,
|
|
9631
10030
|
resolution: 0,
|
|
9632
10031
|
streamResolution: 0,
|
|
9633
10032
|
recordingResolution: 0,
|
|
9634
10033
|
streamingProtocol: 0,
|
|
9635
10034
|
framerate: 0,
|
|
9636
10035
|
camera: 0,
|
|
9637
|
-
fixedFramerate: false,
|
|
9638
10036
|
};
|
|
9639
10037
|
}
|
|
9640
10038
|
exports.CameraParameters = {
|
|
@@ -9678,6 +10076,15 @@ exports.CameraParameters = {
|
|
|
9678
10076
|
if (message.denoise !== 0) {
|
|
9679
10077
|
writer.uint32(144).int32(message.denoise);
|
|
9680
10078
|
}
|
|
10079
|
+
if (message.ehdrEnabled !== false) {
|
|
10080
|
+
writer.uint32(168).bool(message.ehdrEnabled);
|
|
10081
|
+
}
|
|
10082
|
+
if (message.ehdrExposureMinNumber !== 0) {
|
|
10083
|
+
writer.uint32(176).int32(message.ehdrExposureMinNumber);
|
|
10084
|
+
}
|
|
10085
|
+
if (message.ehdrExposureMaxNumber !== 0) {
|
|
10086
|
+
writer.uint32(184).int32(message.ehdrExposureMaxNumber);
|
|
10087
|
+
}
|
|
9681
10088
|
if (message.resolution !== 0) {
|
|
9682
10089
|
writer.uint32(48).int32(message.resolution);
|
|
9683
10090
|
}
|
|
@@ -9696,9 +10103,6 @@ exports.CameraParameters = {
|
|
|
9696
10103
|
if (message.camera !== 0) {
|
|
9697
10104
|
writer.uint32(64).int32(message.camera);
|
|
9698
10105
|
}
|
|
9699
|
-
if (message.fixedFramerate !== false) {
|
|
9700
|
-
writer.uint32(152).bool(message.fixedFramerate);
|
|
9701
|
-
}
|
|
9702
10106
|
return writer;
|
|
9703
10107
|
},
|
|
9704
10108
|
decode(input, length) {
|
|
@@ -9799,6 +10203,27 @@ exports.CameraParameters = {
|
|
|
9799
10203
|
message.denoise = reader.int32();
|
|
9800
10204
|
continue;
|
|
9801
10205
|
}
|
|
10206
|
+
case 21: {
|
|
10207
|
+
if (tag !== 168) {
|
|
10208
|
+
break;
|
|
10209
|
+
}
|
|
10210
|
+
message.ehdrEnabled = reader.bool();
|
|
10211
|
+
continue;
|
|
10212
|
+
}
|
|
10213
|
+
case 22: {
|
|
10214
|
+
if (tag !== 176) {
|
|
10215
|
+
break;
|
|
10216
|
+
}
|
|
10217
|
+
message.ehdrExposureMinNumber = reader.int32();
|
|
10218
|
+
continue;
|
|
10219
|
+
}
|
|
10220
|
+
case 23: {
|
|
10221
|
+
if (tag !== 184) {
|
|
10222
|
+
break;
|
|
10223
|
+
}
|
|
10224
|
+
message.ehdrExposureMaxNumber = reader.int32();
|
|
10225
|
+
continue;
|
|
10226
|
+
}
|
|
9802
10227
|
case 6: {
|
|
9803
10228
|
if (tag !== 48) {
|
|
9804
10229
|
break;
|
|
@@ -9841,13 +10266,6 @@ exports.CameraParameters = {
|
|
|
9841
10266
|
message.camera = reader.int32();
|
|
9842
10267
|
continue;
|
|
9843
10268
|
}
|
|
9844
|
-
case 19: {
|
|
9845
|
-
if (tag !== 152) {
|
|
9846
|
-
break;
|
|
9847
|
-
}
|
|
9848
|
-
message.fixedFramerate = reader.bool();
|
|
9849
|
-
continue;
|
|
9850
|
-
}
|
|
9851
10269
|
}
|
|
9852
10270
|
if ((tag & 7) === 4 || tag === 0) {
|
|
9853
10271
|
break;
|
|
@@ -9871,13 +10289,15 @@ exports.CameraParameters = {
|
|
|
9871
10289
|
sharpness: isSet(object.sharpness) ? gt.Number(object.sharpness) : 0,
|
|
9872
10290
|
backlightCompensation: isSet(object.backlightCompensation) ? gt.Number(object.backlightCompensation) : 0,
|
|
9873
10291
|
denoise: isSet(object.denoise) ? gt.Number(object.denoise) : 0,
|
|
10292
|
+
ehdrEnabled: isSet(object.ehdrEnabled) ? gt.Boolean(object.ehdrEnabled) : false,
|
|
10293
|
+
ehdrExposureMinNumber: isSet(object.ehdrExposureMinNumber) ? gt.Number(object.ehdrExposureMinNumber) : 0,
|
|
10294
|
+
ehdrExposureMaxNumber: isSet(object.ehdrExposureMaxNumber) ? gt.Number(object.ehdrExposureMaxNumber) : 0,
|
|
9874
10295
|
resolution: isSet(object.resolution) ? resolutionFromJSON(object.resolution) : 0,
|
|
9875
10296
|
streamResolution: isSet(object.streamResolution) ? resolutionFromJSON(object.streamResolution) : 0,
|
|
9876
10297
|
recordingResolution: isSet(object.recordingResolution) ? resolutionFromJSON(object.recordingResolution) : 0,
|
|
9877
10298
|
streamingProtocol: isSet(object.streamingProtocol) ? streamingProtocolFromJSON(object.streamingProtocol) : 0,
|
|
9878
10299
|
framerate: isSet(object.framerate) ? framerateFromJSON(object.framerate) : 0,
|
|
9879
10300
|
camera: isSet(object.camera) ? cameraFromJSON(object.camera) : 0,
|
|
9880
|
-
fixedFramerate: isSet(object.fixedFramerate) ? gt.Boolean(object.fixedFramerate) : false,
|
|
9881
10301
|
};
|
|
9882
10302
|
},
|
|
9883
10303
|
toJSON(message) {
|
|
@@ -9921,6 +10341,15 @@ exports.CameraParameters = {
|
|
|
9921
10341
|
if (message.denoise !== 0) {
|
|
9922
10342
|
obj.denoise = Math.round(message.denoise);
|
|
9923
10343
|
}
|
|
10344
|
+
if (message.ehdrEnabled !== false) {
|
|
10345
|
+
obj.ehdrEnabled = message.ehdrEnabled;
|
|
10346
|
+
}
|
|
10347
|
+
if (message.ehdrExposureMinNumber !== 0) {
|
|
10348
|
+
obj.ehdrExposureMinNumber = Math.round(message.ehdrExposureMinNumber);
|
|
10349
|
+
}
|
|
10350
|
+
if (message.ehdrExposureMaxNumber !== 0) {
|
|
10351
|
+
obj.ehdrExposureMaxNumber = Math.round(message.ehdrExposureMaxNumber);
|
|
10352
|
+
}
|
|
9924
10353
|
if (message.resolution !== 0) {
|
|
9925
10354
|
obj.resolution = resolutionToJSON(message.resolution);
|
|
9926
10355
|
}
|
|
@@ -9939,9 +10368,6 @@ exports.CameraParameters = {
|
|
|
9939
10368
|
if (message.camera !== 0) {
|
|
9940
10369
|
obj.camera = cameraToJSON(message.camera);
|
|
9941
10370
|
}
|
|
9942
|
-
if (message.fixedFramerate !== false) {
|
|
9943
|
-
obj.fixedFramerate = message.fixedFramerate;
|
|
9944
|
-
}
|
|
9945
10371
|
return obj;
|
|
9946
10372
|
},
|
|
9947
10373
|
create(base) {
|
|
@@ -9962,13 +10388,15 @@ exports.CameraParameters = {
|
|
|
9962
10388
|
message.sharpness = object.sharpness ?? 0;
|
|
9963
10389
|
message.backlightCompensation = object.backlightCompensation ?? 0;
|
|
9964
10390
|
message.denoise = object.denoise ?? 0;
|
|
10391
|
+
message.ehdrEnabled = object.ehdrEnabled ?? false;
|
|
10392
|
+
message.ehdrExposureMinNumber = object.ehdrExposureMinNumber ?? 0;
|
|
10393
|
+
message.ehdrExposureMaxNumber = object.ehdrExposureMaxNumber ?? 0;
|
|
9965
10394
|
message.resolution = object.resolution ?? 0;
|
|
9966
10395
|
message.streamResolution = object.streamResolution ?? 0;
|
|
9967
10396
|
message.recordingResolution = object.recordingResolution ?? 0;
|
|
9968
10397
|
message.streamingProtocol = object.streamingProtocol ?? 0;
|
|
9969
10398
|
message.framerate = object.framerate ?? 0;
|
|
9970
10399
|
message.camera = object.camera ?? 0;
|
|
9971
|
-
message.fixedFramerate = object.fixedFramerate ?? false;
|
|
9972
10400
|
return message;
|
|
9973
10401
|
},
|
|
9974
10402
|
};
|