SEDSnet 4.0.0

A memory safe, no_std-capable networking stack with routing, discovery, reliability, and Rust/C/Python bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Rust Examples

Build with the features you need, for example:

- `cargo run --features timesync --bin timesync_example`
- `cargo run --features compression --bin reliable_example`

These examples are standalone source files; wire them into your own binary target
or copy the snippets as needed.

Additional example files in this folder:

- `load_balancing_example.rs`: weighted split and failover route selection.
- `typed_routing_example.rs`: route one packet type through two dedicated sides without load balancing.
- `relay_example.rs`: basic relay side wiring.
- `multinode_sim_example.rs`: multi-node simulation.
- `managed_variables_e2e_example.rs`: managed-variable resync plus E2E router/type policy.