Tutorial de ejemplo de Rust Embassy con microcontrolador STM32 (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
Usar Deref en Rust para simplificar el acceso a 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 y Embassy: una combinación perfecta para sistemas integrados 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