fossekall-interface 0.1.55 → 0.1.57
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-02
|
|
2
|
+
// This file was generated by FRICC on 2026-04-02 08:17:02. 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;
|
|
@@ -121,6 +121,7 @@ export declare const node_load_cell_Id: {
|
|
|
121
121
|
export type node_load_cell_Id = (typeof node_load_cell_Id)[keyof typeof node_load_cell_Id];
|
|
122
122
|
export declare const HeartBeatTelemetry: import("typed-binary").ObjectSchema<{
|
|
123
123
|
message: import("typed-binary").ArraySchema<import("typed-binary").Int8Schema>;
|
|
124
|
+
manual_mode: import("typed-binary").BoolSchema;
|
|
124
125
|
}>;
|
|
125
126
|
export type HeartBeatTelemetry = bin.Parsed<typeof HeartBeatTelemetry>;
|
|
126
127
|
export declare const actuators_bldc_BldcTelemetry: import("typed-binary").ObjectSchema<{
|
|
@@ -324,6 +325,7 @@ export declare const spec: {
|
|
|
324
325
|
port: number;
|
|
325
326
|
schema: import("typed-binary").ObjectSchema<{
|
|
326
327
|
message: import("typed-binary").ArraySchema<import("typed-binary").Int8Schema>;
|
|
328
|
+
manual_mode: import("typed-binary").BoolSchema;
|
|
327
329
|
}>;
|
|
328
330
|
enums: {};
|
|
329
331
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import bin, { Measurer, Schema } from 'typed-binary';
|
|
2
|
-
// This file was generated by FRICC on 2026-04-02
|
|
2
|
+
// This file was generated by FRICC on 2026-04-02 08:16:59. 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;
|
|
@@ -163,6 +163,7 @@ export const node_load_cell_Id = {
|
|
|
163
163
|
};
|
|
164
164
|
export const HeartBeatTelemetry = bin.object({
|
|
165
165
|
message: bin.arrayOf(bin.i8, 16), // char[16]
|
|
166
|
+
manual_mode: bin.bool, // bool
|
|
166
167
|
});
|
|
167
168
|
export const actuators_bldc_BldcTelemetry = bin.object({
|
|
168
169
|
valve_position: bin.f32, // float
|
|
@@ -202,7 +203,7 @@ export const sensors_pressure_PressureBatch = bin.object({
|
|
|
202
203
|
count: bin.u8, // unsigned char
|
|
203
204
|
seq: bin.u8, // unsigned char
|
|
204
205
|
overrun: bin.bool, // bool
|
|
205
|
-
samples: bin.arrayOf(bin.i16,
|
|
206
|
+
samples: bin.arrayOf(bin.i16, 5), // short[5]
|
|
206
207
|
});
|
|
207
208
|
export const PressureSensorPacket = bin.object({
|
|
208
209
|
sensor_id: bin.u8, // node::pressure_sensor::Id
|