Skip to content

Commit 53d5435

Browse files
committed
More work on docs
1 parent 4ed81bb commit 53d5435

File tree

3 files changed

+53
-1
lines changed

3 files changed

+53
-1
lines changed

book/src/tutorial/104-sdk.md

+50
Original file line numberDiff line numberDiff line change
@@ -256,3 +256,53 @@ $ cargo run --release
256256
Current state: '{"b":0,"g":0,"r":0}'
257257
Updated state: '{"b":255,"g":255,"r":255}'
258258
```
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
281+
use poststation_sim_icd::simulator::{GetStatusLed, Rgb8, SetStatusLed};
282+
283+
let response = client.proxy_endpoint::<GetStatusLed>(serial, 10, &()).await;
284+
let Ok(color) = response else {
285+
println!("First Request failed!");
286+
return;
287+
};
288+
println!("initial status: {color:?}");
289+
let new = Rgb8 { r: !color.r, g: !color.g, b: !color.b };
290+
291+
// Now set a new color
292+
let response = client.proxy_endpoint::<SetStatusLed>(serial, 11, &new).await;
293+
let Ok(()) = response else {
294+
println!("Second Request failed!");
295+
return;
296+
};
297+
298+
// And verify the result
299+
let response = client.proxy_endpoint::<GetStatusLed>(serial, 12, &()).await;
300+
let Ok(new_color) = response else {
301+
println!("Third Request failed!");
302+
return;
303+
};
304+
305+
println!("New status: {new_color:?}");
306+
assert_eq!(new, new_color);
307+
println!("Success!");
308+
```

book/src/tutorial/200-rp2040.md

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# Using an RP2040
2+
3+
Coming soon! Check out the `templates` and `examples` folder of <https://github.com/OneVariable/poststation-util>!

tools/poststation-sdk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poststation-sdk"
3-
# This version of the SDK tested with poststation v0.14.0
3+
# This version of the SDK tested with poststation v0.15.0
44
version = "0.4.1"
55
edition = "2021"
66
authors = ["James Munns <[email protected]>"]

0 commit comments

Comments
 (0)