@blueyerobotics/protocol-definitions 3.2.0-0a6e99a1
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.md +40 -0
- package/README.npm.md +40 -0
- package/dist/aquatroll.d.ts +435 -0
- package/dist/aquatroll.js +3160 -0
- package/dist/control.d.ts +277 -0
- package/dist/control.js +2129 -0
- package/dist/google/protobuf/any.d.ts +132 -0
- package/dist/google/protobuf/any.js +121 -0
- package/dist/google/protobuf/duration.d.ts +92 -0
- package/dist/google/protobuf/duration.js +106 -0
- package/dist/google/protobuf/timestamp.d.ts +121 -0
- package/dist/google/protobuf/timestamp.js +106 -0
- package/dist/index.blueye.d.ts +1 -0
- package/dist/index.blueye.js +42 -0
- package/dist/index.blueye.protocol.d.ts +6 -0
- package/dist/index.blueye.protocol.js +27 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.google.d.ts +1 -0
- package/dist/index.google.js +42 -0
- package/dist/index.google.protobuf.d.ts +3 -0
- package/dist/index.google.protobuf.js +24 -0
- package/dist/index.js +43 -0
- package/dist/message_formats.d.ts +2084 -0
- package/dist/message_formats.js +13397 -0
- package/dist/mission_planning.d.ts +346 -0
- package/dist/mission_planning.js +2317 -0
- package/dist/req_rep.d.ts +262 -0
- package/dist/req_rep.js +1919 -0
- package/dist/telemetry.d.ts +389 -0
- package/dist/telemetry.js +3260 -0
- package/package.json +25 -0
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
+
import { AquaTrollProbeMetadata, AquaTrollSensorMetadataArray, AquaTrollSensorParametersArray } from "./aquatroll";
|
|
3
|
+
import { Altitude, Attitude, Battery, BatteryBQ40Z50, CalibrationState, CanisterHumidity, CanisterTemperature, ConnectedClient, ControlForce, ControllerHealth, ControlMode, CpProbe, CPUInfo, CPUTemperature, Depth, DiveTime, DroneInfo, DvlVelocity, ErrorFlags, ForwardDistance, GenericServo, GuestPortCurrent, Imu, IperfStatus, KernelLogEntry, Laser, LatLongPosition, Lights, LogEntry, MagneticDeclination, MedusaSpectrometerData, MultibeamConfig, MultibeamDiscovery, MultibeamPing, MultibeamServo, Notification, NStreamers, PositionEstimate, RecordState, Reference, RemovableStorageDevice, StorageSpace, SurfaceUnitBatteryInfo, SurfaceUnitVersionInfo, SystemTime, ThicknessGauge, TiltAngle, TiltStabilizationState, TimeLapseState, WaterTemperature } from "./message_formats";
|
|
4
|
+
import { MissionStatus, ReferenceAutoPilot } from "./mission_planning";
|
|
5
|
+
/**
|
|
6
|
+
* Telemetry
|
|
7
|
+
*
|
|
8
|
+
* These messages define telemetry messages from the Blueye drone.
|
|
9
|
+
*/
|
|
10
|
+
/** Receive the current attitude of the drone. */
|
|
11
|
+
export interface AttitudeTel {
|
|
12
|
+
/** The attitude of the drone. */
|
|
13
|
+
attitude: Attitude | undefined;
|
|
14
|
+
}
|
|
15
|
+
/** Current Magnetic Declination status. Used to get true North compass readings based on location. */
|
|
16
|
+
export interface MagneticDeclinationTel {
|
|
17
|
+
/** The current magnetic declination status of the drone. */
|
|
18
|
+
magneticDeclination: MagneticDeclination | undefined;
|
|
19
|
+
}
|
|
20
|
+
/** Receive the current altitude of the drone. */
|
|
21
|
+
export interface AltitudeTel {
|
|
22
|
+
/** The altitude of the drone. */
|
|
23
|
+
altitude: Altitude | undefined;
|
|
24
|
+
}
|
|
25
|
+
/** Distance to an object in front of the drone when a 1D pinger is mounted forwards. */
|
|
26
|
+
export interface ForwardDistanceTel {
|
|
27
|
+
/** The distance to an object in front of the drone. */
|
|
28
|
+
forwardDistance: ForwardDistance | undefined;
|
|
29
|
+
}
|
|
30
|
+
/** Dvl raw sensor data. */
|
|
31
|
+
export interface DvlVelocityTel {
|
|
32
|
+
/** Dvl velocity data. */
|
|
33
|
+
dvlVelocity: DvlVelocity | undefined;
|
|
34
|
+
}
|
|
35
|
+
/** Position estimate of the drone if a DVL or a positioning system is available. */
|
|
36
|
+
export interface PositionEstimateTel {
|
|
37
|
+
/** Position estimate of the drone. */
|
|
38
|
+
positionEstimate: PositionEstimate | undefined;
|
|
39
|
+
}
|
|
40
|
+
/** Measurement of the drones position relative to the sea surface. */
|
|
41
|
+
export interface DepthTel {
|
|
42
|
+
/** The depth of the drone. */
|
|
43
|
+
depth: Depth | undefined;
|
|
44
|
+
}
|
|
45
|
+
/** Reference signals indicating desired states. */
|
|
46
|
+
export interface ReferenceTel {
|
|
47
|
+
/** Reference signals. */
|
|
48
|
+
reference: Reference | undefined;
|
|
49
|
+
}
|
|
50
|
+
/** Reference for the auto pilot when a mission is active. */
|
|
51
|
+
export interface ReferenceAutoPilotTel {
|
|
52
|
+
/** Reference for the auto pilot. */
|
|
53
|
+
referenceAutoPilot: ReferenceAutoPilot | undefined;
|
|
54
|
+
}
|
|
55
|
+
/** Mission status from the mission supervisor. */
|
|
56
|
+
export interface MissionStatusTel {
|
|
57
|
+
/** Mission status. */
|
|
58
|
+
missionStatus: MissionStatus | undefined;
|
|
59
|
+
}
|
|
60
|
+
/** Notification from the control system. */
|
|
61
|
+
export interface NotificationTel {
|
|
62
|
+
/** Notification from the control system. */
|
|
63
|
+
notification: Notification | undefined;
|
|
64
|
+
}
|
|
65
|
+
/** Control force in all directions. */
|
|
66
|
+
export interface ControlForceTel {
|
|
67
|
+
/** Control force in all directions. */
|
|
68
|
+
controlForce: ControlForce | undefined;
|
|
69
|
+
}
|
|
70
|
+
/** Controller health indicating the load of the controller, used to set a color in the heading and depth bar. */
|
|
71
|
+
export interface ControllerHealthTel {
|
|
72
|
+
/** Controller health. */
|
|
73
|
+
controllerHealth: ControllerHealth | undefined;
|
|
74
|
+
}
|
|
75
|
+
/** Receive the status of the main lights of the drone. */
|
|
76
|
+
export interface LightsTel {
|
|
77
|
+
/** Main light status. */
|
|
78
|
+
lights: Lights | undefined;
|
|
79
|
+
}
|
|
80
|
+
/** Receive the status of any guest port lights connected to the drone. */
|
|
81
|
+
export interface GuestPortLightsTel {
|
|
82
|
+
/** Guest port light status. */
|
|
83
|
+
lights: Lights | undefined;
|
|
84
|
+
}
|
|
85
|
+
/** Receive the status of any lasers connected to the drone. */
|
|
86
|
+
export interface LaserTel {
|
|
87
|
+
/** Laser status. */
|
|
88
|
+
laser: Laser | undefined;
|
|
89
|
+
}
|
|
90
|
+
/** Pilot position (originating from device GPS) for logging. */
|
|
91
|
+
export interface PilotGPSPositionTel {
|
|
92
|
+
/** The GPS position of the pilot. */
|
|
93
|
+
position: LatLongPosition | undefined;
|
|
94
|
+
}
|
|
95
|
+
/** Record state from the drone. */
|
|
96
|
+
export interface RecordStateTel {
|
|
97
|
+
/** Record state. */
|
|
98
|
+
recordState: RecordState | undefined;
|
|
99
|
+
}
|
|
100
|
+
/** Time-lapse state from the drone. */
|
|
101
|
+
export interface TimeLapseStateTel {
|
|
102
|
+
/** Time-lapse state. */
|
|
103
|
+
timeLapseState: TimeLapseState | undefined;
|
|
104
|
+
}
|
|
105
|
+
/** Receive essential information about the battery status. */
|
|
106
|
+
export interface BatteryTel {
|
|
107
|
+
/** Essential battery information. */
|
|
108
|
+
battery: Battery | undefined;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Receive detailed information about a battery using the
|
|
112
|
+
* BQ40Z50 battery management system.
|
|
113
|
+
*/
|
|
114
|
+
export interface BatteryBQ40Z50Tel {
|
|
115
|
+
/** Detailed battery information. */
|
|
116
|
+
battery: BatteryBQ40Z50 | undefined;
|
|
117
|
+
}
|
|
118
|
+
/** Receive the dive time of the drone. */
|
|
119
|
+
export interface DiveTimeTel {
|
|
120
|
+
/** The current dive time of the drone. */
|
|
121
|
+
diveTime: DiveTime | undefined;
|
|
122
|
+
}
|
|
123
|
+
/** Receive time information from the drone. */
|
|
124
|
+
export interface DroneTimeTel {
|
|
125
|
+
/** The real-time clock of the drone. */
|
|
126
|
+
realTimeClock: SystemTime | undefined;
|
|
127
|
+
/** The monotonic clock of the drone (time since power on). */
|
|
128
|
+
monotonicClock: SystemTime | undefined;
|
|
129
|
+
}
|
|
130
|
+
/** Water temperature from the depth sensor. */
|
|
131
|
+
export interface WaterTemperatureTel {
|
|
132
|
+
/** Water temperature. */
|
|
133
|
+
temperature: WaterTemperature | undefined;
|
|
134
|
+
}
|
|
135
|
+
/** Drone CPU temperature */
|
|
136
|
+
export interface CPUTemperatureTel {
|
|
137
|
+
/** CPU temperature. */
|
|
138
|
+
temperature: CPUTemperature | undefined;
|
|
139
|
+
}
|
|
140
|
+
/** Receive temperature information from the bottom canister. */
|
|
141
|
+
export interface CanisterBottomTemperatureTel {
|
|
142
|
+
/** Temperature information. */
|
|
143
|
+
temperature: CanisterTemperature | undefined;
|
|
144
|
+
}
|
|
145
|
+
/** Receive humidity information from the bottom canister. */
|
|
146
|
+
export interface CanisterBottomHumidityTel {
|
|
147
|
+
/** Humidity information. */
|
|
148
|
+
humidity: CanisterHumidity | undefined;
|
|
149
|
+
}
|
|
150
|
+
/** Video storage info. */
|
|
151
|
+
export interface VideoStorageSpaceTel {
|
|
152
|
+
/** Internal Video storage information. */
|
|
153
|
+
storageSpace: StorageSpace | undefined;
|
|
154
|
+
/** Removable Video storage information. Can be empty. */
|
|
155
|
+
removableSpace: StorageSpace | undefined;
|
|
156
|
+
}
|
|
157
|
+
/** Information about removable storage device. */
|
|
158
|
+
export interface RemovableStorageTel {
|
|
159
|
+
/** Information about the storage device (such as partitions) */
|
|
160
|
+
storageDevice: RemovableStorageDevice | undefined;
|
|
161
|
+
}
|
|
162
|
+
/** Data storage info. */
|
|
163
|
+
export interface DataStorageSpaceTel {
|
|
164
|
+
/** Data storage information. */
|
|
165
|
+
storageSpace: StorageSpace | undefined;
|
|
166
|
+
}
|
|
167
|
+
/** Calibration state used for calibration routine. */
|
|
168
|
+
export interface CalibrationStateTel {
|
|
169
|
+
/** Calibration state. */
|
|
170
|
+
calibrationState: CalibrationState | undefined;
|
|
171
|
+
}
|
|
172
|
+
/** Tilt stabilization state. */
|
|
173
|
+
export interface TiltStabilizationTel {
|
|
174
|
+
/** Tilt stabilization state. */
|
|
175
|
+
state: TiltStabilizationState | undefined;
|
|
176
|
+
}
|
|
177
|
+
/** Iperf indicates the available bandwidth on the tether from drone to surface unit. */
|
|
178
|
+
export interface IperfTel {
|
|
179
|
+
/** Information about the available bandwidth. */
|
|
180
|
+
status: IperfStatus | undefined;
|
|
181
|
+
}
|
|
182
|
+
/** Number of connected clients streaming video. */
|
|
183
|
+
export interface NStreamersTel {
|
|
184
|
+
/** Information about the number of connected clients. */
|
|
185
|
+
nStreamers: NStreamers | undefined;
|
|
186
|
+
}
|
|
187
|
+
/** Tilt angle state on main camera. */
|
|
188
|
+
export interface TiltAngleTel {
|
|
189
|
+
/** Main camera tilt angle. */
|
|
190
|
+
angle: TiltAngle | undefined;
|
|
191
|
+
}
|
|
192
|
+
/** Receive metadata and information about the connected drone. */
|
|
193
|
+
export interface DroneInfoTel {
|
|
194
|
+
/** Various metadata such as software versions and serial number. */
|
|
195
|
+
droneInfo: DroneInfo | undefined;
|
|
196
|
+
}
|
|
197
|
+
/** Receive currently set error flags. */
|
|
198
|
+
export interface ErrorFlagsTel {
|
|
199
|
+
/** Currently set error flags on the drone. */
|
|
200
|
+
errorFlags: ErrorFlags | undefined;
|
|
201
|
+
}
|
|
202
|
+
/** Receive the current state of the control system. */
|
|
203
|
+
export interface ControlModeTel {
|
|
204
|
+
/** State of the control system. */
|
|
205
|
+
state: ControlMode | undefined;
|
|
206
|
+
}
|
|
207
|
+
/** Thickness gauge measurement telemetry message. */
|
|
208
|
+
export interface ThicknessGaugeTel {
|
|
209
|
+
/** Thickness measurement with a cygnus gauge. */
|
|
210
|
+
thicknessGauge: ThicknessGauge | undefined;
|
|
211
|
+
}
|
|
212
|
+
/** Cathodic Protection Potential probe telemetry message */
|
|
213
|
+
export interface CpProbeTel {
|
|
214
|
+
/** Reading from cp probe. */
|
|
215
|
+
cpProbe: CpProbe | undefined;
|
|
216
|
+
}
|
|
217
|
+
/** Metadata from the In-Situ Aqua Troll probe's common registers */
|
|
218
|
+
export interface AquaTrollProbeMetadataTel {
|
|
219
|
+
/** AquaTroll message containing sensor array. */
|
|
220
|
+
probe: AquaTrollProbeMetadata | undefined;
|
|
221
|
+
}
|
|
222
|
+
/** Metadata from a single sensor from In-Situ Aqua Troll probe */
|
|
223
|
+
export interface AquaTrollSensorMetadataTel {
|
|
224
|
+
/** AquaTroll message containing sensor array. */
|
|
225
|
+
sensors: AquaTrollSensorMetadataArray | undefined;
|
|
226
|
+
}
|
|
227
|
+
/** Single sensor from In-Situ Aqua Troll probe */
|
|
228
|
+
export interface AquaTrollSensorParametersTel {
|
|
229
|
+
/** AquaTroll message containing parameter array. */
|
|
230
|
+
sensors: AquaTrollSensorParametersArray | undefined;
|
|
231
|
+
}
|
|
232
|
+
/** List of connected clients telemetry message. */
|
|
233
|
+
export interface ConnectedClientsTel {
|
|
234
|
+
/** The client id of the client in control. */
|
|
235
|
+
clientIdInControl: number;
|
|
236
|
+
/** List of connected clients. */
|
|
237
|
+
connectedClients: ConnectedClient[];
|
|
238
|
+
}
|
|
239
|
+
/** State of a generic servo. */
|
|
240
|
+
export interface GenericServoTel {
|
|
241
|
+
/** Servo state. */
|
|
242
|
+
servo: GenericServo | undefined;
|
|
243
|
+
}
|
|
244
|
+
/** State of the servo installed in the multibeam. */
|
|
245
|
+
export interface MultibeamServoTel {
|
|
246
|
+
/** Multibeam servo state. */
|
|
247
|
+
servo: MultibeamServo | undefined;
|
|
248
|
+
}
|
|
249
|
+
/** GuestPort current readings. */
|
|
250
|
+
export interface GuestPortCurrentTel {
|
|
251
|
+
/** Guest port current readings. */
|
|
252
|
+
current: GuestPortCurrent | undefined;
|
|
253
|
+
}
|
|
254
|
+
/** Calibrated IMU data. */
|
|
255
|
+
export interface CalibratedImuTel {
|
|
256
|
+
/** Calibrated IMU data. */
|
|
257
|
+
imu: Imu | undefined;
|
|
258
|
+
}
|
|
259
|
+
/** Raw IMU data from IMU 1 */
|
|
260
|
+
export interface Imu1Tel {
|
|
261
|
+
/** Raw IMU data. */
|
|
262
|
+
imu: Imu | undefined;
|
|
263
|
+
}
|
|
264
|
+
/** Raw IMU data from IMU 2 */
|
|
265
|
+
export interface Imu2Tel {
|
|
266
|
+
/** Raw IMU data. */
|
|
267
|
+
imu: Imu | undefined;
|
|
268
|
+
}
|
|
269
|
+
/** Raw IMU data from High Precision IMU */
|
|
270
|
+
export interface ImuHpTel {
|
|
271
|
+
/** Raw High Precision IMU data (no magnetometer) */
|
|
272
|
+
imu: Imu | undefined;
|
|
273
|
+
}
|
|
274
|
+
/** Calibrated High Precision IMU data */
|
|
275
|
+
export interface CalibratedImuHpTel {
|
|
276
|
+
/** Calibrated High Precision IMU (no magnetometer) */
|
|
277
|
+
imu: Imu | undefined;
|
|
278
|
+
}
|
|
279
|
+
/** Medusa gamma ray sensor spectrometer data. */
|
|
280
|
+
export interface MedusaSpectrometerDataTel {
|
|
281
|
+
/** Medusa gamma ray sensor spectrometer data. */
|
|
282
|
+
data: MedusaSpectrometerData | undefined;
|
|
283
|
+
}
|
|
284
|
+
/** Multibeam sonar ping data. */
|
|
285
|
+
export interface MultibeamPingTel {
|
|
286
|
+
/** Ping data from a multibeam sonar. */
|
|
287
|
+
ping: MultibeamPing | undefined;
|
|
288
|
+
}
|
|
289
|
+
/** Multibeam sonar config. */
|
|
290
|
+
export interface MultibeamConfigTel {
|
|
291
|
+
/** Config data from a multibeam sonar. */
|
|
292
|
+
config: MultibeamConfig | undefined;
|
|
293
|
+
}
|
|
294
|
+
/** Multibeam sonar status message. */
|
|
295
|
+
export interface MultibeamDiscoveryTel {
|
|
296
|
+
/** Discovery data from a multibeam sonar. */
|
|
297
|
+
discovery: MultibeamDiscovery | undefined;
|
|
298
|
+
}
|
|
299
|
+
/** Information about cpu and memory usage. */
|
|
300
|
+
export interface CPUInfoTel {
|
|
301
|
+
/** CPU information. */
|
|
302
|
+
cpuInfo: CPUInfo | undefined;
|
|
303
|
+
}
|
|
304
|
+
/** Surface Unit telemetry message. */
|
|
305
|
+
export interface SurfaceUnitTel {
|
|
306
|
+
/** Battery information. */
|
|
307
|
+
batteryInfo: SurfaceUnitBatteryInfo | undefined;
|
|
308
|
+
/** Version information. */
|
|
309
|
+
versionInfo: SurfaceUnitVersionInfo | undefined;
|
|
310
|
+
}
|
|
311
|
+
/** Log entry telemetry message. */
|
|
312
|
+
export interface LogEntryTel {
|
|
313
|
+
/** Blunux log entry. */
|
|
314
|
+
blunux?: LogEntry | undefined;
|
|
315
|
+
/** Kernel log entry. */
|
|
316
|
+
kernel?: KernelLogEntry | undefined;
|
|
317
|
+
}
|
|
318
|
+
export declare const AttitudeTel: MessageFns<AttitudeTel>;
|
|
319
|
+
export declare const MagneticDeclinationTel: MessageFns<MagneticDeclinationTel>;
|
|
320
|
+
export declare const AltitudeTel: MessageFns<AltitudeTel>;
|
|
321
|
+
export declare const ForwardDistanceTel: MessageFns<ForwardDistanceTel>;
|
|
322
|
+
export declare const DvlVelocityTel: MessageFns<DvlVelocityTel>;
|
|
323
|
+
export declare const PositionEstimateTel: MessageFns<PositionEstimateTel>;
|
|
324
|
+
export declare const DepthTel: MessageFns<DepthTel>;
|
|
325
|
+
export declare const ReferenceTel: MessageFns<ReferenceTel>;
|
|
326
|
+
export declare const ReferenceAutoPilotTel: MessageFns<ReferenceAutoPilotTel>;
|
|
327
|
+
export declare const MissionStatusTel: MessageFns<MissionStatusTel>;
|
|
328
|
+
export declare const NotificationTel: MessageFns<NotificationTel>;
|
|
329
|
+
export declare const ControlForceTel: MessageFns<ControlForceTel>;
|
|
330
|
+
export declare const ControllerHealthTel: MessageFns<ControllerHealthTel>;
|
|
331
|
+
export declare const LightsTel: MessageFns<LightsTel>;
|
|
332
|
+
export declare const GuestPortLightsTel: MessageFns<GuestPortLightsTel>;
|
|
333
|
+
export declare const LaserTel: MessageFns<LaserTel>;
|
|
334
|
+
export declare const PilotGPSPositionTel: MessageFns<PilotGPSPositionTel>;
|
|
335
|
+
export declare const RecordStateTel: MessageFns<RecordStateTel>;
|
|
336
|
+
export declare const TimeLapseStateTel: MessageFns<TimeLapseStateTel>;
|
|
337
|
+
export declare const BatteryTel: MessageFns<BatteryTel>;
|
|
338
|
+
export declare const BatteryBQ40Z50Tel: MessageFns<BatteryBQ40Z50Tel>;
|
|
339
|
+
export declare const DiveTimeTel: MessageFns<DiveTimeTel>;
|
|
340
|
+
export declare const DroneTimeTel: MessageFns<DroneTimeTel>;
|
|
341
|
+
export declare const WaterTemperatureTel: MessageFns<WaterTemperatureTel>;
|
|
342
|
+
export declare const CPUTemperatureTel: MessageFns<CPUTemperatureTel>;
|
|
343
|
+
export declare const CanisterBottomTemperatureTel: MessageFns<CanisterBottomTemperatureTel>;
|
|
344
|
+
export declare const CanisterBottomHumidityTel: MessageFns<CanisterBottomHumidityTel>;
|
|
345
|
+
export declare const VideoStorageSpaceTel: MessageFns<VideoStorageSpaceTel>;
|
|
346
|
+
export declare const RemovableStorageTel: MessageFns<RemovableStorageTel>;
|
|
347
|
+
export declare const DataStorageSpaceTel: MessageFns<DataStorageSpaceTel>;
|
|
348
|
+
export declare const CalibrationStateTel: MessageFns<CalibrationStateTel>;
|
|
349
|
+
export declare const TiltStabilizationTel: MessageFns<TiltStabilizationTel>;
|
|
350
|
+
export declare const IperfTel: MessageFns<IperfTel>;
|
|
351
|
+
export declare const NStreamersTel: MessageFns<NStreamersTel>;
|
|
352
|
+
export declare const TiltAngleTel: MessageFns<TiltAngleTel>;
|
|
353
|
+
export declare const DroneInfoTel: MessageFns<DroneInfoTel>;
|
|
354
|
+
export declare const ErrorFlagsTel: MessageFns<ErrorFlagsTel>;
|
|
355
|
+
export declare const ControlModeTel: MessageFns<ControlModeTel>;
|
|
356
|
+
export declare const ThicknessGaugeTel: MessageFns<ThicknessGaugeTel>;
|
|
357
|
+
export declare const CpProbeTel: MessageFns<CpProbeTel>;
|
|
358
|
+
export declare const AquaTrollProbeMetadataTel: MessageFns<AquaTrollProbeMetadataTel>;
|
|
359
|
+
export declare const AquaTrollSensorMetadataTel: MessageFns<AquaTrollSensorMetadataTel>;
|
|
360
|
+
export declare const AquaTrollSensorParametersTel: MessageFns<AquaTrollSensorParametersTel>;
|
|
361
|
+
export declare const ConnectedClientsTel: MessageFns<ConnectedClientsTel>;
|
|
362
|
+
export declare const GenericServoTel: MessageFns<GenericServoTel>;
|
|
363
|
+
export declare const MultibeamServoTel: MessageFns<MultibeamServoTel>;
|
|
364
|
+
export declare const GuestPortCurrentTel: MessageFns<GuestPortCurrentTel>;
|
|
365
|
+
export declare const CalibratedImuTel: MessageFns<CalibratedImuTel>;
|
|
366
|
+
export declare const Imu1Tel: MessageFns<Imu1Tel>;
|
|
367
|
+
export declare const Imu2Tel: MessageFns<Imu2Tel>;
|
|
368
|
+
export declare const ImuHpTel: MessageFns<ImuHpTel>;
|
|
369
|
+
export declare const CalibratedImuHpTel: MessageFns<CalibratedImuHpTel>;
|
|
370
|
+
export declare const MedusaSpectrometerDataTel: MessageFns<MedusaSpectrometerDataTel>;
|
|
371
|
+
export declare const MultibeamPingTel: MessageFns<MultibeamPingTel>;
|
|
372
|
+
export declare const MultibeamConfigTel: MessageFns<MultibeamConfigTel>;
|
|
373
|
+
export declare const MultibeamDiscoveryTel: MessageFns<MultibeamDiscoveryTel>;
|
|
374
|
+
export declare const CPUInfoTel: MessageFns<CPUInfoTel>;
|
|
375
|
+
export declare const SurfaceUnitTel: MessageFns<SurfaceUnitTel>;
|
|
376
|
+
export declare const LogEntryTel: MessageFns<LogEntryTel>;
|
|
377
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
378
|
+
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 {} ? {
|
|
379
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
380
|
+
} : Partial<T>;
|
|
381
|
+
interface MessageFns<T> {
|
|
382
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
383
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
384
|
+
fromJSON(object: any): T;
|
|
385
|
+
toJSON(message: T): unknown;
|
|
386
|
+
create(base?: DeepPartial<T>): T;
|
|
387
|
+
fromPartial(object: DeepPartial<T>): T;
|
|
388
|
+
}
|
|
389
|
+
export {};
|