Hey, is anyone (besides @chrysn ) looking into using Rust? I gave myself a new challenge. I want to learn Rust. And to start off with a real challenge I want to learn Rust in an embedded environment, with RIOT-OS.
@chrysn created riot-examples [1] which is, I think, a good starting point. However, not everything is working for me. It works for BOARD=stm32l476g-disco
but not for my SODAQ boards such as BOARD=sodaq-sara-sff
. Both use the same toolchain, but for any cortexm board the build fails with that it cannot find stdio.h
. I tried to understand what is happening (cargo build
is a beast), used strace
and more. Still I have no clue what is going on and why it fails to find stdio.h
in one case but not in the other.
Thus my question: who else has tried this?