fossekall-interface 0.1.144 → 0.1.146
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 +30 -24
- package/dist/generated/fs/commands.js +11 -9
- package/dist/generated/fs/commands.json +10 -8
- package/dist/generated/fs/telemetry.d.ts +90 -24
- package/dist/generated/fs/telemetry.js +39 -9
- package/dist/generated/fs/telemetry.json +104 -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,16 @@ 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 PostFuelFill: 2;
|
|
12
|
+
readonly RecoveryFill: 3;
|
|
13
|
+
readonly PostRecoveryFill: 4;
|
|
14
|
+
readonly N2Fill: 5;
|
|
15
|
+
readonly PostN2Fill: 6;
|
|
16
|
+
readonly OxFill: 7;
|
|
17
|
+
readonly PostOxFill: 8;
|
|
18
|
+
readonly QDDisconnect: 9;
|
|
19
|
+
readonly Hold: 10;
|
|
18
20
|
};
|
|
19
21
|
export type StateId = (typeof StateId)[keyof typeof StateId];
|
|
20
22
|
export declare const Event: {
|
|
@@ -82,6 +84,15 @@ export declare const sensors_load_cell_Id: {
|
|
|
82
84
|
readonly Count: 3;
|
|
83
85
|
};
|
|
84
86
|
export type sensors_load_cell_Id = (typeof sensors_load_cell_Id)[keyof typeof sensors_load_cell_Id];
|
|
87
|
+
export declare const PropellantMassIndex: {
|
|
88
|
+
readonly Fuel: 0;
|
|
89
|
+
readonly N2Recovery: 1;
|
|
90
|
+
readonly N2Propulsion: 2;
|
|
91
|
+
readonly Ox: 3;
|
|
92
|
+
readonly Count: 4;
|
|
93
|
+
readonly None: -1;
|
|
94
|
+
};
|
|
95
|
+
export type PropellantMassIndex = (typeof PropellantMassIndex)[keyof typeof PropellantMassIndex];
|
|
85
96
|
export declare const HeartBeatTelemetry: import("typed-binary").ObjectSchema<{
|
|
86
97
|
message: import("typed-binary").ArraySchema<import("typed-binary").Int8Schema>;
|
|
87
98
|
status_flags: import("typed-binary").ByteSchema;
|
|
@@ -182,6 +193,19 @@ export declare const LoadCellPacket: import("typed-binary").ObjectSchema<{
|
|
|
182
193
|
}>;
|
|
183
194
|
}>;
|
|
184
195
|
export type LoadCellPacket = bin.Parsed<typeof LoadCellPacket>;
|
|
196
|
+
export declare const PropellantMassPacket: import("typed-binary").ObjectSchema<{
|
|
197
|
+
timestamp_ms: import("typed-binary").Uint32Schema;
|
|
198
|
+
fsm_state: import("typed-binary").ByteSchema;
|
|
199
|
+
active_propellant: import("typed-binary").ByteSchema;
|
|
200
|
+
load_cell_fault_mask: import("typed-binary").Uint16Schema;
|
|
201
|
+
total_vehicle_kg: import("typed-binary").Float32Schema;
|
|
202
|
+
total_filled_kg: import("typed-binary").Float32Schema;
|
|
203
|
+
active_fill_delta_kg: import("typed-binary").Float32Schema;
|
|
204
|
+
propellant_filled_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
205
|
+
raw_load_cell_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
206
|
+
raw_load_cell_faults: import("typed-binary").ArraySchema<import("typed-binary").Uint16Schema>;
|
|
207
|
+
}>;
|
|
208
|
+
export type PropellantMassPacket = bin.Parsed<typeof PropellantMassPacket>;
|
|
185
209
|
export declare const spec: {
|
|
186
210
|
HeartBeatTelemetry: {
|
|
187
211
|
port: number;
|
|
@@ -208,25 +232,29 @@ export declare const spec: {
|
|
|
208
232
|
status: {
|
|
209
233
|
current_state: {
|
|
210
234
|
readonly Safe: 0;
|
|
211
|
-
readonly
|
|
212
|
-
readonly
|
|
213
|
-
readonly
|
|
214
|
-
readonly
|
|
215
|
-
readonly
|
|
216
|
-
readonly
|
|
217
|
-
readonly
|
|
218
|
-
readonly
|
|
235
|
+
readonly FuelFill: 1;
|
|
236
|
+
readonly PostFuelFill: 2;
|
|
237
|
+
readonly RecoveryFill: 3;
|
|
238
|
+
readonly PostRecoveryFill: 4;
|
|
239
|
+
readonly N2Fill: 5;
|
|
240
|
+
readonly PostN2Fill: 6;
|
|
241
|
+
readonly OxFill: 7;
|
|
242
|
+
readonly PostOxFill: 8;
|
|
243
|
+
readonly QDDisconnect: 9;
|
|
244
|
+
readonly Hold: 10;
|
|
219
245
|
};
|
|
220
246
|
previous_state: {
|
|
221
247
|
readonly Safe: 0;
|
|
222
|
-
readonly
|
|
223
|
-
readonly
|
|
224
|
-
readonly
|
|
225
|
-
readonly
|
|
226
|
-
readonly
|
|
227
|
-
readonly
|
|
228
|
-
readonly
|
|
229
|
-
readonly
|
|
248
|
+
readonly FuelFill: 1;
|
|
249
|
+
readonly PostFuelFill: 2;
|
|
250
|
+
readonly RecoveryFill: 3;
|
|
251
|
+
readonly PostRecoveryFill: 4;
|
|
252
|
+
readonly N2Fill: 5;
|
|
253
|
+
readonly PostN2Fill: 6;
|
|
254
|
+
readonly OxFill: 7;
|
|
255
|
+
readonly PostOxFill: 8;
|
|
256
|
+
readonly QDDisconnect: 9;
|
|
257
|
+
readonly Hold: 10;
|
|
230
258
|
};
|
|
231
259
|
last_event: {
|
|
232
260
|
readonly Boot: 0;
|
|
@@ -358,6 +386,44 @@ export declare const spec: {
|
|
|
358
386
|
data: {};
|
|
359
387
|
};
|
|
360
388
|
};
|
|
389
|
+
PropellantMassPacket: {
|
|
390
|
+
port: number;
|
|
391
|
+
schema: import("typed-binary").ObjectSchema<{
|
|
392
|
+
timestamp_ms: import("typed-binary").Uint32Schema;
|
|
393
|
+
fsm_state: import("typed-binary").ByteSchema;
|
|
394
|
+
active_propellant: import("typed-binary").ByteSchema;
|
|
395
|
+
load_cell_fault_mask: import("typed-binary").Uint16Schema;
|
|
396
|
+
total_vehicle_kg: import("typed-binary").Float32Schema;
|
|
397
|
+
total_filled_kg: import("typed-binary").Float32Schema;
|
|
398
|
+
active_fill_delta_kg: import("typed-binary").Float32Schema;
|
|
399
|
+
propellant_filled_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
400
|
+
raw_load_cell_kg: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
|
|
401
|
+
raw_load_cell_faults: import("typed-binary").ArraySchema<import("typed-binary").Uint16Schema>;
|
|
402
|
+
}>;
|
|
403
|
+
enums: {
|
|
404
|
+
fsm_state: {
|
|
405
|
+
readonly Safe: 0;
|
|
406
|
+
readonly FuelFill: 1;
|
|
407
|
+
readonly PostFuelFill: 2;
|
|
408
|
+
readonly RecoveryFill: 3;
|
|
409
|
+
readonly PostRecoveryFill: 4;
|
|
410
|
+
readonly N2Fill: 5;
|
|
411
|
+
readonly PostN2Fill: 6;
|
|
412
|
+
readonly OxFill: 7;
|
|
413
|
+
readonly PostOxFill: 8;
|
|
414
|
+
readonly QDDisconnect: 9;
|
|
415
|
+
readonly Hold: 10;
|
|
416
|
+
};
|
|
417
|
+
active_propellant: {
|
|
418
|
+
readonly Fuel: 0;
|
|
419
|
+
readonly N2Recovery: 1;
|
|
420
|
+
readonly N2Propulsion: 2;
|
|
421
|
+
readonly Ox: 3;
|
|
422
|
+
readonly Count: 4;
|
|
423
|
+
readonly None: -1;
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
};
|
|
361
427
|
};
|
|
362
428
|
export default spec;
|
|
363
429
|
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 08:17:27. 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,16 @@ 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
|
+
PostFuelFill: 2,
|
|
67
|
+
RecoveryFill: 3,
|
|
68
|
+
PostRecoveryFill: 4,
|
|
69
|
+
N2Fill: 5,
|
|
70
|
+
PostN2Fill: 6,
|
|
71
|
+
OxFill: 7,
|
|
72
|
+
PostOxFill: 8,
|
|
73
|
+
QDDisconnect: 9,
|
|
74
|
+
Hold: 10,
|
|
73
75
|
};
|
|
74
76
|
export const Event = {
|
|
75
77
|
Boot: 0,
|
|
@@ -127,6 +129,14 @@ export const sensors_load_cell_Id = {
|
|
|
127
129
|
LoadCell2: 2,
|
|
128
130
|
Count: 3,
|
|
129
131
|
};
|
|
132
|
+
export const PropellantMassIndex = {
|
|
133
|
+
Fuel: 0,
|
|
134
|
+
N2Recovery: 1,
|
|
135
|
+
N2Propulsion: 2,
|
|
136
|
+
Ox: 3,
|
|
137
|
+
Count: 4,
|
|
138
|
+
None: -1,
|
|
139
|
+
};
|
|
130
140
|
export const HeartBeatTelemetry = bin.object({
|
|
131
141
|
message: bin.arrayOf(bin.i8, 16), // char[16]
|
|
132
142
|
status_flags: bin.u8, // unsigned char
|
|
@@ -187,6 +197,18 @@ export const LoadCellPacket = bin.object({
|
|
|
187
197
|
load_cell_id: bin.u8, // sensors::load_cell::Id
|
|
188
198
|
data: sensors_load_cell_LoadCellBatch, // sensors::load_cell::LoadCellBatch
|
|
189
199
|
});
|
|
200
|
+
export const PropellantMassPacket = bin.object({
|
|
201
|
+
timestamp_ms: bin.u32, // unsigned int
|
|
202
|
+
fsm_state: bin.u8, // StateId
|
|
203
|
+
active_propellant: bin.u8, // PropellantMassIndex
|
|
204
|
+
load_cell_fault_mask: bin.u16, // unsigned short
|
|
205
|
+
total_vehicle_kg: bin.f32, // float
|
|
206
|
+
total_filled_kg: bin.f32, // float
|
|
207
|
+
active_fill_delta_kg: bin.f32, // float
|
|
208
|
+
propellant_filled_kg: bin.arrayOf(bin.f32, 4), // float[4]
|
|
209
|
+
raw_load_cell_kg: bin.arrayOf(bin.f32, 3), // float[3]
|
|
210
|
+
raw_load_cell_faults: bin.arrayOf(bin.u16, 3), // unsigned short[3]
|
|
211
|
+
});
|
|
190
212
|
export const spec = {
|
|
191
213
|
HeartBeatTelemetry: {
|
|
192
214
|
port: 57045,
|
|
@@ -247,5 +269,13 @@ export const spec = {
|
|
|
247
269
|
data: {},
|
|
248
270
|
},
|
|
249
271
|
},
|
|
272
|
+
PropellantMassPacket: {
|
|
273
|
+
port: 5048,
|
|
274
|
+
schema: PropellantMassPacket,
|
|
275
|
+
enums: {
|
|
276
|
+
fsm_state: StateId,
|
|
277
|
+
active_propellant: PropellantMassIndex,
|
|
278
|
+
},
|
|
279
|
+
},
|
|
250
280
|
};
|
|
251
281
|
export default spec;
|
|
@@ -310,19 +310,107 @@
|
|
|
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
|
+
"PostFuelFill": 2,
|
|
406
|
+
"RecoveryFill": 3,
|
|
407
|
+
"PostRecoveryFill": 4,
|
|
408
|
+
"N2Fill": 5,
|
|
409
|
+
"PostN2Fill": 6,
|
|
410
|
+
"OxFill": 7,
|
|
411
|
+
"PostOxFill": 8,
|
|
412
|
+
"QDDisconnect": 9,
|
|
413
|
+
"Hold": 10
|
|
326
414
|
},
|
|
327
415
|
"Event": {
|
|
328
416
|
"Boot": 0,
|
|
@@ -379,6 +467,14 @@
|
|
|
379
467
|
"LoadCell1": 1,
|
|
380
468
|
"LoadCell2": 2,
|
|
381
469
|
"Count": 3
|
|
470
|
+
},
|
|
471
|
+
"PropellantMassIndex": {
|
|
472
|
+
"Fuel": 0,
|
|
473
|
+
"N2Recovery": 1,
|
|
474
|
+
"N2Propulsion": 2,
|
|
475
|
+
"Ox": 3,
|
|
476
|
+
"Count": 4,
|
|
477
|
+
"None": -1
|
|
382
478
|
}
|
|
383
479
|
}
|
|
384
480
|
}
|
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;
|