We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Clone microbit-rs fork providing Rust code and examples:
git clone https://github.com/alan-turing-institute/microbit-rs
rustup target add thumbv7em-none-eabihf # for micro:bit V2 rustup target add thumbv6m-none-eabi # for micro:bit V1
cargo install probe-run flip-link
With a connected micro:bit V2, the following example should run from the root of the microbit-rs repo:
microbit-rs
cargo run --release --manifest-path ./examples/display-text-rtic/Cargo.toml --features v2 --target thumbv7em-none-eabihf
For a micro:bit V1:
cargo run --release --manifest-path ./examples/display-text-rtic/Cargo.toml --features v1 --target thumbv6m-none-eabi