@chrysn That is excellent! Thanks for sharing this list! It does seem like there are a lot of crates out there for specific microcontrollers. I’m new to embedded development so I have a lot of things to learn and it looks like rust will be one of them eventually.
@derickflorian Ad "specific microcontrollers": The nice thing about the Rust embedded ecosystem is that there are conventions that help keep your code portable. Trait crates like embedded-hal or embedded-nal describe an interface that is implemented on may MCUs, and while not all of the application code will use only those, you'll only need to port the parts that don't.
#RustLang evangelism
@derickflorian Ad "specific microcontrollers": The nice thing about the Rust embedded ecosystem is that there are conventions that help keep your code portable. Trait crates like embedded-hal or embedded-nal describe an interface that is implemented on may MCUs, and while not all of the application code will use only those, you'll only need to port the parts that don't.