Rust Embassy example tutorial with STM32 microcontroller (YouTube) In this video, I walk through the initial setup for working with Rust Embassy , a modern embedded framework that brings async/await multitasking, networking capabilities, and support for multiple comp... 17 Nov 2025
Using Deref in Rust to simplify access to Newtype When you wrap a primitive (or any type) inside a tuple struct – e.g.: precode class="language-rust" struct Foo(u64); /code/pre – you normally access the inner u64 as foo.0. But this isn’t very ergonom... 17 Nov 2025
Rust and Embassy: a perfect combination for embedded systems Rust & Embassy: A Great Match for Embedded Systems Embedded development often means working under tight constraints—limited memory, strict timing, power usage, and reliability demands. Rust has emerge... 29 Oct 2025