fossekall-interface 0.1.144 → 0.1.145
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/generated/ecu/commands.d.ts +38 -4
- package/dist/generated/ecu/commands.js +8 -3
- package/dist/generated/ecu/commands.json +61 -5
- package/dist/generated/ecu/telemetry.d.ts +38 -4
- package/dist/generated/ecu/telemetry.js +8 -3
- package/dist/generated/ecu/telemetry.json +63 -5
- package/dist/generated/fc/index.d.ts +0 -1
- package/dist/generated/fc/index.js +0 -1
- package/dist/generated/fs/commands.d.ts +27 -24
- package/dist/generated/fs/commands.js +10 -9
- package/dist/generated/fs/commands.json +9 -8
- package/dist/generated/fs/telemetry.d.ts +86 -24
- package/dist/generated/fs/telemetry.js +38 -9
- package/dist/generated/fs/telemetry.json +103 -8
- package/package.json +1 -1
- package/dist/generated/fc/telemetry.d.ts +0 -219
- package/dist/generated/fc/telemetry.js +0 -141
|
@@ -7,14 +7,15 @@ declare class UInt64Schema extends Schema<bigint> {
|
|
|
7
7
|
}
|
|
8
8
|
export declare const StateId: {
|
|
9
9
|
readonly Safe: 0;
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
10
|
+
readonly FuelFill: 1;
|
|
11
|
+
readonly RecoveryFill: 2;
|
|
12
|
+
readonly PostRecoveryFill: 3;
|
|
13
|
+
readonly N2Fill: 4;
|
|
14
|
+
readonly PostN2Fill: 5;
|
|
15
|
+
readonly OxFill: 6;
|
|
16
|
+
readonly PostOxFill: 7;
|
|
17
|
+
readonly QDDisconnect: 8;
|
|
18
|
+
readonly Hold: 9;
|
|
18
19
|
};
|
|
19
20
|
export type StateId = (typeof StateId)[keyof typeof StateId];
|
|
20
21
|
export declare const Event: {
|
|
@@ -82,6 +83,15 @@ export declare const sensors_load_cell_Id: {
|
|
|
82
83
|
readonly Count: 3;
|
|
83
84
|
};
|
|
84
85
|
export type sensors_load_cell_Id = (typeof sensors_load_cell_Id)[keyof typeof sensors_load_cell_Id];
|
|
86
|
+
export declare const PropellantMassIndex: {
|
|
87
|
+
readonly Fuel: 0;
|
|
88
|
+
readonly N2Recovery: 1;
|
|
89
|
+
readonly N2Propulsion: 2;
|
|
90
|
+
readonly Ox: 3;
|
|
91
|
+
readonly Count: 4;
|
|
92
|
+
readonly None: -1;
|
|
93
|
+
};
|
|
94
|
+
export type PropellantMassIndex = (typeof PropellantMassIndex)[keyof typeof PropellantMassIndex];
|
|
85
95
|
export declare const HeartBeatTelemetry: import("typed-binary").ObjectSchema<{
|
|
86
96
|
message: import("typed-binary").ArraySchema<import("typed-binary").Int8Schema>;
|
|
87
97
|
status_flags: import("typed-binary").ByteSchema;
|
|
@@ -182,6 +192,19 @@ export declare const LoadCellPacket: import("typed-binary").ObjectSchema<{
|
|
|
182
192
|
}>;
|
|
183
193
|
}>;
|
|
184
194
|
export type LoadCellPacket = bin.Parsed<typeof LoadCellPacket>;
|
|
195
|
+
export declare const PropellantMassPacket: import("typed-binary").ObjectSchema<{
|
|
196
|
+
timestamp_ms: import("typed-binary").Uint32Schema;
|
|
197
|
+
fsm_state: import("typed-binary").ByteSchema;
|
|
198
|
+
active_propellant: import("typed-binary").ByteSchema;
|
|
199
|
+
load_cell_fault_mask: import("typed-binary").Uint16Schema;
|
|
200
|
+
total_vehicle_kg: import("typed-binary").Float32Schema;
|
|
201
|
+
total_filled_kg: import("typed-binary").Float32Schema;
|
|
202
|
+
active_fill_delta_kg: import("typed-binary").Float32Schema;
|
|
203
|
+
propellant_filled_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
204
|
+
raw_load_cell_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
205
|
+
raw_load_cell_faults: import("typed-binary").ArraySchema<import("typed-binary").Uint16Schema>;
|
|
206
|
+
}>;
|
|
207
|
+
export type PropellantMassPacket = bin.Parsed<typeof PropellantMassPacket>;
|
|
185
208
|
export declare const spec: {
|
|
186
209
|
HeartBeatTelemetry: {
|
|
187
210
|
port: number;
|
|
@@ -208,25 +231,27 @@ export declare const spec: {
|
|
|
208
231
|
status: {
|
|
209
232
|
current_state: {
|
|
210
233
|
readonly Safe: 0;
|
|
211
|
-
readonly
|
|
212
|
-
readonly
|
|
213
|
-
readonly
|
|
214
|
-
readonly
|
|
215
|
-
readonly
|
|
216
|
-
readonly
|
|
217
|
-
readonly
|
|
218
|
-
readonly
|
|
234
|
+
readonly FuelFill: 1;
|
|
235
|
+
readonly RecoveryFill: 2;
|
|
236
|
+
readonly PostRecoveryFill: 3;
|
|
237
|
+
readonly N2Fill: 4;
|
|
238
|
+
readonly PostN2Fill: 5;
|
|
239
|
+
readonly OxFill: 6;
|
|
240
|
+
readonly PostOxFill: 7;
|
|
241
|
+
readonly QDDisconnect: 8;
|
|
242
|
+
readonly Hold: 9;
|
|
219
243
|
};
|
|
220
244
|
previous_state: {
|
|
221
245
|
readonly Safe: 0;
|
|
222
|
-
readonly
|
|
223
|
-
readonly
|
|
224
|
-
readonly
|
|
225
|
-
readonly
|
|
226
|
-
readonly
|
|
227
|
-
readonly
|
|
228
|
-
readonly
|
|
229
|
-
readonly
|
|
246
|
+
readonly FuelFill: 1;
|
|
247
|
+
readonly RecoveryFill: 2;
|
|
248
|
+
readonly PostRecoveryFill: 3;
|
|
249
|
+
readonly N2Fill: 4;
|
|
250
|
+
readonly PostN2Fill: 5;
|
|
251
|
+
readonly OxFill: 6;
|
|
252
|
+
readonly PostOxFill: 7;
|
|
253
|
+
readonly QDDisconnect: 8;
|
|
254
|
+
readonly Hold: 9;
|
|
230
255
|
};
|
|
231
256
|
last_event: {
|
|
232
257
|
readonly Boot: 0;
|
|
@@ -358,6 +383,43 @@ export declare const spec: {
|
|
|
358
383
|
data: {};
|
|
359
384
|
};
|
|
360
385
|
};
|
|
386
|
+
PropellantMassPacket: {
|
|
387
|
+
port: number;
|
|
388
|
+
schema: import("typed-binary").ObjectSchema<{
|
|
389
|
+
timestamp_ms: import("typed-binary").Uint32Schema;
|
|
390
|
+
fsm_state: import("typed-binary").ByteSchema;
|
|
391
|
+
active_propellant: import("typed-binary").ByteSchema;
|
|
392
|
+
load_cell_fault_mask: import("typed-binary").Uint16Schema;
|
|
393
|
+
total_vehicle_kg: import("typed-binary").Float32Schema;
|
|
394
|
+
total_filled_kg: import("typed-binary").Float32Schema;
|
|
395
|
+
active_fill_delta_kg: import("typed-binary").Float32Schema;
|
|
396
|
+
propellant_filled_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
397
|
+
raw_load_cell_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
398
|
+
raw_load_cell_faults: import("typed-binary").ArraySchema<import("typed-binary").Uint16Schema>;
|
|
399
|
+
}>;
|
|
400
|
+
enums: {
|
|
401
|
+
fsm_state: {
|
|
402
|
+
readonly Safe: 0;
|
|
403
|
+
readonly FuelFill: 1;
|
|
404
|
+
readonly RecoveryFill: 2;
|
|
405
|
+
readonly PostRecoveryFill: 3;
|
|
406
|
+
readonly N2Fill: 4;
|
|
407
|
+
readonly PostN2Fill: 5;
|
|
408
|
+
readonly OxFill: 6;
|
|
409
|
+
readonly PostOxFill: 7;
|
|
410
|
+
readonly QDDisconnect: 8;
|
|
411
|
+
readonly Hold: 9;
|
|
412
|
+
};
|
|
413
|
+
active_propellant: {
|
|
414
|
+
readonly Fuel: 0;
|
|
415
|
+
readonly N2Recovery: 1;
|
|
416
|
+
readonly N2Propulsion: 2;
|
|
417
|
+
readonly Ox: 3;
|
|
418
|
+
readonly Count: 4;
|
|
419
|
+
readonly None: -1;
|
|
420
|
+
};
|
|
421
|
+
};
|
|
422
|
+
};
|
|
361
423
|
};
|
|
362
424
|
export default spec;
|
|
363
425
|
export type Spec = typeof spec;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import bin, { Measurer, Schema } from 'typed-binary';
|
|
2
|
-
// This file was generated by FRICC on 2026-07-
|
|
2
|
+
// This file was generated by FRICC on 2026-07-15 07:10:47. Do not edit manually!
|
|
3
3
|
// The current version of typed-binary does not support 64-bit primitives.
|
|
4
4
|
// So for we'll implement our own schemas. :)
|
|
5
5
|
const __littleEndian = true;
|
|
@@ -62,14 +62,15 @@ const i64 = new Int64Schema();
|
|
|
62
62
|
const f64 = new Float64Schema();
|
|
63
63
|
export const StateId = {
|
|
64
64
|
Safe: 0,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
65
|
+
FuelFill: 1,
|
|
66
|
+
RecoveryFill: 2,
|
|
67
|
+
PostRecoveryFill: 3,
|
|
68
|
+
N2Fill: 4,
|
|
69
|
+
PostN2Fill: 5,
|
|
70
|
+
OxFill: 6,
|
|
71
|
+
PostOxFill: 7,
|
|
72
|
+
QDDisconnect: 8,
|
|
73
|
+
Hold: 9,
|
|
73
74
|
};
|
|
74
75
|
export const Event = {
|
|
75
76
|
Boot: 0,
|
|
@@ -127,6 +128,14 @@ export const sensors_load_cell_Id = {
|
|
|
127
128
|
LoadCell2: 2,
|
|
128
129
|
Count: 3,
|
|
129
130
|
};
|
|
131
|
+
export const PropellantMassIndex = {
|
|
132
|
+
Fuel: 0,
|
|
133
|
+
N2Recovery: 1,
|
|
134
|
+
N2Propulsion: 2,
|
|
135
|
+
Ox: 3,
|
|
136
|
+
Count: 4,
|
|
137
|
+
None: -1,
|
|
138
|
+
};
|
|
130
139
|
export const HeartBeatTelemetry = bin.object({
|
|
131
140
|
message: bin.arrayOf(bin.i8, 16), // char[16]
|
|
132
141
|
status_flags: bin.u8, // unsigned char
|
|
@@ -187,6 +196,18 @@ export const LoadCellPacket = bin.object({
|
|
|
187
196
|
load_cell_id: bin.u8, // sensors::load_cell::Id
|
|
188
197
|
data: sensors_load_cell_LoadCellBatch, // sensors::load_cell::LoadCellBatch
|
|
189
198
|
});
|
|
199
|
+
export const PropellantMassPacket = bin.object({
|
|
200
|
+
timestamp_ms: bin.u32, // unsigned int
|
|
201
|
+
fsm_state: bin.u8, // StateId
|
|
202
|
+
active_propellant: bin.u8, // PropellantMassIndex
|
|
203
|
+
load_cell_fault_mask: bin.u16, // unsigned short
|
|
204
|
+
total_vehicle_kg: bin.f32, // float
|
|
205
|
+
total_filled_kg: bin.f32, // float
|
|
206
|
+
active_fill_delta_kg: bin.f32, // float
|
|
207
|
+
propellant_filled_kg: bin.arrayOf(bin.f32, 4), // float[4]
|
|
208
|
+
raw_load_cell_kg: bin.arrayOf(bin.f32, 3), // float[3]
|
|
209
|
+
raw_load_cell_faults: bin.arrayOf(bin.u16, 3), // unsigned short[3]
|
|
210
|
+
});
|
|
190
211
|
export const spec = {
|
|
191
212
|
HeartBeatTelemetry: {
|
|
192
213
|
port: 57045,
|
|
@@ -247,5 +268,13 @@ export const spec = {
|
|
|
247
268
|
data: {},
|
|
248
269
|
},
|
|
249
270
|
},
|
|
271
|
+
PropellantMassPacket: {
|
|
272
|
+
port: 5048,
|
|
273
|
+
schema: PropellantMassPacket,
|
|
274
|
+
enums: {
|
|
275
|
+
fsm_state: StateId,
|
|
276
|
+
active_propellant: PropellantMassIndex,
|
|
277
|
+
},
|
|
278
|
+
},
|
|
250
279
|
};
|
|
251
280
|
export default spec;
|
|
@@ -310,19 +310,106 @@
|
|
|
310
310
|
}
|
|
311
311
|
],
|
|
312
312
|
"format_string": "<BQIBBhhhhhhhhhhhhhhhhhhhh"
|
|
313
|
+
},
|
|
314
|
+
"PropellantMassPacket": {
|
|
315
|
+
"port": 5048,
|
|
316
|
+
"kind": "struct",
|
|
317
|
+
"type": "PropellantMassPacket",
|
|
318
|
+
"fields": [
|
|
319
|
+
{
|
|
320
|
+
"name": "timestamp_ms",
|
|
321
|
+
"kind": "primitive",
|
|
322
|
+
"type": "unsigned int",
|
|
323
|
+
"format_string": "<I"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "fsm_state",
|
|
327
|
+
"kind": "enum",
|
|
328
|
+
"type": "StateId",
|
|
329
|
+
"format_string": "<B"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "active_propellant",
|
|
333
|
+
"kind": "enum",
|
|
334
|
+
"type": "PropellantMassIndex",
|
|
335
|
+
"format_string": "<B"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"name": "load_cell_fault_mask",
|
|
339
|
+
"kind": "primitive",
|
|
340
|
+
"type": "unsigned short",
|
|
341
|
+
"format_string": "<H"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "total_vehicle_kg",
|
|
345
|
+
"kind": "primitive",
|
|
346
|
+
"type": "float",
|
|
347
|
+
"format_string": "<f"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "total_filled_kg",
|
|
351
|
+
"kind": "primitive",
|
|
352
|
+
"type": "float",
|
|
353
|
+
"format_string": "<f"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "active_fill_delta_kg",
|
|
357
|
+
"kind": "primitive",
|
|
358
|
+
"type": "float",
|
|
359
|
+
"format_string": "<f"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "propellant_filled_kg",
|
|
363
|
+
"kind": "array",
|
|
364
|
+
"type": "float[4]",
|
|
365
|
+
"element": {
|
|
366
|
+
"kind": "primitive",
|
|
367
|
+
"type": "float",
|
|
368
|
+
"format_string": "<f"
|
|
369
|
+
},
|
|
370
|
+
"count": 4,
|
|
371
|
+
"format_string": "<ffff"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"name": "raw_load_cell_kg",
|
|
375
|
+
"kind": "array",
|
|
376
|
+
"type": "float[3]",
|
|
377
|
+
"element": {
|
|
378
|
+
"kind": "primitive",
|
|
379
|
+
"type": "float",
|
|
380
|
+
"format_string": "<f"
|
|
381
|
+
},
|
|
382
|
+
"count": 3,
|
|
383
|
+
"format_string": "<fff"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "raw_load_cell_faults",
|
|
387
|
+
"kind": "array",
|
|
388
|
+
"type": "unsigned short[3]",
|
|
389
|
+
"element": {
|
|
390
|
+
"kind": "primitive",
|
|
391
|
+
"type": "unsigned short",
|
|
392
|
+
"format_string": "<H"
|
|
393
|
+
},
|
|
394
|
+
"count": 3,
|
|
395
|
+
"format_string": "<HHH"
|
|
396
|
+
}
|
|
397
|
+
],
|
|
398
|
+
"format_string": "<IBBHffffffffffHHH"
|
|
313
399
|
}
|
|
314
400
|
},
|
|
315
401
|
"enums": {
|
|
316
402
|
"StateId": {
|
|
317
403
|
"Safe": 0,
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
-
"
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
-
"
|
|
404
|
+
"FuelFill": 1,
|
|
405
|
+
"RecoveryFill": 2,
|
|
406
|
+
"PostRecoveryFill": 3,
|
|
407
|
+
"N2Fill": 4,
|
|
408
|
+
"PostN2Fill": 5,
|
|
409
|
+
"OxFill": 6,
|
|
410
|
+
"PostOxFill": 7,
|
|
411
|
+
"QDDisconnect": 8,
|
|
412
|
+
"Hold": 9
|
|
326
413
|
},
|
|
327
414
|
"Event": {
|
|
328
415
|
"Boot": 0,
|
|
@@ -379,6 +466,14 @@
|
|
|
379
466
|
"LoadCell1": 1,
|
|
380
467
|
"LoadCell2": 2,
|
|
381
468
|
"Count": 3
|
|
469
|
+
},
|
|
470
|
+
"PropellantMassIndex": {
|
|
471
|
+
"Fuel": 0,
|
|
472
|
+
"N2Recovery": 1,
|
|
473
|
+
"N2Propulsion": 2,
|
|
474
|
+
"Ox": 3,
|
|
475
|
+
"Count": 4,
|
|
476
|
+
"None": -1
|
|
382
477
|
}
|
|
383
478
|
}
|
|
384
479
|
}
|
package/package.json
CHANGED
|
@@ -1,219 +0,0 @@
|
|
|
1
|
-
import bin, { MaxValue, Schema, type IMeasurer, type ISerialInput, type ISerialOutput } from 'typed-binary';
|
|
2
|
-
declare class Float64Schema extends Schema<number> {
|
|
3
|
-
readonly maxSize = 8;
|
|
4
|
-
read(input: ISerialInput): number;
|
|
5
|
-
write(output: ISerialOutput, value: number): void;
|
|
6
|
-
measure(_: number | typeof MaxValue, measurer?: IMeasurer): IMeasurer;
|
|
7
|
-
}
|
|
8
|
-
export declare const Telemetry_GNSS_DATA: import("typed-binary").ObjectSchema<{
|
|
9
|
-
data_valid: import("typed-binary").ByteSchema;
|
|
10
|
-
numSV: import("typed-binary").ByteSchema;
|
|
11
|
-
lat: Float64Schema;
|
|
12
|
-
lon: Float64Schema;
|
|
13
|
-
hMSL: Float64Schema;
|
|
14
|
-
gSpeed: Float64Schema;
|
|
15
|
-
headMot: Float64Schema;
|
|
16
|
-
hAcc: import("typed-binary").Uint32Schema;
|
|
17
|
-
vAcc: import("typed-binary").Uint32Schema;
|
|
18
|
-
velN: import("typed-binary").Int32Schema;
|
|
19
|
-
velE: import("typed-binary").Int32Schema;
|
|
20
|
-
velD: import("typed-binary").Int32Schema;
|
|
21
|
-
}>;
|
|
22
|
-
export type Telemetry_GNSS_DATA = bin.Parsed<typeof Telemetry_GNSS_DATA>;
|
|
23
|
-
export declare const Telemetry_BME280_DATA: import("typed-binary").ObjectSchema<{
|
|
24
|
-
valid: import("typed-binary").ByteSchema;
|
|
25
|
-
temperature: import("typed-binary").Float32Schema;
|
|
26
|
-
pressure: import("typed-binary").Float32Schema;
|
|
27
|
-
humidity: import("typed-binary").Float32Schema;
|
|
28
|
-
timestamp: import("typed-binary").Uint32Schema;
|
|
29
|
-
}>;
|
|
30
|
-
export type Telemetry_BME280_DATA = bin.Parsed<typeof Telemetry_BME280_DATA>;
|
|
31
|
-
export declare const Telemetry_MS5611_DATA: import("typed-binary").ObjectSchema<{
|
|
32
|
-
valid: import("typed-binary").ByteSchema;
|
|
33
|
-
temperature: import("typed-binary").Float32Schema;
|
|
34
|
-
pressure: import("typed-binary").Float32Schema;
|
|
35
|
-
timestamp: import("typed-binary").Uint32Schema;
|
|
36
|
-
}>;
|
|
37
|
-
export type Telemetry_MS5611_DATA = bin.Parsed<typeof Telemetry_MS5611_DATA>;
|
|
38
|
-
export declare const Telemetry_AccelerationData: import("typed-binary").ObjectSchema<{
|
|
39
|
-
acc_x_m_per_ss: import("typed-binary").Float32Schema;
|
|
40
|
-
acc_y_m_per_ss: import("typed-binary").Float32Schema;
|
|
41
|
-
acc_z_m_per_ss: import("typed-binary").Float32Schema;
|
|
42
|
-
}>;
|
|
43
|
-
export type Telemetry_AccelerationData = bin.Parsed<typeof Telemetry_AccelerationData>;
|
|
44
|
-
export declare const Telemetry_GyroData: import("typed-binary").ObjectSchema<{
|
|
45
|
-
gyro_x: import("typed-binary").Float32Schema;
|
|
46
|
-
gyro_y: import("typed-binary").Float32Schema;
|
|
47
|
-
gyro_z: import("typed-binary").Float32Schema;
|
|
48
|
-
}>;
|
|
49
|
-
export type Telemetry_GyroData = bin.Parsed<typeof Telemetry_GyroData>;
|
|
50
|
-
export declare const Telemetry_ICM40609D_DATA: import("typed-binary").ObjectSchema<{
|
|
51
|
-
acc_m_per_ss: import("typed-binary").ObjectSchema<{
|
|
52
|
-
acc_x_m_per_ss: import("typed-binary").Float32Schema;
|
|
53
|
-
acc_y_m_per_ss: import("typed-binary").Float32Schema;
|
|
54
|
-
acc_z_m_per_ss: import("typed-binary").Float32Schema;
|
|
55
|
-
}>;
|
|
56
|
-
gyro: import("typed-binary").ObjectSchema<{
|
|
57
|
-
gyro_x: import("typed-binary").Float32Schema;
|
|
58
|
-
gyro_y: import("typed-binary").Float32Schema;
|
|
59
|
-
gyro_z: import("typed-binary").Float32Schema;
|
|
60
|
-
}>;
|
|
61
|
-
temperature_C: import("typed-binary").Float32Schema;
|
|
62
|
-
}>;
|
|
63
|
-
export type Telemetry_ICM40609D_DATA = bin.Parsed<typeof Telemetry_ICM40609D_DATA>;
|
|
64
|
-
export declare const Telemetry_STIM377H_DATA: import("typed-binary").ObjectSchema<{
|
|
65
|
-
acc: import("typed-binary").ObjectSchema<{
|
|
66
|
-
acc_x_m_per_ss: import("typed-binary").Float32Schema;
|
|
67
|
-
acc_y_m_per_ss: import("typed-binary").Float32Schema;
|
|
68
|
-
acc_z_m_per_ss: import("typed-binary").Float32Schema;
|
|
69
|
-
}>;
|
|
70
|
-
gyro: import("typed-binary").ObjectSchema<{
|
|
71
|
-
gyro_x: import("typed-binary").Float32Schema;
|
|
72
|
-
gyro_y: import("typed-binary").Float32Schema;
|
|
73
|
-
gyro_z: import("typed-binary").Float32Schema;
|
|
74
|
-
}>;
|
|
75
|
-
}>;
|
|
76
|
-
export type Telemetry_STIM377H_DATA = bin.Parsed<typeof Telemetry_STIM377H_DATA>;
|
|
77
|
-
export declare const Telemetry_PressureData: import("typed-binary").ObjectSchema<{
|
|
78
|
-
flotation_pressure: import("typed-binary").Float32Schema;
|
|
79
|
-
separation_pressure: import("typed-binary").Float32Schema;
|
|
80
|
-
}>;
|
|
81
|
-
export type Telemetry_PressureData = bin.Parsed<typeof Telemetry_PressureData>;
|
|
82
|
-
export declare const Telemetry_SensorData: import("typed-binary").ObjectSchema<{
|
|
83
|
-
gnss_data: import("typed-binary").ObjectSchema<{
|
|
84
|
-
data_valid: import("typed-binary").ByteSchema;
|
|
85
|
-
numSV: import("typed-binary").ByteSchema;
|
|
86
|
-
lat: Float64Schema;
|
|
87
|
-
lon: Float64Schema;
|
|
88
|
-
hMSL: Float64Schema;
|
|
89
|
-
gSpeed: Float64Schema;
|
|
90
|
-
headMot: Float64Schema;
|
|
91
|
-
hAcc: import("typed-binary").Uint32Schema;
|
|
92
|
-
vAcc: import("typed-binary").Uint32Schema;
|
|
93
|
-
velN: import("typed-binary").Int32Schema;
|
|
94
|
-
velE: import("typed-binary").Int32Schema;
|
|
95
|
-
velD: import("typed-binary").Int32Schema;
|
|
96
|
-
}>;
|
|
97
|
-
bme_data: import("typed-binary").ObjectSchema<{
|
|
98
|
-
valid: import("typed-binary").ByteSchema;
|
|
99
|
-
temperature: import("typed-binary").Float32Schema;
|
|
100
|
-
pressure: import("typed-binary").Float32Schema;
|
|
101
|
-
humidity: import("typed-binary").Float32Schema;
|
|
102
|
-
timestamp: import("typed-binary").Uint32Schema;
|
|
103
|
-
}>;
|
|
104
|
-
ms_data: import("typed-binary").ObjectSchema<{
|
|
105
|
-
valid: import("typed-binary").ByteSchema;
|
|
106
|
-
temperature: import("typed-binary").Float32Schema;
|
|
107
|
-
pressure: import("typed-binary").Float32Schema;
|
|
108
|
-
timestamp: import("typed-binary").Uint32Schema;
|
|
109
|
-
}>;
|
|
110
|
-
icm_data: import("typed-binary").ObjectSchema<{
|
|
111
|
-
acc_m_per_ss: import("typed-binary").ObjectSchema<{
|
|
112
|
-
acc_x_m_per_ss: import("typed-binary").Float32Schema;
|
|
113
|
-
acc_y_m_per_ss: import("typed-binary").Float32Schema;
|
|
114
|
-
acc_z_m_per_ss: import("typed-binary").Float32Schema;
|
|
115
|
-
}>;
|
|
116
|
-
gyro: import("typed-binary").ObjectSchema<{
|
|
117
|
-
gyro_x: import("typed-binary").Float32Schema;
|
|
118
|
-
gyro_y: import("typed-binary").Float32Schema;
|
|
119
|
-
gyro_z: import("typed-binary").Float32Schema;
|
|
120
|
-
}>;
|
|
121
|
-
temperature_C: import("typed-binary").Float32Schema;
|
|
122
|
-
}>;
|
|
123
|
-
stim_data: import("typed-binary").ObjectSchema<{
|
|
124
|
-
acc: import("typed-binary").ObjectSchema<{
|
|
125
|
-
acc_x_m_per_ss: import("typed-binary").Float32Schema;
|
|
126
|
-
acc_y_m_per_ss: import("typed-binary").Float32Schema;
|
|
127
|
-
acc_z_m_per_ss: import("typed-binary").Float32Schema;
|
|
128
|
-
}>;
|
|
129
|
-
gyro: import("typed-binary").ObjectSchema<{
|
|
130
|
-
gyro_x: import("typed-binary").Float32Schema;
|
|
131
|
-
gyro_y: import("typed-binary").Float32Schema;
|
|
132
|
-
gyro_z: import("typed-binary").Float32Schema;
|
|
133
|
-
}>;
|
|
134
|
-
}>;
|
|
135
|
-
pressure_data: import("typed-binary").ObjectSchema<{
|
|
136
|
-
flotation_pressure: import("typed-binary").Float32Schema;
|
|
137
|
-
separation_pressure: import("typed-binary").Float32Schema;
|
|
138
|
-
}>;
|
|
139
|
-
}>;
|
|
140
|
-
export type Telemetry_SensorData = bin.Parsed<typeof Telemetry_SensorData>;
|
|
141
|
-
export declare const spec: {
|
|
142
|
-
Telemetry_SensorData: {
|
|
143
|
-
port: number;
|
|
144
|
-
schema: import("typed-binary").ObjectSchema<{
|
|
145
|
-
gnss_data: import("typed-binary").ObjectSchema<{
|
|
146
|
-
data_valid: import("typed-binary").ByteSchema;
|
|
147
|
-
numSV: import("typed-binary").ByteSchema;
|
|
148
|
-
lat: Float64Schema;
|
|
149
|
-
lon: Float64Schema;
|
|
150
|
-
hMSL: Float64Schema;
|
|
151
|
-
gSpeed: Float64Schema;
|
|
152
|
-
headMot: Float64Schema;
|
|
153
|
-
hAcc: import("typed-binary").Uint32Schema;
|
|
154
|
-
vAcc: import("typed-binary").Uint32Schema;
|
|
155
|
-
velN: import("typed-binary").Int32Schema;
|
|
156
|
-
velE: import("typed-binary").Int32Schema;
|
|
157
|
-
velD: import("typed-binary").Int32Schema;
|
|
158
|
-
}>;
|
|
159
|
-
bme_data: import("typed-binary").ObjectSchema<{
|
|
160
|
-
valid: import("typed-binary").ByteSchema;
|
|
161
|
-
temperature: import("typed-binary").Float32Schema;
|
|
162
|
-
pressure: import("typed-binary").Float32Schema;
|
|
163
|
-
humidity: import("typed-binary").Float32Schema;
|
|
164
|
-
timestamp: import("typed-binary").Uint32Schema;
|
|
165
|
-
}>;
|
|
166
|
-
ms_data: import("typed-binary").ObjectSchema<{
|
|
167
|
-
valid: import("typed-binary").ByteSchema;
|
|
168
|
-
temperature: import("typed-binary").Float32Schema;
|
|
169
|
-
pressure: import("typed-binary").Float32Schema;
|
|
170
|
-
timestamp: import("typed-binary").Uint32Schema;
|
|
171
|
-
}>;
|
|
172
|
-
icm_data: import("typed-binary").ObjectSchema<{
|
|
173
|
-
acc_m_per_ss: import("typed-binary").ObjectSchema<{
|
|
174
|
-
acc_x_m_per_ss: import("typed-binary").Float32Schema;
|
|
175
|
-
acc_y_m_per_ss: import("typed-binary").Float32Schema;
|
|
176
|
-
acc_z_m_per_ss: import("typed-binary").Float32Schema;
|
|
177
|
-
}>;
|
|
178
|
-
gyro: import("typed-binary").ObjectSchema<{
|
|
179
|
-
gyro_x: import("typed-binary").Float32Schema;
|
|
180
|
-
gyro_y: import("typed-binary").Float32Schema;
|
|
181
|
-
gyro_z: import("typed-binary").Float32Schema;
|
|
182
|
-
}>;
|
|
183
|
-
temperature_C: import("typed-binary").Float32Schema;
|
|
184
|
-
}>;
|
|
185
|
-
stim_data: import("typed-binary").ObjectSchema<{
|
|
186
|
-
acc: import("typed-binary").ObjectSchema<{
|
|
187
|
-
acc_x_m_per_ss: import("typed-binary").Float32Schema;
|
|
188
|
-
acc_y_m_per_ss: import("typed-binary").Float32Schema;
|
|
189
|
-
acc_z_m_per_ss: import("typed-binary").Float32Schema;
|
|
190
|
-
}>;
|
|
191
|
-
gyro: import("typed-binary").ObjectSchema<{
|
|
192
|
-
gyro_x: import("typed-binary").Float32Schema;
|
|
193
|
-
gyro_y: import("typed-binary").Float32Schema;
|
|
194
|
-
gyro_z: import("typed-binary").Float32Schema;
|
|
195
|
-
}>;
|
|
196
|
-
}>;
|
|
197
|
-
pressure_data: import("typed-binary").ObjectSchema<{
|
|
198
|
-
flotation_pressure: import("typed-binary").Float32Schema;
|
|
199
|
-
separation_pressure: import("typed-binary").Float32Schema;
|
|
200
|
-
}>;
|
|
201
|
-
}>;
|
|
202
|
-
enums: {
|
|
203
|
-
gnss_data: {};
|
|
204
|
-
bme_data: {};
|
|
205
|
-
ms_data: {};
|
|
206
|
-
icm_data: {
|
|
207
|
-
acc_m_per_ss: {};
|
|
208
|
-
gyro: {};
|
|
209
|
-
};
|
|
210
|
-
stim_data: {
|
|
211
|
-
acc: {};
|
|
212
|
-
gyro: {};
|
|
213
|
-
};
|
|
214
|
-
pressure_data: {};
|
|
215
|
-
};
|
|
216
|
-
};
|
|
217
|
-
};
|
|
218
|
-
export default spec;
|
|
219
|
-
export type Spec = typeof spec;
|