fossekall-interface 0.1.153 → 0.1.154
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-07-18
|
|
2
|
+
// This file was generated by FRICC on 2026-07-18 23:18:52. 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;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import bin, { Measurer, Schema } from 'typed-binary';
|
|
2
|
-
// This file was generated by FRICC on 2026-07-18
|
|
2
|
+
// This file was generated by FRICC on 2026-07-18 23:18:52. 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;
|
|
@@ -65,6 +65,10 @@ export declare const FsmCommands_StatusPayload: import("typed-binary").ObjectSch
|
|
|
65
65
|
reserved: import("typed-binary").ByteSchema;
|
|
66
66
|
}>;
|
|
67
67
|
export type FsmCommands_StatusPayload = bin.Parsed<typeof FsmCommands_StatusPayload>;
|
|
68
|
+
export declare const LinkMonitorCommands_MarkSeenPayload: import("typed-binary").ObjectSchema<{
|
|
69
|
+
payload: import("typed-binary").ByteSchema;
|
|
70
|
+
}>;
|
|
71
|
+
export type LinkMonitorCommands_MarkSeenPayload = bin.Parsed<typeof LinkMonitorCommands_MarkSeenPayload>;
|
|
68
72
|
export declare const ServoCommands_OpenCloseServoPayload: import("typed-binary").ObjectSchema<{
|
|
69
73
|
servo_id: import("typed-binary").ByteSchema;
|
|
70
74
|
open_close: import("typed-binary").ByteSchema;
|
|
@@ -145,6 +149,13 @@ export declare const spec: {
|
|
|
145
149
|
}>;
|
|
146
150
|
enums: {};
|
|
147
151
|
};
|
|
152
|
+
LinkMonitorCommands_MarkSeenPayload: {
|
|
153
|
+
id: number;
|
|
154
|
+
schema: import("typed-binary").ObjectSchema<{
|
|
155
|
+
payload: import("typed-binary").ByteSchema;
|
|
156
|
+
}>;
|
|
157
|
+
enums: {};
|
|
158
|
+
};
|
|
148
159
|
ServoCommands_OpenCloseServoPayload: {
|
|
149
160
|
id: number;
|
|
150
161
|
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-
|
|
2
|
+
// This file was generated by FRICC on 2026-07-19 14:09:32. 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;
|
|
@@ -115,6 +115,9 @@ export const FsmCommands_AbortPayload = bin.object({
|
|
|
115
115
|
export const FsmCommands_StatusPayload = bin.object({
|
|
116
116
|
reserved: bin.u8, // unsigned char
|
|
117
117
|
});
|
|
118
|
+
export const LinkMonitorCommands_MarkSeenPayload = bin.object({
|
|
119
|
+
payload: bin.u8, // unsigned char
|
|
120
|
+
});
|
|
118
121
|
export const ServoCommands_OpenCloseServoPayload = bin.object({
|
|
119
122
|
servo_id: bin.u8, // actuators::servo::Id
|
|
120
123
|
open_close: bin.u8, // ServoCommands::OpenClose
|
|
@@ -160,6 +163,11 @@ export const spec = {
|
|
|
160
163
|
schema: FsmCommands_StatusPayload,
|
|
161
164
|
enums: {},
|
|
162
165
|
},
|
|
166
|
+
LinkMonitorCommands_MarkSeenPayload: {
|
|
167
|
+
id: 128,
|
|
168
|
+
schema: LinkMonitorCommands_MarkSeenPayload,
|
|
169
|
+
enums: {},
|
|
170
|
+
},
|
|
163
171
|
ServoCommands_OpenCloseServoPayload: {
|
|
164
172
|
id: 48,
|
|
165
173
|
schema: ServoCommands_OpenCloseServoPayload,
|
|
@@ -57,6 +57,20 @@
|
|
|
57
57
|
],
|
|
58
58
|
"format_string": "<B"
|
|
59
59
|
},
|
|
60
|
+
"LinkMonitorCommands::MarkSeenPayload": {
|
|
61
|
+
"id": 128,
|
|
62
|
+
"kind": "struct",
|
|
63
|
+
"type": "LinkMonitorCommands::MarkSeenPayload",
|
|
64
|
+
"fields": [
|
|
65
|
+
{
|
|
66
|
+
"name": "payload",
|
|
67
|
+
"kind": "primitive",
|
|
68
|
+
"type": "unsigned char",
|
|
69
|
+
"format_string": "<B"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"format_string": "<B"
|
|
73
|
+
},
|
|
60
74
|
"ServoCommands::OpenCloseServoPayload": {
|
|
61
75
|
"id": 48,
|
|
62
76
|
"kind": "struct",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import bin, { Measurer, Schema } from 'typed-binary';
|
|
2
|
-
// This file was generated by FRICC on 2026-07-
|
|
2
|
+
// This file was generated by FRICC on 2026-07-19 14:09:35. 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;
|