fossekall-interface 0.1.80 → 0.1.82

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-08 21:24:33. Do not edit manually!
2
+ // This file was generated by FRICC on 2026-04-09 07:00:54. 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;
@@ -151,11 +151,11 @@ export declare const actuators_bldc_BldcTelemetry: import("typed-binary").Object
151
151
  u_ff: import("typed-binary").Float32Schema;
152
152
  u_set: import("typed-binary").Float32Schema;
153
153
  u_total: import("typed-binary").Float32Schema;
154
- reserved: import("typed-binary").Float32Schema;
154
+ hysteresis_offset: import("typed-binary").Float32Schema;
155
155
  upstream_pressure: Float64Schema;
156
156
  downstream_pressure: Float64Schema;
157
157
  servo_encoder_value: Float64Schema;
158
- calibrated: import("typed-binary").ByteSchema;
158
+ status_flags: import("typed-binary").ByteSchema;
159
159
  }>;
160
160
  export type actuators_bldc_BldcTelemetry = bin.Parsed<typeof actuators_bldc_BldcTelemetry>;
161
161
  export declare const BldcTelemetryPacket: import("typed-binary").ObjectSchema<{
@@ -173,11 +173,11 @@ export declare const BldcTelemetryPacket: import("typed-binary").ObjectSchema<{
173
173
  u_ff: import("typed-binary").Float32Schema;
174
174
  u_set: import("typed-binary").Float32Schema;
175
175
  u_total: import("typed-binary").Float32Schema;
176
- reserved: import("typed-binary").Float32Schema;
176
+ hysteresis_offset: import("typed-binary").Float32Schema;
177
177
  upstream_pressure: Float64Schema;
178
178
  downstream_pressure: Float64Schema;
179
179
  servo_encoder_value: Float64Schema;
180
- calibrated: import("typed-binary").ByteSchema;
180
+ status_flags: import("typed-binary").ByteSchema;
181
181
  }>;
182
182
  }>;
183
183
  export type BldcTelemetryPacket = bin.Parsed<typeof BldcTelemetryPacket>;
@@ -442,11 +442,11 @@ export declare const spec: {
442
442
  u_ff: import("typed-binary").Float32Schema;
443
443
  u_set: import("typed-binary").Float32Schema;
444
444
  u_total: import("typed-binary").Float32Schema;
445
- reserved: import("typed-binary").Float32Schema;
445
+ hysteresis_offset: import("typed-binary").Float32Schema;
446
446
  upstream_pressure: Float64Schema;
447
447
  downstream_pressure: Float64Schema;
448
448
  servo_encoder_value: Float64Schema;
449
- calibrated: import("typed-binary").ByteSchema;
449
+ status_flags: import("typed-binary").ByteSchema;
450
450
  }>;
451
451
  }>;
452
452
  enums: {
@@ -1,5 +1,5 @@
1
1
  import bin, { Measurer, Schema } from 'typed-binary';
2
- // This file was generated by FRICC on 2026-04-08 21:24:36. Do not edit manually!
2
+ // This file was generated by FRICC on 2026-04-09 07:00:57. 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;
@@ -185,11 +185,11 @@ export const actuators_bldc_BldcTelemetry = bin.object({
185
185
  u_ff: bin.f32, // float
186
186
  u_set: bin.f32, // float
187
187
  u_total: bin.f32, // float
188
- reserved: bin.f32, // float
188
+ hysteresis_offset: bin.f32, // float
189
189
  upstream_pressure: f64, // double
190
190
  downstream_pressure: f64, // double
191
191
  servo_encoder_value: f64, // double
192
- calibrated: bin.u8, // unsigned char
192
+ status_flags: bin.u8, // unsigned char
193
193
  });
194
194
  export const BldcTelemetryPacket = bin.object({
195
195
  bldc_id: bin.u8, // node::bldc::Id
@@ -117,7 +117,7 @@
117
117
  "format_string": "<f"
118
118
  },
119
119
  {
120
- "name": "reserved",
120
+ "name": "hysteresis_offset",
121
121
  "kind": "primitive",
122
122
  "type": "float",
123
123
  "format_string": "<f"
@@ -141,7 +141,7 @@
141
141
  "format_string": "<d"
142
142
  },
143
143
  {
144
- "name": "calibrated",
144
+ "name": "status_flags",
145
145
  "kind": "primitive",
146
146
  "type": "unsigned char",
147
147
  "format_string": "<B"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fossekall-interface",
3
- "version": "0.1.80",
3
+ "version": "0.1.82",
4
4
  "description": "API contracts between client and server (rocket and GUI)",
5
5
  "license": "ISC",
6
6
  "author": "Propulse",