fossekall-interface 0.1.138 → 0.1.139

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.
@@ -227,6 +227,10 @@ export declare const ControlPolicyCommands_SetManualPolicyPayload: import("typed
227
227
  value: import("typed-binary").ByteSchema;
228
228
  }>;
229
229
  export type ControlPolicyCommands_SetManualPolicyPayload = bin.Parsed<typeof ControlPolicyCommands_SetManualPolicyPayload>;
230
+ export declare const LinkMonitorCommands_MarkSeenPayload: import("typed-binary").ObjectSchema<{
231
+ payload: import("typed-binary").ByteSchema;
232
+ }>;
233
+ export type LinkMonitorCommands_MarkSeenPayload = bin.Parsed<typeof LinkMonitorCommands_MarkSeenPayload>;
230
234
  export declare const RegulatorCommands_SetEnabledPayload: import("typed-binary").ObjectSchema<{
231
235
  regulator_id: import("typed-binary").ByteSchema;
232
236
  value: import("typed-binary").ByteSchema;
@@ -494,6 +498,13 @@ export declare const spec: {
494
498
  };
495
499
  };
496
500
  };
501
+ LinkMonitorCommands_MarkSeenPayload: {
502
+ id: number;
503
+ schema: import("typed-binary").ObjectSchema<{
504
+ payload: import("typed-binary").ByteSchema;
505
+ }>;
506
+ enums: {};
507
+ };
497
508
  RegulatorCommands_SetEnabledPayload: {
498
509
  id: number;
499
510
  schema: import("typed-binary").ObjectSchema<{
@@ -1,5 +1,5 @@
1
1
  import bin, { Measurer, Schema } from 'typed-binary';
2
- // This file was generated by FRICC on 2026-07-06 13:11:50. Do not edit manually!
2
+ // This file was generated by FRICC on 2026-07-08 20:01:08. 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;
@@ -202,6 +202,9 @@ export const SolenoidCommands_OpenCloseSolenoidPayload = bin.object({
202
202
  export const ControlPolicyCommands_SetManualPolicyPayload = bin.object({
203
203
  value: bin.u8, // ControlPolicyCommands::PolicyValue
204
204
  });
205
+ export const LinkMonitorCommands_MarkSeenPayload = bin.object({
206
+ payload: bin.u8, // unsigned char
207
+ });
205
208
  export const RegulatorCommands_SetEnabledPayload = bin.object({
206
209
  regulator_id: bin.u8, // regulator::Id
207
210
  value: bin.u8, // RegulatorCommands::RegulatorValue
@@ -310,6 +313,11 @@ export const spec = {
310
313
  value: ControlPolicyCommands_PolicyValue,
311
314
  },
312
315
  },
316
+ LinkMonitorCommands_MarkSeenPayload: {
317
+ id: 128,
318
+ schema: LinkMonitorCommands_MarkSeenPayload,
319
+ enums: {},
320
+ },
313
321
  RegulatorCommands_SetEnabledPayload: {
314
322
  id: 112,
315
323
  schema: RegulatorCommands_SetEnabledPayload,
@@ -419,6 +419,20 @@
419
419
  ],
420
420
  "format_string": "<B"
421
421
  },
422
+ "LinkMonitorCommands::MarkSeenPayload": {
423
+ "id": 128,
424
+ "kind": "struct",
425
+ "type": "LinkMonitorCommands::MarkSeenPayload",
426
+ "fields": [
427
+ {
428
+ "name": "payload",
429
+ "kind": "primitive",
430
+ "type": "unsigned char",
431
+ "format_string": "<B"
432
+ }
433
+ ],
434
+ "format_string": "<B"
435
+ },
422
436
  "RegulatorCommands::SetEnabledPayload": {
423
437
  "id": 112,
424
438
  "kind": "struct",
@@ -50,6 +50,7 @@ export declare const fsm_AbortReason: {
50
50
  readonly FuelTankOverpressure: 2;
51
51
  readonly OxTankOverpressure: 3;
52
52
  readonly ChamberUnderpressure: 4;
53
+ readonly ConnectionLost: 5;
53
54
  };
54
55
  export type fsm_AbortReason = (typeof fsm_AbortReason)[keyof typeof fsm_AbortReason];
55
56
  export declare const sensors_pressure_Id: {
@@ -63,6 +64,13 @@ export declare const sensors_pressure_Id: {
63
64
  readonly Count: 7;
64
65
  };
65
66
  export type sensors_pressure_Id = (typeof sensors_pressure_Id)[keyof typeof sensors_pressure_Id];
67
+ export declare const sensors_level_Id: {
68
+ readonly Main: 0;
69
+ readonly LiquidRef: 1;
70
+ readonly GasRef: 2;
71
+ readonly Count: 3;
72
+ };
73
+ export type sensors_level_Id = (typeof sensors_level_Id)[keyof typeof sensors_level_Id];
66
74
  export declare const actuators_servo_Id: {
67
75
  readonly MainFuel: 0;
68
76
  readonly MainOx: 1;
@@ -136,6 +144,7 @@ export type actuators_bldc_BldcTelemetry = bin.Parsed<typeof actuators_bldc_Bldc
136
144
  export declare const BldcTelemetryPacket: import("typed-binary").ObjectSchema<{
137
145
  bldc_id: import("typed-binary").ByteSchema;
138
146
  fsm_state: import("typed-binary").ByteSchema;
147
+ timestamp_ms: import("typed-binary").Uint32Schema;
139
148
  telemetry: import("typed-binary").ObjectSchema<{
140
149
  valve_position: import("typed-binary").Float32Schema;
141
150
  motor_position: import("typed-binary").Float32Schema;
@@ -189,16 +198,56 @@ export declare const PressureSensorPacket: import("typed-binary").ObjectSchema<{
189
198
  }>;
190
199
  }>;
191
200
  export type PressureSensorPacket = bin.Parsed<typeof PressureSensorPacket>;
201
+ export declare const sensors_capacitance_CapacitanceSample: import("typed-binary").ObjectSchema<{
202
+ offset_cpf: import("typed-binary").Int16Schema;
203
+ raw_cpf: import("typed-binary").Int16Schema;
204
+ adjusted_cpf: import("typed-binary").Int16Schema;
205
+ }>;
206
+ export type sensors_capacitance_CapacitanceSample = bin.Parsed<typeof sensors_capacitance_CapacitanceSample>;
207
+ export declare const sensors_capacitance_CapacitanceBatch: import("typed-binary").ObjectSchema<{
208
+ t0_us: UInt64Schema;
209
+ dt_us: import("typed-binary").Uint32Schema;
210
+ count: import("typed-binary").ByteSchema;
211
+ seq: import("typed-binary").ByteSchema;
212
+ samples: import("typed-binary").ArraySchema<import("typed-binary").ObjectSchema<{
213
+ offset_cpf: import("typed-binary").Int16Schema;
214
+ raw_cpf: import("typed-binary").Int16Schema;
215
+ adjusted_cpf: import("typed-binary").Int16Schema;
216
+ }>>;
217
+ }>;
218
+ export type sensors_capacitance_CapacitanceBatch = bin.Parsed<typeof sensors_capacitance_CapacitanceBatch>;
219
+ export declare const CapacitanceSensorPacket: import("typed-binary").ObjectSchema<{
220
+ sensor_id: import("typed-binary").ByteSchema;
221
+ data: import("typed-binary").ObjectSchema<{
222
+ t0_us: UInt64Schema;
223
+ dt_us: import("typed-binary").Uint32Schema;
224
+ count: import("typed-binary").ByteSchema;
225
+ seq: import("typed-binary").ByteSchema;
226
+ samples: import("typed-binary").ArraySchema<import("typed-binary").ObjectSchema<{
227
+ offset_cpf: import("typed-binary").Int16Schema;
228
+ raw_cpf: import("typed-binary").Int16Schema;
229
+ adjusted_cpf: import("typed-binary").Int16Schema;
230
+ }>>;
231
+ }>;
232
+ }>;
233
+ export type CapacitanceSensorPacket = bin.Parsed<typeof CapacitanceSensorPacket>;
234
+ export declare const sensors_capacitance_LevelBatch: import("typed-binary").ObjectSchema<{
235
+ t0_us: UInt64Schema;
236
+ dt_us: import("typed-binary").Uint32Schema;
237
+ count: import("typed-binary").ByteSchema;
238
+ seq: import("typed-binary").ByteSchema;
239
+ heights_m: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
240
+ }>;
241
+ export type sensors_capacitance_LevelBatch = bin.Parsed<typeof sensors_capacitance_LevelBatch>;
192
242
  export declare const LevelTelemetryPacket: import("typed-binary").ObjectSchema<{
193
243
  timestamp_ms: import("typed-binary").Uint32Schema;
194
- faults: import("typed-binary").Uint16Schema;
195
- height_m: import("typed-binary").Float32Schema;
196
- main_count: import("typed-binary").ByteSchema;
197
- gas_count: import("typed-binary").ByteSchema;
198
- liquid_count: import("typed-binary").ByteSchema;
199
- main_cpf: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
200
- gas_cpf: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
201
- liquid_cpf: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
244
+ data: import("typed-binary").ObjectSchema<{
245
+ t0_us: UInt64Schema;
246
+ dt_us: import("typed-binary").Uint32Schema;
247
+ count: import("typed-binary").ByteSchema;
248
+ seq: import("typed-binary").ByteSchema;
249
+ heights_m: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
250
+ }>;
202
251
  }>;
203
252
  export type LevelTelemetryPacket = bin.Parsed<typeof LevelTelemetryPacket>;
204
253
  export declare const actuators_servo_ServoStatus: import("typed-binary").ObjectSchema<{
@@ -396,6 +445,7 @@ export declare const spec: {
396
445
  schema: import("typed-binary").ObjectSchema<{
397
446
  bldc_id: import("typed-binary").ByteSchema;
398
447
  fsm_state: import("typed-binary").ByteSchema;
448
+ timestamp_ms: import("typed-binary").Uint32Schema;
399
449
  telemetry: import("typed-binary").ObjectSchema<{
400
450
  valve_position: import("typed-binary").Float32Schema;
401
451
  motor_position: import("typed-binary").Float32Schema;
@@ -491,6 +541,7 @@ export declare const spec: {
491
541
  readonly FuelTankOverpressure: 2;
492
542
  readonly OxTankOverpressure: 3;
493
543
  readonly ChamberUnderpressure: 4;
544
+ readonly ConnectionLost: 5;
494
545
  };
495
546
  };
496
547
  };
@@ -523,21 +574,50 @@ export declare const spec: {
523
574
  data: {};
524
575
  };
525
576
  };
577
+ CapacitanceSensorPacket: {
578
+ port: number;
579
+ fragment: string;
580
+ packed: null;
581
+ schema: import("typed-binary").ObjectSchema<{
582
+ sensor_id: import("typed-binary").ByteSchema;
583
+ data: import("typed-binary").ObjectSchema<{
584
+ t0_us: UInt64Schema;
585
+ dt_us: import("typed-binary").Uint32Schema;
586
+ count: import("typed-binary").ByteSchema;
587
+ seq: import("typed-binary").ByteSchema;
588
+ samples: import("typed-binary").ArraySchema<import("typed-binary").ObjectSchema<{
589
+ offset_cpf: import("typed-binary").Int16Schema;
590
+ raw_cpf: import("typed-binary").Int16Schema;
591
+ adjusted_cpf: import("typed-binary").Int16Schema;
592
+ }>>;
593
+ }>;
594
+ }>;
595
+ enums: {
596
+ sensor_id: {
597
+ readonly Main: 0;
598
+ readonly LiquidRef: 1;
599
+ readonly GasRef: 2;
600
+ readonly Count: 3;
601
+ };
602
+ data: {};
603
+ };
604
+ };
526
605
  LevelTelemetryPacket: {
527
606
  port: number;
528
607
  packed: null;
529
608
  schema: import("typed-binary").ObjectSchema<{
530
609
  timestamp_ms: import("typed-binary").Uint32Schema;
531
- faults: import("typed-binary").Uint16Schema;
532
- height_m: import("typed-binary").Float32Schema;
533
- main_count: import("typed-binary").ByteSchema;
534
- gas_count: import("typed-binary").ByteSchema;
535
- liquid_count: import("typed-binary").ByteSchema;
536
- main_cpf: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
537
- gas_cpf: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
538
- liquid_cpf: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
610
+ data: import("typed-binary").ObjectSchema<{
611
+ t0_us: UInt64Schema;
612
+ dt_us: import("typed-binary").Uint32Schema;
613
+ count: import("typed-binary").ByteSchema;
614
+ seq: import("typed-binary").ByteSchema;
615
+ heights_m: import("typed-binary").ArraySchema<import("typed-binary").Float32Schema>;
616
+ }>;
539
617
  }>;
540
- enums: {};
618
+ enums: {
619
+ data: {};
620
+ };
541
621
  };
542
622
  ServoStatusPacket: {
543
623
  port: number;
@@ -1,5 +1,5 @@
1
1
  import bin, { Measurer, Schema } from 'typed-binary';
2
- // This file was generated by FRICC on 2026-07-06 13:11:53. Do not edit manually!
2
+ // This file was generated by FRICC on 2026-07-08 20:01:11. 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;
@@ -96,6 +96,7 @@ export const fsm_AbortReason = {
96
96
  FuelTankOverpressure: 2,
97
97
  OxTankOverpressure: 3,
98
98
  ChamberUnderpressure: 4,
99
+ ConnectionLost: 5,
99
100
  };
100
101
  export const sensors_pressure_Id = {
101
102
  N2Tank: 0,
@@ -107,6 +108,12 @@ export const sensors_pressure_Id = {
107
108
  Chamber: 6,
108
109
  Count: 7,
109
110
  };
111
+ export const sensors_level_Id = {
112
+ Main: 0,
113
+ LiquidRef: 1,
114
+ GasRef: 2,
115
+ Count: 3,
116
+ };
110
117
  export const actuators_servo_Id = {
111
118
  MainFuel: 0,
112
119
  MainOx: 1,
@@ -171,6 +178,7 @@ export const actuators_bldc_BldcTelemetry = bin.object({
171
178
  export const BldcTelemetryPacket = bin.object({
172
179
  bldc_id: bin.u8, // actuators::bldc::Id
173
180
  fsm_state: bin.u8, // StateId
181
+ timestamp_ms: bin.u32, // unsigned int
174
182
  telemetry: actuators_bldc_BldcTelemetry, // actuators::bldc::BldcTelemetry
175
183
  });
176
184
  export const fsm_FsmStatus = bin.object({
@@ -196,16 +204,32 @@ export const PressureSensorPacket = bin.object({
196
204
  sensor_id: bin.u8, // sensors::pressure::Id
197
205
  data: sensors_pressure_PressureBatch, // sensors::pressure::PressureBatch
198
206
  });
207
+ export const sensors_capacitance_CapacitanceSample = bin.object({
208
+ offset_cpf: bin.i16, // short
209
+ raw_cpf: bin.i16, // short
210
+ adjusted_cpf: bin.i16, // short
211
+ });
212
+ export const sensors_capacitance_CapacitanceBatch = bin.object({
213
+ t0_us: u64, // unsigned long long
214
+ dt_us: bin.u32, // unsigned int
215
+ count: bin.u8, // unsigned char
216
+ seq: bin.u8, // unsigned char
217
+ samples: bin.arrayOf(sensors_capacitance_CapacitanceSample, 8), // sensors::capacitance::CapacitanceSample[8]
218
+ });
219
+ export const CapacitanceSensorPacket = bin.object({
220
+ sensor_id: bin.u8, // sensors::level::Id
221
+ data: sensors_capacitance_CapacitanceBatch, // sensors::capacitance::CapacitanceBatch
222
+ });
223
+ export const sensors_capacitance_LevelBatch = bin.object({
224
+ t0_us: u64, // unsigned long long
225
+ dt_us: bin.u32, // unsigned int
226
+ count: bin.u8, // unsigned char
227
+ seq: bin.u8, // unsigned char
228
+ heights_m: bin.arrayOf(bin.f32, 10), // float[10]
229
+ });
199
230
  export const LevelTelemetryPacket = bin.object({
200
231
  timestamp_ms: bin.u32, // unsigned int
201
- faults: bin.u16, // unsigned short
202
- height_m: bin.f32, // float
203
- main_count: bin.u8, // unsigned char
204
- gas_count: bin.u8, // unsigned char
205
- liquid_count: bin.u8, // unsigned char
206
- main_cpf: bin.arrayOf(bin.i16, 8), // short[8]
207
- gas_cpf: bin.arrayOf(bin.i16, 8), // short[8]
208
- liquid_cpf: bin.arrayOf(bin.i16, 8), // short[8]
232
+ data: sensors_capacitance_LevelBatch, // sensors::capacitance::LevelBatch
209
233
  });
210
234
  export const actuators_servo_ServoStatus = bin.object({
211
235
  commanded_angle_deg: bin.f32, // float
@@ -334,11 +358,23 @@ export const spec = {
334
358
  data: {},
335
359
  },
336
360
  },
361
+ CapacitanceSensorPacket: {
362
+ port: 5011,
363
+ fragment: "sensor_id",
364
+ packed: null,
365
+ schema: CapacitanceSensorPacket,
366
+ enums: {
367
+ sensor_id: sensors_level_Id,
368
+ data: {},
369
+ },
370
+ },
337
371
  LevelTelemetryPacket: {
338
372
  port: 5010,
339
373
  packed: null,
340
374
  schema: LevelTelemetryPacket,
341
- enums: {},
375
+ enums: {
376
+ data: {},
377
+ },
342
378
  },
343
379
  ServoStatusPacket: {
344
380
  port: 5003,
@@ -45,6 +45,12 @@
45
45
  "type": "StateId",
46
46
  "format_string": "<B"
47
47
  },
48
+ {
49
+ "name": "timestamp_ms",
50
+ "kind": "primitive",
51
+ "type": "unsigned int",
52
+ "format_string": "<I"
53
+ },
48
54
  {
49
55
  "name": "telemetry",
50
56
  "kind": "struct",
@@ -108,7 +114,7 @@
108
114
  "format_string": "<ffffffffB"
109
115
  }
110
116
  ],
111
- "format_string": "<BBffffffffB"
117
+ "format_string": "<BBIffffffffB"
112
118
  },
113
119
  "FsmStatusPacket": {
114
120
  "port": 5001,
@@ -229,6 +235,86 @@
229
235
  ],
230
236
  "format_string": "<BQIBBhhhhhhhhhhhhhhhhhhhh"
231
237
  },
238
+ "CapacitanceSensorPacket": {
239
+ "port": 5011,
240
+ "fragment": "sensor_id",
241
+ "packed": null,
242
+ "kind": "struct",
243
+ "type": "CapacitanceSensorPacket",
244
+ "fields": [
245
+ {
246
+ "name": "sensor_id",
247
+ "kind": "enum",
248
+ "type": "sensors::level::Id",
249
+ "format_string": "<B"
250
+ },
251
+ {
252
+ "name": "data",
253
+ "kind": "struct",
254
+ "type": "sensors::capacitance::CapacitanceBatch",
255
+ "fields": [
256
+ {
257
+ "name": "t0_us",
258
+ "kind": "primitive",
259
+ "type": "unsigned long long",
260
+ "format_string": "<Q"
261
+ },
262
+ {
263
+ "name": "dt_us",
264
+ "kind": "primitive",
265
+ "type": "unsigned int",
266
+ "format_string": "<I"
267
+ },
268
+ {
269
+ "name": "count",
270
+ "kind": "primitive",
271
+ "type": "unsigned char",
272
+ "format_string": "<B"
273
+ },
274
+ {
275
+ "name": "seq",
276
+ "kind": "primitive",
277
+ "type": "unsigned char",
278
+ "format_string": "<B"
279
+ },
280
+ {
281
+ "name": "samples",
282
+ "kind": "array",
283
+ "type": "sensors::capacitance::CapacitanceSample[8]",
284
+ "element": {
285
+ "kind": "struct",
286
+ "type": "sensors::capacitance::CapacitanceSample",
287
+ "fields": [
288
+ {
289
+ "name": "offset_cpf",
290
+ "kind": "primitive",
291
+ "type": "short",
292
+ "format_string": "<h"
293
+ },
294
+ {
295
+ "name": "raw_cpf",
296
+ "kind": "primitive",
297
+ "type": "short",
298
+ "format_string": "<h"
299
+ },
300
+ {
301
+ "name": "adjusted_cpf",
302
+ "kind": "primitive",
303
+ "type": "short",
304
+ "format_string": "<h"
305
+ }
306
+ ],
307
+ "format_string": "<hhh"
308
+ },
309
+ "count": 8,
310
+ "format_string": "<hhhhhhhhhhhhhhhhhhhhhhhh"
311
+ }
312
+ ],
313
+ "format_string": "<QIBBhhhhhhhhhhhhhhhhhhhhhhhh"
314
+ }
315
+ ],
316
+ "format_string": "<BQIBBhhhhhhhhhhhhhhhhhhhhhhhh"
317
+ },
232
318
  "LevelTelemetryPacket": {
233
319
  "port": 5010,
234
320
  "packed": null,
@@ -242,73 +328,51 @@
242
328
  "format_string": "<I"
243
329
  },
244
330
  {
245
- "name": "faults",
246
- "kind": "primitive",
247
- "type": "unsigned short",
248
- "format_string": "<H"
249
- },
250
- {
251
- "name": "height_m",
252
- "kind": "primitive",
253
- "type": "float",
254
- "format_string": "<f"
255
- },
256
- {
257
- "name": "main_count",
258
- "kind": "primitive",
259
- "type": "unsigned char",
260
- "format_string": "<B"
261
- },
262
- {
263
- "name": "gas_count",
264
- "kind": "primitive",
265
- "type": "unsigned char",
266
- "format_string": "<B"
267
- },
268
- {
269
- "name": "liquid_count",
270
- "kind": "primitive",
271
- "type": "unsigned char",
272
- "format_string": "<B"
273
- },
274
- {
275
- "name": "main_cpf",
276
- "kind": "array",
277
- "type": "short[8]",
278
- "element": {
279
- "kind": "primitive",
280
- "type": "short",
281
- "format_string": "<h"
282
- },
283
- "count": 8,
284
- "format_string": "<hhhhhhhh"
285
- },
286
- {
287
- "name": "gas_cpf",
288
- "kind": "array",
289
- "type": "short[8]",
290
- "element": {
291
- "kind": "primitive",
292
- "type": "short",
293
- "format_string": "<h"
294
- },
295
- "count": 8,
296
- "format_string": "<hhhhhhhh"
297
- },
298
- {
299
- "name": "liquid_cpf",
300
- "kind": "array",
301
- "type": "short[8]",
302
- "element": {
303
- "kind": "primitive",
304
- "type": "short",
305
- "format_string": "<h"
306
- },
307
- "count": 8,
308
- "format_string": "<hhhhhhhh"
331
+ "name": "data",
332
+ "kind": "struct",
333
+ "type": "sensors::capacitance::LevelBatch",
334
+ "fields": [
335
+ {
336
+ "name": "t0_us",
337
+ "kind": "primitive",
338
+ "type": "unsigned long long",
339
+ "format_string": "<Q"
340
+ },
341
+ {
342
+ "name": "dt_us",
343
+ "kind": "primitive",
344
+ "type": "unsigned int",
345
+ "format_string": "<I"
346
+ },
347
+ {
348
+ "name": "count",
349
+ "kind": "primitive",
350
+ "type": "unsigned char",
351
+ "format_string": "<B"
352
+ },
353
+ {
354
+ "name": "seq",
355
+ "kind": "primitive",
356
+ "type": "unsigned char",
357
+ "format_string": "<B"
358
+ },
359
+ {
360
+ "name": "heights_m",
361
+ "kind": "array",
362
+ "type": "float[10]",
363
+ "element": {
364
+ "kind": "primitive",
365
+ "type": "float",
366
+ "format_string": "<f"
367
+ },
368
+ "count": 10,
369
+ "format_string": "<ffffffffff"
370
+ }
371
+ ],
372
+ "format_string": "<QIBBffffffffff"
309
373
  }
310
374
  ],
311
- "format_string": "<IHfBBBhhhhhhhhhhhhhhhhhhhhhhhh"
375
+ "format_string": "<IQIBBffffffffff"
312
376
  },
313
377
  "ServoStatusPacket": {
314
378
  "port": 5003,
@@ -844,7 +908,8 @@
844
908
  "Manual": 1,
845
909
  "FuelTankOverpressure": 2,
846
910
  "OxTankOverpressure": 3,
847
- "ChamberUnderpressure": 4
911
+ "ChamberUnderpressure": 4,
912
+ "ConnectionLost": 5
848
913
  },
849
914
  "sensors::pressure::Id": {
850
915
  "N2Tank": 0,
@@ -856,6 +921,12 @@
856
921
  "Chamber": 6,
857
922
  "Count": 7
858
923
  },
924
+ "sensors::level::Id": {
925
+ "Main": 0,
926
+ "LiquidRef": 1,
927
+ "GasRef": 2,
928
+ "Count": 3
929
+ },
859
930
  "actuators::servo::Id": {
860
931
  "MainFuel": 0,
861
932
  "MainOx": 1,
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": 1,
3
+ "structs": {},
4
+ "enums": {}
5
+ }
@@ -1,2 +1,6 @@
1
+ export { default as commandsJson } from "./commands.json";
1
2
  export * as commands from "./commands";
3
+ export * as kalman from "./kalman";
4
+ export * as status from "./status";
5
+ export { default as telemetryJson } from "./telemetry.json";
2
6
  export * as telemetry from "./telemetry";
@@ -1,2 +1,6 @@
1
+ export { default as commandsJson } from "./commands.json";
1
2
  export * as commands from "./commands";
3
+ export * as kalman from "./kalman";
4
+ export * as status from "./status";
5
+ export { default as telemetryJson } from "./telemetry.json";
2
6
  export * as telemetry from "./telemetry";
@@ -0,0 +1,24 @@
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_KalmanData: import("typed-binary").ObjectSchema<{
9
+ altitude: Float64Schema;
10
+ veloicty: Float64Schema;
11
+ }>;
12
+ export type Telemetry_KalmanData = bin.Parsed<typeof Telemetry_KalmanData>;
13
+ export declare const spec: {
14
+ Telemetry_KalmanData: {
15
+ port: number;
16
+ schema: import("typed-binary").ObjectSchema<{
17
+ altitude: Float64Schema;
18
+ veloicty: Float64Schema;
19
+ }>;
20
+ enums: {};
21
+ };
22
+ };
23
+ export default spec;
24
+ export type Spec = typeof spec;