If you’ve worked on any projects using Rust and a Raspberry Pi I would be interested to hear your story.
Cross-compiling to Raspberry PI is easy, and works great. Compiling on a Raspberry PI is rather painful due to long compile times.
(I'm assuming crosscompiling then running on Linux, not bare-metal (but that also should be possible)) Not a big project, but I've run simple HTTP server on one. To be honest, with Rust it mostly just:
rustup target add arm-unknown-linux-musleabihf
cargo build --target arm-unknown-linux-musleabihf
You might need to adjust target, depending on which Raspberry Pi version you're using.
In my case, because I've fairly old one (RPi 1 B+), I had to additionally download gcc toolchain (for linking) from arm's website, as the one from distro didn't support armv6.
Operating System Development Tutorials in Rust on the Raspberry Pi
Programming a raspberry pi without linux
Announce: RusPiRo - a kernel the Rust way ;) - Raspberry Pi Forums
Stanford CS140e: Writing a Raspberry Pi OS in Rust
This looks awesome. Can we take it without any experience in rust?
More on reddit.com