1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-05 16:10:31 +02:00

Mention micro:bit on welcome page.

This commit is contained in:
Andrew Walbran 2023-02-17 00:46:42 +00:00
parent 0fa73286b9
commit 005d6a5ed4

View File

@ -1,6 +1,6 @@
# Welcome to Bare Metal Rust
Today we will talk about `bare-metal` Rust: running Rust code without an OS underneath us. This will
Today we will talk about 'bare-metal' Rust: running Rust code without an OS underneath us. This will
be divided into several parts:
* What is `no_std` Rust?
@ -8,6 +8,9 @@ be divided into several parts:
* Writing bootloader / kernel code for application processors.
* Some useful crates for bare-metal Rust development.
For the microcontroller part of the course we will use the [BBC micro:bit](https://microbit.org/) v2
as an example. It's a development board based on the Nordic nRF51822 microcontroller.
To get started, install some tools we'll need later:
```bash