fossekall-interface 0.1.127 → 0.1.130
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 +46 -59
- package/dist/generated/ecu/commands.js +38 -44
- package/dist/generated/ecu/commands.json +27 -33
- package/dist/generated/ecu/telemetry.d.ts +77 -161
- package/dist/generated/ecu/telemetry.js +49 -90
- package/dist/generated/ecu/telemetry.json +50 -138
- package/dist/generated/fs/commands.d.ts +221 -0
- package/dist/generated/fs/commands.js +189 -0
- package/dist/generated/fs/commands.json +212 -0
- package/dist/generated/fs/index.d.ts +4 -0
- package/dist/generated/fs/index.js +4 -0
- package/dist/generated/fs/telemetry.d.ts +361 -0
- package/dist/generated/fs/telemetry.js +250 -0
- package/dist/generated/fs/telemetry.json +383 -0
- package/dist/generated/index.d.ts +1 -0
- package/dist/generated/index.js +1 -0
- package/package.json +1 -1
|
@@ -11,26 +11,25 @@ declare class Float64Schema extends Schema<number> {
|
|
|
11
11
|
write(output: ISerialOutput, value: number): void;
|
|
12
12
|
measure(_: number | typeof MaxValue, measurer?: IMeasurer): IMeasurer;
|
|
13
13
|
}
|
|
14
|
-
export declare const
|
|
14
|
+
export declare const actuators_bldc_Id: {
|
|
15
15
|
readonly Fuel: 0;
|
|
16
16
|
readonly Ox: 1;
|
|
17
17
|
readonly Count: 2;
|
|
18
18
|
};
|
|
19
|
-
export type
|
|
19
|
+
export type actuators_bldc_Id = (typeof actuators_bldc_Id)[keyof typeof actuators_bldc_Id];
|
|
20
20
|
export declare const StateId: {
|
|
21
21
|
readonly Safe: 0;
|
|
22
22
|
readonly N2Fill: 1;
|
|
23
23
|
readonly PostN2Fill: 2;
|
|
24
24
|
readonly OxFill: 3;
|
|
25
25
|
readonly PostOxFill: 4;
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
28
|
-
readonly
|
|
29
|
-
readonly
|
|
30
|
-
readonly
|
|
31
|
-
readonly
|
|
32
|
-
readonly
|
|
33
|
-
readonly Hold: 12;
|
|
26
|
+
readonly Pressurized: 5;
|
|
27
|
+
readonly Armed: 6;
|
|
28
|
+
readonly Burn: 7;
|
|
29
|
+
readonly Shutdown: 8;
|
|
30
|
+
readonly PostShutdown: 9;
|
|
31
|
+
readonly Purge: 10;
|
|
32
|
+
readonly Hold: 11;
|
|
34
33
|
};
|
|
35
34
|
export type StateId = (typeof StateId)[keyof typeof StateId];
|
|
36
35
|
export declare const Event: {
|
|
@@ -53,7 +52,7 @@ export declare const fsm_AbortReason: {
|
|
|
53
52
|
readonly ChamberUnderpressure: 4;
|
|
54
53
|
};
|
|
55
54
|
export type fsm_AbortReason = (typeof fsm_AbortReason)[keyof typeof fsm_AbortReason];
|
|
56
|
-
export declare const
|
|
55
|
+
export declare const sensors_pressure_Id: {
|
|
57
56
|
readonly N2Tank: 0;
|
|
58
57
|
readonly OxTank: 1;
|
|
59
58
|
readonly OxInjector: 2;
|
|
@@ -61,63 +60,50 @@ export declare const node_pressure_sensor_Id: {
|
|
|
61
60
|
readonly FuelInjector: 4;
|
|
62
61
|
readonly FuelInlet: 5;
|
|
63
62
|
readonly Chamber: 6;
|
|
64
|
-
readonly
|
|
65
|
-
readonly N2_300: 8;
|
|
66
|
-
readonly Count: 9;
|
|
63
|
+
readonly Count: 7;
|
|
67
64
|
};
|
|
68
|
-
export type
|
|
69
|
-
export declare const
|
|
65
|
+
export type sensors_pressure_Id = (typeof sensors_pressure_Id)[keyof typeof sensors_pressure_Id];
|
|
66
|
+
export declare const actuators_servo_Id: {
|
|
70
67
|
readonly MainFuel: 0;
|
|
71
68
|
readonly MainOx: 1;
|
|
72
69
|
readonly OxFill: 2;
|
|
73
70
|
readonly OxBoiloff: 3;
|
|
74
|
-
readonly
|
|
71
|
+
readonly OxPrechill: 4;
|
|
75
72
|
readonly Purge: 5;
|
|
76
73
|
readonly Count: 6;
|
|
77
74
|
};
|
|
78
|
-
export type
|
|
79
|
-
export declare const actuators_servo_ServoMode: {
|
|
80
|
-
readonly kUnknown: 0;
|
|
81
|
-
readonly kPosition: 1;
|
|
82
|
-
readonly kCalibrate: 2;
|
|
83
|
-
};
|
|
84
|
-
export type actuators_servo_ServoMode = (typeof actuators_servo_ServoMode)[keyof typeof actuators_servo_ServoMode];
|
|
75
|
+
export type actuators_servo_Id = (typeof actuators_servo_Id)[keyof typeof actuators_servo_Id];
|
|
85
76
|
export declare const actuators_servo_PowerState: {
|
|
86
|
-
readonly
|
|
87
|
-
readonly
|
|
88
|
-
readonly
|
|
89
|
-
readonly
|
|
77
|
+
readonly Unknown: 0;
|
|
78
|
+
readonly Off: 1;
|
|
79
|
+
readonly Booting: 2;
|
|
80
|
+
readonly On: 3;
|
|
90
81
|
};
|
|
91
82
|
export type actuators_servo_PowerState = (typeof actuators_servo_PowerState)[keyof typeof actuators_servo_PowerState];
|
|
92
|
-
export declare const
|
|
83
|
+
export declare const actuators_solenoid_Id: {
|
|
93
84
|
readonly FuelVent: 0;
|
|
94
85
|
readonly OxVent: 1;
|
|
95
86
|
readonly N2Fill: 2;
|
|
96
|
-
readonly
|
|
97
|
-
readonly N2_300_Supply: 4;
|
|
98
|
-
readonly N2_300_Hose_Bleed: 5;
|
|
99
|
-
readonly QD_1: 6;
|
|
100
|
-
readonly QD_2: 7;
|
|
101
|
-
readonly Count: 8;
|
|
87
|
+
readonly Count: 3;
|
|
102
88
|
};
|
|
103
|
-
export type
|
|
89
|
+
export type actuators_solenoid_Id = (typeof actuators_solenoid_Id)[keyof typeof actuators_solenoid_Id];
|
|
104
90
|
export declare const actuators_solenoid_PowerState: {
|
|
105
|
-
readonly
|
|
106
|
-
readonly
|
|
107
|
-
readonly
|
|
91
|
+
readonly Unknown: 0;
|
|
92
|
+
readonly Off: 1;
|
|
93
|
+
readonly On: 2;
|
|
108
94
|
};
|
|
109
95
|
export type actuators_solenoid_PowerState = (typeof actuators_solenoid_PowerState)[keyof typeof actuators_solenoid_PowerState];
|
|
110
96
|
export declare const actuators_solenoid_Opening: {
|
|
111
|
-
readonly
|
|
112
|
-
readonly
|
|
113
|
-
readonly
|
|
97
|
+
readonly Unknown: 0;
|
|
98
|
+
readonly Closed: 1;
|
|
99
|
+
readonly Open: 2;
|
|
114
100
|
};
|
|
115
101
|
export type actuators_solenoid_Opening = (typeof actuators_solenoid_Opening)[keyof typeof actuators_solenoid_Opening];
|
|
116
|
-
export declare const
|
|
102
|
+
export declare const regulator_Id: {
|
|
117
103
|
readonly OxBoiloff: 0;
|
|
118
104
|
readonly Count: 1;
|
|
119
105
|
};
|
|
120
|
-
export type
|
|
106
|
+
export type regulator_Id = (typeof regulator_Id)[keyof typeof regulator_Id];
|
|
121
107
|
export declare const proto_can_thermocouple_Id: {
|
|
122
108
|
readonly OxTankBottom: 0;
|
|
123
109
|
readonly OxTankTop: 1;
|
|
@@ -130,13 +116,6 @@ export declare const proto_can_thermocouple_Id: {
|
|
|
130
116
|
readonly Count: 8;
|
|
131
117
|
};
|
|
132
118
|
export type proto_can_thermocouple_Id = (typeof proto_can_thermocouple_Id)[keyof typeof proto_can_thermocouple_Id];
|
|
133
|
-
export declare const node_load_cell_Id: {
|
|
134
|
-
readonly LoadCell1: 0;
|
|
135
|
-
readonly LoadCell2: 1;
|
|
136
|
-
readonly LoadCell3: 2;
|
|
137
|
-
readonly Count: 3;
|
|
138
|
-
};
|
|
139
|
-
export type node_load_cell_Id = (typeof node_load_cell_Id)[keyof typeof node_load_cell_Id];
|
|
140
119
|
export declare const HeartBeatTelemetry: import("typed-binary").ObjectSchema<{
|
|
141
120
|
message: import("typed-binary").ArraySchema<import("typed-binary").Int8Schema>;
|
|
142
121
|
status_flags: import("typed-binary").ByteSchema;
|
|
@@ -192,22 +171,20 @@ export declare const FsmStatusPacket: import("typed-binary").ObjectSchema<{
|
|
|
192
171
|
}>;
|
|
193
172
|
export type FsmStatusPacket = bin.Parsed<typeof FsmStatusPacket>;
|
|
194
173
|
export declare const sensors_pressure_PressureBatch: import("typed-binary").ObjectSchema<{
|
|
195
|
-
|
|
196
|
-
dt_us: import("typed-binary").
|
|
174
|
+
t0_us: UInt64Schema;
|
|
175
|
+
dt_us: import("typed-binary").Uint32Schema;
|
|
197
176
|
count: import("typed-binary").ByteSchema;
|
|
198
177
|
seq: import("typed-binary").ByteSchema;
|
|
199
|
-
overrun: import("typed-binary").BoolSchema;
|
|
200
178
|
samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
|
|
201
179
|
}>;
|
|
202
180
|
export type sensors_pressure_PressureBatch = bin.Parsed<typeof sensors_pressure_PressureBatch>;
|
|
203
181
|
export declare const PressureSensorPacket: import("typed-binary").ObjectSchema<{
|
|
204
182
|
sensor_id: import("typed-binary").ByteSchema;
|
|
205
183
|
data: import("typed-binary").ObjectSchema<{
|
|
206
|
-
|
|
207
|
-
dt_us: import("typed-binary").
|
|
184
|
+
t0_us: UInt64Schema;
|
|
185
|
+
dt_us: import("typed-binary").Uint32Schema;
|
|
208
186
|
count: import("typed-binary").ByteSchema;
|
|
209
187
|
seq: import("typed-binary").ByteSchema;
|
|
210
|
-
overrun: import("typed-binary").BoolSchema;
|
|
211
188
|
samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
|
|
212
189
|
}>;
|
|
213
190
|
}>;
|
|
@@ -217,7 +194,6 @@ export declare const actuators_servo_ServoStatus: import("typed-binary").ObjectS
|
|
|
217
194
|
target_angle_deg: import("typed-binary").Float32Schema;
|
|
218
195
|
measured_angle_deg: import("typed-binary").Float32Schema;
|
|
219
196
|
current_ma: import("typed-binary").Float32Schema;
|
|
220
|
-
mode: import("typed-binary").ByteSchema;
|
|
221
197
|
power_state: import("typed-binary").ByteSchema;
|
|
222
198
|
}>;
|
|
223
199
|
export type actuators_servo_ServoStatus = bin.Parsed<typeof actuators_servo_ServoStatus>;
|
|
@@ -229,7 +205,6 @@ export declare const ServoStatusPacket: import("typed-binary").ObjectSchema<{
|
|
|
229
205
|
target_angle_deg: import("typed-binary").Float32Schema;
|
|
230
206
|
measured_angle_deg: import("typed-binary").Float32Schema;
|
|
231
207
|
current_ma: import("typed-binary").Float32Schema;
|
|
232
|
-
mode: import("typed-binary").ByteSchema;
|
|
233
208
|
power_state: import("typed-binary").ByteSchema;
|
|
234
209
|
}>;
|
|
235
210
|
}>;
|
|
@@ -237,6 +212,7 @@ export type ServoStatusPacket = bin.Parsed<typeof ServoStatusPacket>;
|
|
|
237
212
|
export declare const actuators_solenoid_SolenoidStatus: import("typed-binary").ObjectSchema<{
|
|
238
213
|
power_state: import("typed-binary").ByteSchema;
|
|
239
214
|
opening: import("typed-binary").ByteSchema;
|
|
215
|
+
current_ma: import("typed-binary").Float32Schema;
|
|
240
216
|
}>;
|
|
241
217
|
export type actuators_solenoid_SolenoidStatus = bin.Parsed<typeof actuators_solenoid_SolenoidStatus>;
|
|
242
218
|
export declare const SolenoidStatusPacket: import("typed-binary").ObjectSchema<{
|
|
@@ -245,6 +221,7 @@ export declare const SolenoidStatusPacket: import("typed-binary").ObjectSchema<{
|
|
|
245
221
|
status: import("typed-binary").ObjectSchema<{
|
|
246
222
|
power_state: import("typed-binary").ByteSchema;
|
|
247
223
|
opening: import("typed-binary").ByteSchema;
|
|
224
|
+
current_ma: import("typed-binary").Float32Schema;
|
|
248
225
|
}>;
|
|
249
226
|
}>;
|
|
250
227
|
export type SolenoidStatusPacket = bin.Parsed<typeof SolenoidStatusPacket>;
|
|
@@ -306,27 +283,6 @@ export declare const ThermocouplePacket: import("typed-binary").ObjectSchema<{
|
|
|
306
283
|
}>;
|
|
307
284
|
}>;
|
|
308
285
|
export type ThermocouplePacket = bin.Parsed<typeof ThermocouplePacket>;
|
|
309
|
-
export declare const sensors_loadcell_LoadCellBatch: import("typed-binary").ObjectSchema<{
|
|
310
|
-
t0_ms: import("typed-binary").Uint32Schema;
|
|
311
|
-
dt_us: import("typed-binary").Uint16Schema;
|
|
312
|
-
count: import("typed-binary").ByteSchema;
|
|
313
|
-
seq: import("typed-binary").ByteSchema;
|
|
314
|
-
overrun: import("typed-binary").BoolSchema;
|
|
315
|
-
samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
|
|
316
|
-
}>;
|
|
317
|
-
export type sensors_loadcell_LoadCellBatch = bin.Parsed<typeof sensors_loadcell_LoadCellBatch>;
|
|
318
|
-
export declare const LoadCellPacket: import("typed-binary").ObjectSchema<{
|
|
319
|
-
loadcell_id: import("typed-binary").ByteSchema;
|
|
320
|
-
data: import("typed-binary").ObjectSchema<{
|
|
321
|
-
t0_ms: import("typed-binary").Uint32Schema;
|
|
322
|
-
dt_us: import("typed-binary").Uint16Schema;
|
|
323
|
-
count: import("typed-binary").ByteSchema;
|
|
324
|
-
seq: import("typed-binary").ByteSchema;
|
|
325
|
-
overrun: import("typed-binary").BoolSchema;
|
|
326
|
-
samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
|
|
327
|
-
}>;
|
|
328
|
-
}>;
|
|
329
|
-
export type LoadCellPacket = bin.Parsed<typeof LoadCellPacket>;
|
|
330
286
|
export declare const actuators_bldc_PidGains: import("typed-binary").ObjectSchema<{
|
|
331
287
|
p: Float64Schema;
|
|
332
288
|
i: Float64Schema;
|
|
@@ -452,14 +408,13 @@ export declare const spec: {
|
|
|
452
408
|
readonly PostN2Fill: 2;
|
|
453
409
|
readonly OxFill: 3;
|
|
454
410
|
readonly PostOxFill: 4;
|
|
455
|
-
readonly
|
|
456
|
-
readonly
|
|
457
|
-
readonly
|
|
458
|
-
readonly
|
|
459
|
-
readonly
|
|
460
|
-
readonly
|
|
461
|
-
readonly
|
|
462
|
-
readonly Hold: 12;
|
|
411
|
+
readonly Pressurized: 5;
|
|
412
|
+
readonly Armed: 6;
|
|
413
|
+
readonly Burn: 7;
|
|
414
|
+
readonly Shutdown: 8;
|
|
415
|
+
readonly PostShutdown: 9;
|
|
416
|
+
readonly Purge: 10;
|
|
417
|
+
readonly Hold: 11;
|
|
463
418
|
};
|
|
464
419
|
telemetry: {};
|
|
465
420
|
};
|
|
@@ -485,14 +440,13 @@ export declare const spec: {
|
|
|
485
440
|
readonly PostN2Fill: 2;
|
|
486
441
|
readonly OxFill: 3;
|
|
487
442
|
readonly PostOxFill: 4;
|
|
488
|
-
readonly
|
|
489
|
-
readonly
|
|
490
|
-
readonly
|
|
491
|
-
readonly
|
|
492
|
-
readonly
|
|
493
|
-
readonly
|
|
494
|
-
readonly
|
|
495
|
-
readonly Hold: 12;
|
|
443
|
+
readonly Pressurized: 5;
|
|
444
|
+
readonly Armed: 6;
|
|
445
|
+
readonly Burn: 7;
|
|
446
|
+
readonly Shutdown: 8;
|
|
447
|
+
readonly PostShutdown: 9;
|
|
448
|
+
readonly Purge: 10;
|
|
449
|
+
readonly Hold: 11;
|
|
496
450
|
};
|
|
497
451
|
previous_state: {
|
|
498
452
|
readonly Safe: 0;
|
|
@@ -500,14 +454,13 @@ export declare const spec: {
|
|
|
500
454
|
readonly PostN2Fill: 2;
|
|
501
455
|
readonly OxFill: 3;
|
|
502
456
|
readonly PostOxFill: 4;
|
|
503
|
-
readonly
|
|
504
|
-
readonly
|
|
505
|
-
readonly
|
|
506
|
-
readonly
|
|
507
|
-
readonly
|
|
508
|
-
readonly
|
|
509
|
-
readonly
|
|
510
|
-
readonly Hold: 12;
|
|
457
|
+
readonly Pressurized: 5;
|
|
458
|
+
readonly Armed: 6;
|
|
459
|
+
readonly Burn: 7;
|
|
460
|
+
readonly Shutdown: 8;
|
|
461
|
+
readonly PostShutdown: 9;
|
|
462
|
+
readonly Purge: 10;
|
|
463
|
+
readonly Hold: 11;
|
|
511
464
|
};
|
|
512
465
|
last_event: {
|
|
513
466
|
readonly Boot: 0;
|
|
@@ -533,14 +486,14 @@ export declare const spec: {
|
|
|
533
486
|
PressureSensorPacket: {
|
|
534
487
|
port: number;
|
|
535
488
|
fragment: string;
|
|
489
|
+
packed: null;
|
|
536
490
|
schema: import("typed-binary").ObjectSchema<{
|
|
537
491
|
sensor_id: import("typed-binary").ByteSchema;
|
|
538
492
|
data: import("typed-binary").ObjectSchema<{
|
|
539
|
-
|
|
540
|
-
dt_us: import("typed-binary").
|
|
493
|
+
t0_us: UInt64Schema;
|
|
494
|
+
dt_us: import("typed-binary").Uint32Schema;
|
|
541
495
|
count: import("typed-binary").ByteSchema;
|
|
542
496
|
seq: import("typed-binary").ByteSchema;
|
|
543
|
-
overrun: import("typed-binary").BoolSchema;
|
|
544
497
|
samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
|
|
545
498
|
}>;
|
|
546
499
|
}>;
|
|
@@ -553,9 +506,7 @@ export declare const spec: {
|
|
|
553
506
|
readonly FuelInjector: 4;
|
|
554
507
|
readonly FuelInlet: 5;
|
|
555
508
|
readonly Chamber: 6;
|
|
556
|
-
readonly
|
|
557
|
-
readonly N2_300: 8;
|
|
558
|
-
readonly Count: 9;
|
|
509
|
+
readonly Count: 7;
|
|
559
510
|
};
|
|
560
511
|
data: {};
|
|
561
512
|
};
|
|
@@ -571,7 +522,6 @@ export declare const spec: {
|
|
|
571
522
|
target_angle_deg: import("typed-binary").Float32Schema;
|
|
572
523
|
measured_angle_deg: import("typed-binary").Float32Schema;
|
|
573
524
|
current_ma: import("typed-binary").Float32Schema;
|
|
574
|
-
mode: import("typed-binary").ByteSchema;
|
|
575
525
|
power_state: import("typed-binary").ByteSchema;
|
|
576
526
|
}>;
|
|
577
527
|
}>;
|
|
@@ -581,21 +531,16 @@ export declare const spec: {
|
|
|
581
531
|
readonly MainOx: 1;
|
|
582
532
|
readonly OxFill: 2;
|
|
583
533
|
readonly OxBoiloff: 3;
|
|
584
|
-
readonly
|
|
534
|
+
readonly OxPrechill: 4;
|
|
585
535
|
readonly Purge: 5;
|
|
586
536
|
readonly Count: 6;
|
|
587
537
|
};
|
|
588
538
|
status: {
|
|
589
|
-
mode: {
|
|
590
|
-
readonly kUnknown: 0;
|
|
591
|
-
readonly kPosition: 1;
|
|
592
|
-
readonly kCalibrate: 2;
|
|
593
|
-
};
|
|
594
539
|
power_state: {
|
|
595
|
-
readonly
|
|
596
|
-
readonly
|
|
597
|
-
readonly
|
|
598
|
-
readonly
|
|
540
|
+
readonly Unknown: 0;
|
|
541
|
+
readonly Off: 1;
|
|
542
|
+
readonly Booting: 2;
|
|
543
|
+
readonly On: 3;
|
|
599
544
|
};
|
|
600
545
|
};
|
|
601
546
|
};
|
|
@@ -609,6 +554,7 @@ export declare const spec: {
|
|
|
609
554
|
status: import("typed-binary").ObjectSchema<{
|
|
610
555
|
power_state: import("typed-binary").ByteSchema;
|
|
611
556
|
opening: import("typed-binary").ByteSchema;
|
|
557
|
+
current_ma: import("typed-binary").Float32Schema;
|
|
612
558
|
}>;
|
|
613
559
|
}>;
|
|
614
560
|
enums: {
|
|
@@ -616,23 +562,18 @@ export declare const spec: {
|
|
|
616
562
|
readonly FuelVent: 0;
|
|
617
563
|
readonly OxVent: 1;
|
|
618
564
|
readonly N2Fill: 2;
|
|
619
|
-
readonly
|
|
620
|
-
readonly N2_300_Supply: 4;
|
|
621
|
-
readonly N2_300_Hose_Bleed: 5;
|
|
622
|
-
readonly QD_1: 6;
|
|
623
|
-
readonly QD_2: 7;
|
|
624
|
-
readonly Count: 8;
|
|
565
|
+
readonly Count: 3;
|
|
625
566
|
};
|
|
626
567
|
status: {
|
|
627
568
|
power_state: {
|
|
628
|
-
readonly
|
|
629
|
-
readonly
|
|
630
|
-
readonly
|
|
569
|
+
readonly Unknown: 0;
|
|
570
|
+
readonly Off: 1;
|
|
571
|
+
readonly On: 2;
|
|
631
572
|
};
|
|
632
573
|
opening: {
|
|
633
|
-
readonly
|
|
634
|
-
readonly
|
|
635
|
-
readonly
|
|
574
|
+
readonly Unknown: 0;
|
|
575
|
+
readonly Closed: 1;
|
|
576
|
+
readonly Open: 2;
|
|
636
577
|
};
|
|
637
578
|
};
|
|
638
579
|
};
|
|
@@ -709,30 +650,6 @@ export declare const spec: {
|
|
|
709
650
|
};
|
|
710
651
|
};
|
|
711
652
|
};
|
|
712
|
-
LoadCellPacket: {
|
|
713
|
-
port: number;
|
|
714
|
-
fragment: string;
|
|
715
|
-
schema: import("typed-binary").ObjectSchema<{
|
|
716
|
-
loadcell_id: import("typed-binary").ByteSchema;
|
|
717
|
-
data: import("typed-binary").ObjectSchema<{
|
|
718
|
-
t0_ms: import("typed-binary").Uint32Schema;
|
|
719
|
-
dt_us: import("typed-binary").Uint16Schema;
|
|
720
|
-
count: import("typed-binary").ByteSchema;
|
|
721
|
-
seq: import("typed-binary").ByteSchema;
|
|
722
|
-
overrun: import("typed-binary").BoolSchema;
|
|
723
|
-
samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
|
|
724
|
-
}>;
|
|
725
|
-
}>;
|
|
726
|
-
enums: {
|
|
727
|
-
loadcell_id: {
|
|
728
|
-
readonly LoadCell1: 0;
|
|
729
|
-
readonly LoadCell2: 1;
|
|
730
|
-
readonly LoadCell3: 2;
|
|
731
|
-
readonly Count: 3;
|
|
732
|
-
};
|
|
733
|
-
data: {};
|
|
734
|
-
};
|
|
735
|
-
};
|
|
736
653
|
BldcConfigTelmetryPacket: {
|
|
737
654
|
port: number;
|
|
738
655
|
fragment: string;
|
|
@@ -773,10 +690,9 @@ export declare const spec: {
|
|
|
773
690
|
}>;
|
|
774
691
|
enums: {
|
|
775
692
|
bldc_id: {
|
|
776
|
-
readonly
|
|
777
|
-
readonly
|
|
778
|
-
readonly
|
|
779
|
-
readonly Count: 3;
|
|
693
|
+
readonly Fuel: 0;
|
|
694
|
+
readonly Ox: 1;
|
|
695
|
+
readonly Count: 2;
|
|
780
696
|
};
|
|
781
697
|
config: {
|
|
782
698
|
pressurize_pid_gains: {};
|