@blueyerobotics/protocol-definitions 3.2.0-9f6199cf → 3.2.0-bb5ffe79
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/dist/aquatroll.js +1 -1
- package/dist/control.d.ts +11 -0
- package/dist/control.js +39 -2
- package/dist/google/protobuf/any.js +1 -1
- package/dist/google/protobuf/duration.js +1 -1
- package/dist/google/protobuf/timestamp.js +1 -1
- package/dist/index.blueye.js +1 -1
- package/dist/index.blueye.protocol.js +1 -1
- package/dist/index.google.js +1 -1
- package/dist/index.google.protobuf.js +1 -1
- package/dist/index.js +1 -1
- package/dist/message_formats.d.ts +139 -11
- package/dist/message_formats.js +821 -16
- package/dist/mission_planning.js +1 -1
- package/dist/req_rep.js +1 -1
- package/dist/telemetry.d.ts +18 -2
- package/dist/telemetry.js +151 -5
- package/package.json +1 -1
package/dist/aquatroll.js
CHANGED
package/dist/control.d.ts
CHANGED
|
@@ -205,6 +205,16 @@ export interface StartDiveCtrl {
|
|
|
205
205
|
*/
|
|
206
206
|
export interface EndDiveCtrl {
|
|
207
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* Message sent when the user wants to format a connected removable storage device.
|
|
210
|
+
*
|
|
211
|
+
* The app will receive a RemovableStorageTel message with information about the newly formatted drive.
|
|
212
|
+
*
|
|
213
|
+
* Warning: The drone will delete any partitions and format the drive with a single exFat partition.
|
|
214
|
+
* Any data on the drive will be lost.
|
|
215
|
+
*/
|
|
216
|
+
export interface FormatRemovableStorageDeviceCtrl {
|
|
217
|
+
}
|
|
208
218
|
export declare const MotionInputCtrl: MessageFns<MotionInputCtrl>;
|
|
209
219
|
export declare const TiltVelocityCtrl: MessageFns<TiltVelocityCtrl>;
|
|
210
220
|
export declare const LightsCtrl: MessageFns<LightsCtrl>;
|
|
@@ -247,6 +257,7 @@ export declare const ActivateMultibeamCtrl: MessageFns<ActivateMultibeamCtrl>;
|
|
|
247
257
|
export declare const DeactivateMultibeamCtrl: MessageFns<DeactivateMultibeamCtrl>;
|
|
248
258
|
export declare const StartDiveCtrl: MessageFns<StartDiveCtrl>;
|
|
249
259
|
export declare const EndDiveCtrl: MessageFns<EndDiveCtrl>;
|
|
260
|
+
export declare const FormatRemovableStorageDeviceCtrl: MessageFns<FormatRemovableStorageDeviceCtrl>;
|
|
250
261
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
251
262
|
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
252
263
|
[K in keyof T]?: DeepPartial<T[K]>;
|
package/dist/control.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
// source: control.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.EndDiveCtrl = exports.StartDiveCtrl = exports.DeactivateMultibeamCtrl = exports.ActivateMultibeamCtrl = exports.SetMultibeamConfigCtrl = exports.SetAquaTrollConnectionStatusCtrl = exports.SetAquaTrollParameterUnitCtrl = exports.RestartGuestPortsCtrl = exports.ActivateGuestPortsCtrl = exports.DeactivateGuestPortsCtrl = exports.MultibeamServoCtrl = exports.GenericServoCtrl = exports.GripperCtrl = exports.SystemTimeCtrl = exports.PingerConfigurationCtrl = exports.WaterDensityCtrl = exports.TiltStabilizationCtrl = exports.CalibrateDvlGyroCtrl = exports.ResetOdometerCtrl = exports.ResetPositionCtrl = exports.ClearMissionCtrl = exports.PauseMissionCtrl = exports.RunMissionCtrl = exports.AutoPilotHeaveCtrl = exports.AutoPilotSurgeYawCtrl = exports.WeatherVaningCtrl = exports.StationKeepingCtrl = exports.AutoAltitudeCtrl = exports.AutoDepthCtrl = exports.AutoHeadingCtrl = exports.FinishCalibrationCtrl = exports.CancelCalibrationCtrl = exports.StartCalibrationCtrl = exports.TakePictureCtrl = exports.RecordCtrl = exports.WatchdogCtrl = exports.PilotGPSPositionCtrl = exports.LaserCtrl = exports.GuestportLightsCtrl = exports.LightsCtrl = exports.TiltVelocityCtrl = exports.MotionInputCtrl = void 0;
|
|
8
|
+
exports.FormatRemovableStorageDeviceCtrl = exports.EndDiveCtrl = exports.StartDiveCtrl = exports.DeactivateMultibeamCtrl = exports.ActivateMultibeamCtrl = exports.SetMultibeamConfigCtrl = exports.SetAquaTrollConnectionStatusCtrl = exports.SetAquaTrollParameterUnitCtrl = exports.RestartGuestPortsCtrl = exports.ActivateGuestPortsCtrl = exports.DeactivateGuestPortsCtrl = exports.MultibeamServoCtrl = exports.GenericServoCtrl = exports.GripperCtrl = exports.SystemTimeCtrl = exports.PingerConfigurationCtrl = exports.WaterDensityCtrl = exports.TiltStabilizationCtrl = exports.CalibrateDvlGyroCtrl = exports.ResetOdometerCtrl = exports.ResetPositionCtrl = exports.ClearMissionCtrl = exports.PauseMissionCtrl = exports.RunMissionCtrl = exports.AutoPilotHeaveCtrl = exports.AutoPilotSurgeYawCtrl = exports.WeatherVaningCtrl = exports.StationKeepingCtrl = exports.AutoAltitudeCtrl = exports.AutoDepthCtrl = exports.AutoHeadingCtrl = exports.FinishCalibrationCtrl = exports.CancelCalibrationCtrl = exports.StartCalibrationCtrl = exports.TakePictureCtrl = exports.RecordCtrl = exports.WatchdogCtrl = exports.PilotGPSPositionCtrl = exports.LaserCtrl = exports.GuestportLightsCtrl = exports.LightsCtrl = exports.TiltVelocityCtrl = exports.MotionInputCtrl = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const wire_1 = require("@bufbuild/protobuf/wire");
|
|
11
11
|
const aquatroll_1 = require("./aquatroll");
|
|
@@ -2041,6 +2041,43 @@ exports.EndDiveCtrl = {
|
|
|
2041
2041
|
return message;
|
|
2042
2042
|
},
|
|
2043
2043
|
};
|
|
2044
|
+
function createBaseFormatRemovableStorageDeviceCtrl() {
|
|
2045
|
+
return {};
|
|
2046
|
+
}
|
|
2047
|
+
exports.FormatRemovableStorageDeviceCtrl = {
|
|
2048
|
+
encode(_, writer = new wire_1.BinaryWriter()) {
|
|
2049
|
+
return writer;
|
|
2050
|
+
},
|
|
2051
|
+
decode(input, length) {
|
|
2052
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
2053
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
2054
|
+
const message = createBaseFormatRemovableStorageDeviceCtrl();
|
|
2055
|
+
while (reader.pos < end) {
|
|
2056
|
+
const tag = reader.uint32();
|
|
2057
|
+
switch (tag >>> 3) {
|
|
2058
|
+
}
|
|
2059
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
2060
|
+
break;
|
|
2061
|
+
}
|
|
2062
|
+
reader.skip(tag & 7);
|
|
2063
|
+
}
|
|
2064
|
+
return message;
|
|
2065
|
+
},
|
|
2066
|
+
fromJSON(_) {
|
|
2067
|
+
return {};
|
|
2068
|
+
},
|
|
2069
|
+
toJSON(_) {
|
|
2070
|
+
const obj = {};
|
|
2071
|
+
return obj;
|
|
2072
|
+
},
|
|
2073
|
+
create(base) {
|
|
2074
|
+
return exports.FormatRemovableStorageDeviceCtrl.fromPartial(base ?? {});
|
|
2075
|
+
},
|
|
2076
|
+
fromPartial(_) {
|
|
2077
|
+
const message = createBaseFormatRemovableStorageDeviceCtrl();
|
|
2078
|
+
return message;
|
|
2079
|
+
},
|
|
2080
|
+
};
|
|
2044
2081
|
const gt = (() => {
|
|
2045
2082
|
if (typeof globalThis !== "undefined") {
|
|
2046
2083
|
return globalThis;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
// source: google/protobuf/any.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
// source: google/protobuf/duration.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
// source: google/protobuf/timestamp.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/index.blueye.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
7
|
if (k2 === undefined) k2 = k;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
7
|
if (k2 === undefined) k2 = k;
|
package/dist/index.google.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
7
|
if (k2 === undefined) k2 = k;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
7
|
if (k2 === undefined) k2 = k;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.7
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
7
|
if (k2 === undefined) k2 = k;
|
|
@@ -194,11 +194,15 @@ export declare function pressureSensorTypeToJSON(object: PressureSensorType): st
|
|
|
194
194
|
export declare enum Resolution {
|
|
195
195
|
/** RESOLUTION_UNSPECIFIED - Resolution not specified. */
|
|
196
196
|
RESOLUTION_UNSPECIFIED = 0,
|
|
197
|
-
/**
|
|
198
|
-
|
|
199
|
-
/**
|
|
197
|
+
/** RESOLUTION_VGA - VGA (640x480). */
|
|
198
|
+
RESOLUTION_VGA = 4,
|
|
199
|
+
/** RESOLUTION_SVGA - SVGA (800x600). */
|
|
200
|
+
RESOLUTION_SVGA = 5,
|
|
201
|
+
/** RESOLUTION_HD_720P - 720p HD (1280x720). */
|
|
200
202
|
RESOLUTION_HD_720P = 2,
|
|
201
|
-
/**
|
|
203
|
+
/** RESOLUTION_FULLHD_1080P - 1080p Full HD (1920x1080). */
|
|
204
|
+
RESOLUTION_FULLHD_1080P = 1,
|
|
205
|
+
/** RESOLUTION_UHD_4K - 4K Ultra HD (3840x2160). */
|
|
202
206
|
RESOLUTION_UHD_4K = 3,
|
|
203
207
|
UNRECOGNIZED = -1
|
|
204
208
|
}
|
|
@@ -228,6 +232,17 @@ export declare enum Camera {
|
|
|
228
232
|
}
|
|
229
233
|
export declare function cameraFromJSON(object: any): Camera;
|
|
230
234
|
export declare function cameraToJSON(object: Camera): string;
|
|
235
|
+
export declare enum StreamingProtocol {
|
|
236
|
+
/** STREAMING_PROTOCOL_UNSPECIFIED - Streaming protocol not specified. */
|
|
237
|
+
STREAMING_PROTOCOL_UNSPECIFIED = 0,
|
|
238
|
+
/** STREAMING_PROTOCOL_RTSP_H264 - RTSP streaming protocol using H264 codec. */
|
|
239
|
+
STREAMING_PROTOCOL_RTSP_H264 = 1,
|
|
240
|
+
/** STREAMING_PROTOCOL_RTSP_MJPEG - RTSP streaming protocol using MJPEG codec. */
|
|
241
|
+
STREAMING_PROTOCOL_RTSP_MJPEG = 2,
|
|
242
|
+
UNRECOGNIZED = -1
|
|
243
|
+
}
|
|
244
|
+
export declare function streamingProtocolFromJSON(object: any): StreamingProtocol;
|
|
245
|
+
export declare function streamingProtocolToJSON(object: StreamingProtocol): string;
|
|
231
246
|
/** Available temperature units. */
|
|
232
247
|
export declare enum TemperatureUnit {
|
|
233
248
|
/** TEMPERATURE_UNIT_UNSPECIFIED - Temperature unit not specified. */
|
|
@@ -390,6 +405,8 @@ export declare enum GuestPortDeviceID {
|
|
|
390
405
|
GUEST_PORT_DEVICE_ID_WATERLINKED_SONAR_3D15 = 43,
|
|
391
406
|
/** GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650 - Cerulean Tracker 650. */
|
|
392
407
|
GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650 = 44,
|
|
408
|
+
/** GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE - Blueye External USB Storage */
|
|
409
|
+
GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE = 45,
|
|
393
410
|
UNRECOGNIZED = -1
|
|
394
411
|
}
|
|
395
412
|
export declare function guestPortDeviceIDFromJSON(object: any): GuestPortDeviceID;
|
|
@@ -505,9 +522,9 @@ export interface LogEntry {
|
|
|
505
522
|
processId: number;
|
|
506
523
|
/** Thread ID of the log entry. */
|
|
507
524
|
threadId: number;
|
|
508
|
-
/** Source of the log entry
|
|
525
|
+
/** Source of the log entry (specific class or named logger). */
|
|
509
526
|
source: string;
|
|
510
|
-
/** Log level, info, warning,
|
|
527
|
+
/** Log level, info, warning, error, etc. */
|
|
511
528
|
level: LogEntry_LogLevel;
|
|
512
529
|
/** Log message. */
|
|
513
530
|
message: string;
|
|
@@ -1183,6 +1200,61 @@ export interface StorageSpace {
|
|
|
1183
1200
|
/** Available bytes of storage space (B). */
|
|
1184
1201
|
freeSpace: number;
|
|
1185
1202
|
}
|
|
1203
|
+
/** Storage partition. */
|
|
1204
|
+
export interface StoragePartition {
|
|
1205
|
+
/** The amount of storage space on the device. */
|
|
1206
|
+
storageSpace: StorageSpace | undefined;
|
|
1207
|
+
/** File system type of the removable storage device. */
|
|
1208
|
+
fileSystemType: string;
|
|
1209
|
+
/** Partition device path */
|
|
1210
|
+
devicePath: string;
|
|
1211
|
+
/** Mount path of the partition. */
|
|
1212
|
+
mountPath: string;
|
|
1213
|
+
}
|
|
1214
|
+
/** Removable storage device. */
|
|
1215
|
+
export interface RemovableStorageDevice {
|
|
1216
|
+
/** USB vendor name. */
|
|
1217
|
+
vendorName: string;
|
|
1218
|
+
/** Model name of the USB storage device. */
|
|
1219
|
+
modelName: string;
|
|
1220
|
+
/** Mount path of the storage device. */
|
|
1221
|
+
devicePath: string;
|
|
1222
|
+
/** Status of the storage device. */
|
|
1223
|
+
status: RemovableStorageDevice_Status;
|
|
1224
|
+
/** Any active error flags for the storage device. */
|
|
1225
|
+
errorFlags: RemovableStorageErrorFlags | undefined;
|
|
1226
|
+
/** List of partitions on the storage device. */
|
|
1227
|
+
partitions: StoragePartition[];
|
|
1228
|
+
}
|
|
1229
|
+
/** Overall status of the storage device. */
|
|
1230
|
+
export declare enum RemovableStorageDevice_Status {
|
|
1231
|
+
/** STATUS_UNSPECIFIED - Unspecified. */
|
|
1232
|
+
STATUS_UNSPECIFIED = 0,
|
|
1233
|
+
/** STATUS_READY - The storage device is valid and ready for use. */
|
|
1234
|
+
STATUS_READY = 1,
|
|
1235
|
+
/** STATUS_FORMATTING - The storage device is being formatted */
|
|
1236
|
+
STATUS_FORMATTING = 2,
|
|
1237
|
+
/** STATUS_ERROR - The storage device is in an error state. */
|
|
1238
|
+
STATUS_ERROR = 3,
|
|
1239
|
+
UNRECOGNIZED = -1
|
|
1240
|
+
}
|
|
1241
|
+
export declare function removableStorageDevice_StatusFromJSON(object: any): RemovableStorageDevice_Status;
|
|
1242
|
+
export declare function removableStorageDevice_StatusToJSON(object: RemovableStorageDevice_Status): string;
|
|
1243
|
+
/** Error flags related to a removable storage device. */
|
|
1244
|
+
export interface RemovableStorageErrorFlags {
|
|
1245
|
+
/** Optional error message to give additional information from the drone to a client about active error flags. */
|
|
1246
|
+
errorMessage: string;
|
|
1247
|
+
/** Device is attached but no partitions are found. */
|
|
1248
|
+
noPartitionsFound: boolean;
|
|
1249
|
+
/** Multiple partitions are found. */
|
|
1250
|
+
multiplePartitionsFound: boolean;
|
|
1251
|
+
/** The wrong file system is found. */
|
|
1252
|
+
wrongFileSystemFound: boolean;
|
|
1253
|
+
/** The device is in read-only mode. */
|
|
1254
|
+
deviceIsReadOnly: boolean;
|
|
1255
|
+
/** Formatting of the device failed. */
|
|
1256
|
+
formattingFailed: boolean;
|
|
1257
|
+
}
|
|
1186
1258
|
/** Compass calibration state. */
|
|
1187
1259
|
export interface CalibrationState {
|
|
1188
1260
|
/** Current calibration status. */
|
|
@@ -1205,7 +1277,7 @@ export interface CalibrationState {
|
|
|
1205
1277
|
/**
|
|
1206
1278
|
* Status of the compass calibration procedure.
|
|
1207
1279
|
*
|
|
1208
|
-
* When calibration is started, the status will indicate the active (
|
|
1280
|
+
* When calibration is started, the status will indicate the active (up facing) axis.
|
|
1209
1281
|
*/
|
|
1210
1282
|
export declare enum CalibrationState_Status {
|
|
1211
1283
|
/** STATUS_UNSPECIFIED - Unspecified status. */
|
|
@@ -1226,7 +1298,7 @@ export declare enum CalibrationState_Status {
|
|
|
1226
1298
|
STATUS_CALIBRATING_Z_POSITIVE = 7,
|
|
1227
1299
|
/** STATUS_CALIBRATING_Z_NEGATIVE - Compass is calibrating and the negative Z axis is active. */
|
|
1228
1300
|
STATUS_CALIBRATING_Z_NEGATIVE = 8,
|
|
1229
|
-
/** STATUS_CALIBRATING_THRUSTER - Compass is calibrating for thruster
|
|
1301
|
+
/** STATUS_CALIBRATING_THRUSTER - Compass is calibrating for thruster interference. */
|
|
1230
1302
|
STATUS_CALIBRATING_THRUSTER = 9,
|
|
1231
1303
|
UNRECOGNIZED = -1
|
|
1232
1304
|
}
|
|
@@ -1392,22 +1464,40 @@ export interface CameraParameters {
|
|
|
1392
1464
|
mjpgBitrate: number;
|
|
1393
1465
|
/** Shutter speed (1/10000 * s), -1 for automatic exposure. */
|
|
1394
1466
|
exposure: number;
|
|
1395
|
-
/** White balance
|
|
1467
|
+
/** White balance temp (Pioneer/Pro/X1/X3: 2800..9300, Ultra: 2300..15000), -1 for auto. */
|
|
1396
1468
|
whiteBalance: number;
|
|
1397
|
-
/** Hue (-40..40), 0 as default. */
|
|
1469
|
+
/** Hue (-40..40), 0 as default. Only available on Pioneer/Pro/X1/X3. */
|
|
1398
1470
|
hue: number;
|
|
1399
|
-
/** Iso gain (0..1). */
|
|
1471
|
+
/** Iso gain (0..1). Only available on Pioneer/Pro/X1/X3. */
|
|
1400
1472
|
gain: number;
|
|
1473
|
+
/** Brightness (-10..10), 0 as default. Only available on Ultra */
|
|
1474
|
+
brightness: number;
|
|
1475
|
+
/** Contrast (-50..50), 0 as default. Only available on Ultra. */
|
|
1476
|
+
contrast: number;
|
|
1477
|
+
/** Saturation (0..50), 8 as default. Only available on Ultra. */
|
|
1478
|
+
saturation: number;
|
|
1479
|
+
/** Gamma (4..79), 22 as default. Only available on Ultra. */
|
|
1480
|
+
gamma: number;
|
|
1481
|
+
/** Sharpness (-20..20), -20 as default. Only available on Ultra. */
|
|
1482
|
+
sharpness: number;
|
|
1483
|
+
/** Backlight compensation (-150..150), 10 as default. Only available on Ultra. */
|
|
1484
|
+
backlightCompensation: number;
|
|
1485
|
+
/** Noise reduction (-20..20), -20 as default. Only available on Ultra. */
|
|
1486
|
+
denoise: number;
|
|
1401
1487
|
/** Stream, recording and image resolution (deprecated). */
|
|
1402
1488
|
resolution: Resolution;
|
|
1403
1489
|
/** Stream resolution. */
|
|
1404
1490
|
streamResolution: Resolution;
|
|
1405
1491
|
/** Recording and image resolution. */
|
|
1406
1492
|
recordingResolution: Resolution;
|
|
1493
|
+
/** Streaming protocol. */
|
|
1494
|
+
streamingProtocol: StreamingProtocol;
|
|
1407
1495
|
/** Stream and recording framerate. */
|
|
1408
1496
|
framerate: Framerate;
|
|
1409
1497
|
/** Which camera the parameters belong to. */
|
|
1410
1498
|
camera: Camera;
|
|
1499
|
+
/** Prioritize fixed frame rate over quality on Ultra. */
|
|
1500
|
+
fixedFramerate: boolean;
|
|
1411
1501
|
}
|
|
1412
1502
|
/**
|
|
1413
1503
|
* Overlay parameters.
|
|
@@ -1787,6 +1877,39 @@ export interface CPUInfo {
|
|
|
1787
1877
|
mainQueueLoad: number;
|
|
1788
1878
|
/** Guestport queue load (0..1). */
|
|
1789
1879
|
guestportQueueLoad: number;
|
|
1880
|
+
/** Communication queue load (0..1). */
|
|
1881
|
+
commQueueLoad: number;
|
|
1882
|
+
}
|
|
1883
|
+
/**
|
|
1884
|
+
* Surface Unit battery information.
|
|
1885
|
+
*
|
|
1886
|
+
* This message is published by the Surface Unit, and re-published by
|
|
1887
|
+
* the drone over the communication protocol.
|
|
1888
|
+
*/
|
|
1889
|
+
export interface SurfaceUnitBatteryInfo {
|
|
1890
|
+
/** Battery charge status. */
|
|
1891
|
+
status: SurfaceUnitBatteryInfo_ChargeStatus;
|
|
1892
|
+
/** Battery level (0..1). */
|
|
1893
|
+
level: number;
|
|
1894
|
+
}
|
|
1895
|
+
export declare enum SurfaceUnitBatteryInfo_ChargeStatus {
|
|
1896
|
+
CHARGE_STATUS_UNSPECIFIED = 0,
|
|
1897
|
+
CHARGE_STATUS_DISCHARGE = 1,
|
|
1898
|
+
CHARGE_STATUS_CHARGE = 2,
|
|
1899
|
+
CHARGE_STATUS_CHARGE_ERROR = 3,
|
|
1900
|
+
UNRECOGNIZED = -1
|
|
1901
|
+
}
|
|
1902
|
+
export declare function surfaceUnitBatteryInfo_ChargeStatusFromJSON(object: any): SurfaceUnitBatteryInfo_ChargeStatus;
|
|
1903
|
+
export declare function surfaceUnitBatteryInfo_ChargeStatusToJSON(object: SurfaceUnitBatteryInfo_ChargeStatus): string;
|
|
1904
|
+
/**
|
|
1905
|
+
* Surface Unit version information.
|
|
1906
|
+
*
|
|
1907
|
+
* This message is published by the Surface Unit, and re-published by
|
|
1908
|
+
* the drone over the communication protocol.
|
|
1909
|
+
*/
|
|
1910
|
+
export interface SurfaceUnitVersionInfo {
|
|
1911
|
+
/** Surface Unit firmware version (x.y.z). */
|
|
1912
|
+
version: string;
|
|
1790
1913
|
}
|
|
1791
1914
|
export declare const BinlogRecord: MessageFns<BinlogRecord>;
|
|
1792
1915
|
export declare const LogEntry: MessageFns<LogEntry>;
|
|
@@ -1841,6 +1964,9 @@ export declare const ControllerHealth: MessageFns<ControllerHealth>;
|
|
|
1841
1964
|
export declare const DiveTime: MessageFns<DiveTime>;
|
|
1842
1965
|
export declare const RecordOn: MessageFns<RecordOn>;
|
|
1843
1966
|
export declare const StorageSpace: MessageFns<StorageSpace>;
|
|
1967
|
+
export declare const StoragePartition: MessageFns<StoragePartition>;
|
|
1968
|
+
export declare const RemovableStorageDevice: MessageFns<RemovableStorageDevice>;
|
|
1969
|
+
export declare const RemovableStorageErrorFlags: MessageFns<RemovableStorageErrorFlags>;
|
|
1844
1970
|
export declare const CalibrationState: MessageFns<CalibrationState>;
|
|
1845
1971
|
export declare const IperfStatus: MessageFns<IperfStatus>;
|
|
1846
1972
|
export declare const NStreamers: MessageFns<NStreamers>;
|
|
@@ -1872,6 +1998,8 @@ export declare const MultibeamFrameOffset: MessageFns<MultibeamFrameOffset>;
|
|
|
1872
1998
|
export declare const MutltibeamRecordingIndex: MessageFns<MutltibeamRecordingIndex>;
|
|
1873
1999
|
export declare const PersistentStorageSettings: MessageFns<PersistentStorageSettings>;
|
|
1874
2000
|
export declare const CPUInfo: MessageFns<CPUInfo>;
|
|
2001
|
+
export declare const SurfaceUnitBatteryInfo: MessageFns<SurfaceUnitBatteryInfo>;
|
|
2002
|
+
export declare const SurfaceUnitVersionInfo: MessageFns<SurfaceUnitVersionInfo>;
|
|
1875
2003
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
1876
2004
|
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
1877
2005
|
[K in keyof T]?: DeepPartial<T[K]>;
|