@blueyerobotics/protocol-definitions 3.2.0-b41129de → 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/dist/message_formats.d.ts +6 -2
- package/dist/message_formats.js +44 -8
- package/package.json +1 -1
|
@@ -778,8 +778,12 @@ export interface RecordState {
|
|
|
778
778
|
multibeamSeconds: number;
|
|
779
779
|
/** Multibeam record fps. */
|
|
780
780
|
multibeamFps: number;
|
|
781
|
-
/** Storage location used for recording. */
|
|
782
|
-
|
|
781
|
+
/** Storage location used for main camera recording. */
|
|
782
|
+
mainStorageLocation: StorageLocation;
|
|
783
|
+
/** Storage location used for guestport camera recording. */
|
|
784
|
+
guestportStorageLocation: StorageLocation;
|
|
785
|
+
/** Storage location used for multibeam recording. */
|
|
786
|
+
multibeamStorageLocation: StorageLocation;
|
|
783
787
|
}
|
|
784
788
|
/** Time-lapse state published if time-lapse mission is running. */
|
|
785
789
|
export interface TimeLapseState {
|
package/dist/message_formats.js
CHANGED
|
@@ -4081,7 +4081,9 @@ function createBaseRecordState() {
|
|
|
4081
4081
|
multibeamIsRecording: false,
|
|
4082
4082
|
multibeamSeconds: 0,
|
|
4083
4083
|
multibeamFps: 0,
|
|
4084
|
-
|
|
4084
|
+
mainStorageLocation: 0,
|
|
4085
|
+
guestportStorageLocation: 0,
|
|
4086
|
+
multibeamStorageLocation: 0,
|
|
4085
4087
|
};
|
|
4086
4088
|
}
|
|
4087
4089
|
exports.RecordState = {
|
|
@@ -4113,8 +4115,14 @@ exports.RecordState = {
|
|
|
4113
4115
|
if (message.multibeamFps !== 0) {
|
|
4114
4116
|
writer.uint32(77).float(message.multibeamFps);
|
|
4115
4117
|
}
|
|
4116
|
-
if (message.
|
|
4117
|
-
writer.uint32(80).int32(message.
|
|
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);
|
|
4118
4126
|
}
|
|
4119
4127
|
return writer;
|
|
4120
4128
|
},
|
|
@@ -4192,7 +4200,21 @@ exports.RecordState = {
|
|
|
4192
4200
|
if (tag !== 80) {
|
|
4193
4201
|
break;
|
|
4194
4202
|
}
|
|
4195
|
-
message.
|
|
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();
|
|
4196
4218
|
continue;
|
|
4197
4219
|
}
|
|
4198
4220
|
}
|
|
@@ -4214,7 +4236,13 @@ exports.RecordState = {
|
|
|
4214
4236
|
multibeamIsRecording: isSet(object.multibeamIsRecording) ? gt.Boolean(object.multibeamIsRecording) : false,
|
|
4215
4237
|
multibeamSeconds: isSet(object.multibeamSeconds) ? gt.Number(object.multibeamSeconds) : 0,
|
|
4216
4238
|
multibeamFps: isSet(object.multibeamFps) ? gt.Number(object.multibeamFps) : 0,
|
|
4217
|
-
|
|
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,
|
|
4218
4246
|
};
|
|
4219
4247
|
},
|
|
4220
4248
|
toJSON(message) {
|
|
@@ -4246,8 +4274,14 @@ exports.RecordState = {
|
|
|
4246
4274
|
if (message.multibeamFps !== 0) {
|
|
4247
4275
|
obj.multibeamFps = message.multibeamFps;
|
|
4248
4276
|
}
|
|
4249
|
-
if (message.
|
|
4250
|
-
obj.
|
|
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);
|
|
4251
4285
|
}
|
|
4252
4286
|
return obj;
|
|
4253
4287
|
},
|
|
@@ -4265,7 +4299,9 @@ exports.RecordState = {
|
|
|
4265
4299
|
message.multibeamIsRecording = object.multibeamIsRecording ?? false;
|
|
4266
4300
|
message.multibeamSeconds = object.multibeamSeconds ?? 0;
|
|
4267
4301
|
message.multibeamFps = object.multibeamFps ?? 0;
|
|
4268
|
-
message.
|
|
4302
|
+
message.mainStorageLocation = object.mainStorageLocation ?? 0;
|
|
4303
|
+
message.guestportStorageLocation = object.guestportStorageLocation ?? 0;
|
|
4304
|
+
message.multibeamStorageLocation = object.multibeamStorageLocation ?? 0;
|
|
4269
4305
|
return message;
|
|
4270
4306
|
},
|
|
4271
4307
|
};
|