fossekall-interface 0.1.68 → 0.1.69

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.
@@ -1,5 +1,5 @@
1
1
  import bin, { Measurer, Schema } from 'typed-binary';
2
- // This file was generated by FRICC on 2026-04-04 19:51:49. Do not edit manually!
2
+ // This file was generated by FRICC on 2026-04-04 23:49:29. 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;
@@ -142,7 +142,7 @@ export declare const actuators_bldc_BldcTelemetry: import("typed-binary").Object
142
142
  u_ff: import("typed-binary").Float32Schema;
143
143
  u_set: import("typed-binary").Float32Schema;
144
144
  u_total: import("typed-binary").Float32Schema;
145
- position_raw: import("typed-binary").Float32Schema;
145
+ reserved: import("typed-binary").Float32Schema;
146
146
  upstream_pressure: Float64Schema;
147
147
  downstream_pressure: Float64Schema;
148
148
  servo_encoder_value: Float64Schema;
@@ -164,7 +164,7 @@ export declare const BldcTelemetryPacket: import("typed-binary").ObjectSchema<{
164
164
  u_ff: import("typed-binary").Float32Schema;
165
165
  u_set: import("typed-binary").Float32Schema;
166
166
  u_total: import("typed-binary").Float32Schema;
167
- position_raw: import("typed-binary").Float32Schema;
167
+ reserved: import("typed-binary").Float32Schema;
168
168
  upstream_pressure: Float64Schema;
169
169
  downstream_pressure: Float64Schema;
170
170
  servo_encoder_value: Float64Schema;
@@ -317,7 +317,7 @@ export declare const sensors_loadcell_LoadCellBatch: import("typed-binary").Obje
317
317
  count: import("typed-binary").ByteSchema;
318
318
  seq: import("typed-binary").ByteSchema;
319
319
  overrun: import("typed-binary").BoolSchema;
320
- samples: import("typed-binary").ArraySchema<import("typed-binary").Int32Schema>;
320
+ samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
321
321
  }>;
322
322
  export type sensors_loadcell_LoadCellBatch = bin.Parsed<typeof sensors_loadcell_LoadCellBatch>;
323
323
  export declare const LoadCellPacket: import("typed-binary").ObjectSchema<{
@@ -328,7 +328,7 @@ export declare const LoadCellPacket: import("typed-binary").ObjectSchema<{
328
328
  count: import("typed-binary").ByteSchema;
329
329
  seq: import("typed-binary").ByteSchema;
330
330
  overrun: import("typed-binary").BoolSchema;
331
- samples: import("typed-binary").ArraySchema<import("typed-binary").Int32Schema>;
331
+ samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
332
332
  }>;
333
333
  }>;
334
334
  export type LoadCellPacket = bin.Parsed<typeof LoadCellPacket>;
@@ -359,7 +359,7 @@ export declare const spec: {
359
359
  u_ff: import("typed-binary").Float32Schema;
360
360
  u_set: import("typed-binary").Float32Schema;
361
361
  u_total: import("typed-binary").Float32Schema;
362
- position_raw: import("typed-binary").Float32Schema;
362
+ reserved: import("typed-binary").Float32Schema;
363
363
  upstream_pressure: Float64Schema;
364
364
  downstream_pressure: Float64Schema;
365
365
  servo_encoder_value: Float64Schema;
@@ -622,7 +622,7 @@ export declare const spec: {
622
622
  count: import("typed-binary").ByteSchema;
623
623
  seq: import("typed-binary").ByteSchema;
624
624
  overrun: import("typed-binary").BoolSchema;
625
- samples: import("typed-binary").ArraySchema<import("typed-binary").Int32Schema>;
625
+ samples: import("typed-binary").ArraySchema<import("typed-binary").Int16Schema>;
626
626
  }>;
627
627
  }>;
628
628
  enums: {
@@ -1,5 +1,5 @@
1
1
  import bin, { Measurer, Schema } from 'typed-binary';
2
- // This file was generated by FRICC on 2026-04-04 19:51:52. Do not edit manually!
2
+ // This file was generated by FRICC on 2026-04-04 23:49:33. 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;
@@ -177,7 +177,7 @@ export const actuators_bldc_BldcTelemetry = bin.object({
177
177
  u_ff: bin.f32, // float
178
178
  u_set: bin.f32, // float
179
179
  u_total: bin.f32, // float
180
- position_raw: bin.f32, // float
180
+ reserved: bin.f32, // float
181
181
  upstream_pressure: f64, // double
182
182
  downstream_pressure: f64, // double
183
183
  servo_encoder_value: f64, // double
@@ -272,7 +272,7 @@ export const sensors_loadcell_LoadCellBatch = bin.object({
272
272
  count: bin.u8, // unsigned char
273
273
  seq: bin.u8, // unsigned char
274
274
  overrun: bin.bool, // bool
275
- samples: bin.arrayOf(bin.i32, 20), // int[20]
275
+ samples: bin.arrayOf(bin.i16, 20), // short[20]
276
276
  });
277
277
  export const LoadCellPacket = bin.object({
278
278
  loadcell_id: bin.u8, // node::load_cell::Id
@@ -115,7 +115,7 @@
115
115
  "format_string": "<f"
116
116
  },
117
117
  {
118
- "name": "position_raw",
118
+ "name": "reserved",
119
119
  "kind": "primitive",
120
120
  "type": "float",
121
121
  "format_string": "<f"
@@ -583,20 +583,20 @@
583
583
  {
584
584
  "name": "samples",
585
585
  "kind": "array",
586
- "type": "int[20]",
586
+ "type": "short[20]",
587
587
  "element": {
588
588
  "kind": "primitive",
589
- "type": "int",
590
- "format_string": "<i"
589
+ "type": "short",
590
+ "format_string": "<h"
591
591
  },
592
592
  "count": 20,
593
- "format_string": "<iiiiiiiiiiiiiiiiiiii"
593
+ "format_string": "<hhhhhhhhhhhhhhhhhhhh"
594
594
  }
595
595
  ],
596
- "format_string": "<IHBB?iiiiiiiiiiiiiiiiiiii"
596
+ "format_string": "<IHBB?hhhhhhhhhhhhhhhhhhhh"
597
597
  }
598
598
  ],
599
- "format_string": "<BIHBB?iiiiiiiiiiiiiiiiiiii"
599
+ "format_string": "<BIHBB?hhhhhhhhhhhhhhhhhhhh"
600
600
  }
601
601
  },
602
602
  "enums": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fossekall-interface",
3
- "version": "0.1.68",
3
+ "version": "0.1.69",
4
4
  "description": "API contracts between client and server (rocket and GUI)",
5
5
  "license": "ISC",
6
6
  "author": "Propulse",