You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: book/src/tutorial/104-sdk.md
+50
Original file line number
Diff line number
Diff line change
@@ -256,3 +256,53 @@ $ cargo run --release
256
256
Current state: '{"b":0,"g":0,"r":0}'
257
257
Updated state: '{"b":255,"g":255,"r":255}'
258
258
```
259
+
260
+
### With Shared types
261
+
262
+
In order to share types, we'll need to have a crate that can be included by both the firmware device,
263
+
as well as our host application.
264
+
265
+
The ICD for the simulators supported by poststation are available [on GitHub](https://github.com/OneVariable/poststation-util/tree/main/crates/poststation-sim-icd),
266
+
and published as `poststation-sim-icd`. We can go ahead and add that to our example project:
267
+
268
+
```sh
269
+
$ cargo add poststation-sim-icd
270
+
Updating crates.io index
271
+
Adding poststation-sim-icd v0.1.0 to dependencies
272
+
...
273
+
```
274
+
275
+
This gives us access to the types we need.
276
+
277
+
Now we can access the same endpoints as above, but without having to deal with JSON types:
278
+
279
+
```rust
280
+
// Import endpoint names and types from the ICD crate
0 commit comments