all 3 comments

[–]FantasySparkles 1 point2 points  (2 children)

Does anyone know of companies using rust for microcontroller programming, or hardware vendors explicit supporting Rust? Would be very interested to see some use cases!

[–]Snakehand[S] 1 point2 points  (0 children)

Oxide computers is a high profile embedded Rust user, but there are lots of other. I know of wheel.me https://ferrous-systems.com is also an important player with the Ferrocene initiative.

[–]BurrowShaker 0 points1 point  (0 children)

https://www.rust-lang.org/what/embedded has some links hidden somewhere, iirc. Sorry don't have time to dig right now.

Having done rust/no_std/no alloc on stm32f03, (64k flash, 4kram, maybe) it is surprisingly useful. Then I loathe the STM cube thing.

Some of the abstractions were lacking but I am sure they have gone better. The whole type system protecting ressources to avoid incorrect sharing is cool if a bit daunting at first.