2023-11-30 09:26:21 -05:00
|
|
|
---
|
|
|
|
course: Bare Metal
|
|
|
|
session: Morning
|
|
|
|
---
|
2023-12-31 00:15:07 +01:00
|
|
|
|
2023-02-01 15:57:05 +00:00
|
|
|
# Welcome to Bare Metal Rust
|
2023-02-10 04:06:07 +00:00
|
|
|
|
2023-12-31 00:15:07 +01:00
|
|
|
This is a standalone one-day course about bare-metal Rust, aimed at people who
|
|
|
|
are familiar with the basics of Rust (perhaps from completing the Comprehensive
|
|
|
|
Rust course), and ideally also have some experience with bare-metal programming
|
|
|
|
in some other language such as C.
|
2023-03-08 17:45:08 +00:00
|
|
|
|
2023-12-31 00:15:07 +01:00
|
|
|
Today we will talk about 'bare-metal' Rust: running Rust code without an OS
|
|
|
|
underneath us. This will be divided into several parts:
|
2023-02-10 04:06:07 +00:00
|
|
|
|
2023-03-24 17:51:10 +00:00
|
|
|
- What is `no_std` Rust?
|
|
|
|
- Writing firmware for microcontrollers.
|
|
|
|
- Writing bootloader / kernel code for application processors.
|
|
|
|
- Some useful crates for bare-metal Rust development.
|
2023-02-15 04:52:47 +00:00
|
|
|
|
2023-12-31 00:15:07 +01:00
|
|
|
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](https://tech.microbit.org/hardware/) based on the Nordic
|
2024-05-28 12:52:49 +01:00
|
|
|
nRF52833 microcontroller with some LEDs and buttons, an I2C-connected
|
2023-12-31 00:15:07 +01:00
|
|
|
accelerometer and compass, and an on-board SWD debugger.
|
2023-02-17 00:46:42 +00:00
|
|
|
|
2023-03-17 16:39:58 +00:00
|
|
|
To get started, install some tools we'll need later. On gLinux or Debian:
|
2023-12-31 00:15:07 +01:00
|
|
|
|
2023-10-11 11:32:12 +02:00
|
|
|
<!-- mdbook-xgettext: skip -->
|
2023-12-31 00:15:07 +01:00
|
|
|
|
2023-02-15 04:52:47 +00:00
|
|
|
```bash
|
2023-04-21 19:29:18 +01:00
|
|
|
sudo apt install gcc-aarch64-linux-gnu gdb-multiarch libudev-dev picocom pkg-config qemu-system-arm
|
2023-02-15 04:52:47 +00:00
|
|
|
rustup update
|
2023-03-21 17:24:49 +00:00
|
|
|
rustup target add aarch64-unknown-none thumbv7em-none-eabihf
|
2023-03-24 17:51:10 +00:00
|
|
|
rustup component add llvm-tools-preview
|
2024-06-25 09:57:41 +01:00
|
|
|
cargo install cargo-binutils
|
|
|
|
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh
|
2023-03-20 14:09:00 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
And give users in the `plugdev` group access to the micro:bit programmer:
|
2023-12-31 00:15:07 +01:00
|
|
|
|
2023-10-11 11:32:12 +02:00
|
|
|
<!-- mdbook-xgettext: skip -->
|
2023-12-31 00:15:07 +01:00
|
|
|
|
2023-03-20 14:09:00 +00:00
|
|
|
```bash
|
2024-07-12 12:27:26 +01:00
|
|
|
echo 'SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0d28", MODE="0660", GROUP="logindev", TAG+="uaccess"' |\
|
2023-03-20 14:09:00 +00:00
|
|
|
sudo tee /etc/udev/rules.d/50-microbit.rules
|
2023-03-03 18:02:25 +00:00
|
|
|
sudo udevadm control --reload-rules
|
2023-02-15 04:52:47 +00:00
|
|
|
```
|
2023-03-03 18:02:46 +00:00
|
|
|
|
2023-03-17 16:39:58 +00:00
|
|
|
On MacOS:
|
2023-12-31 00:15:07 +01:00
|
|
|
|
2023-10-11 11:32:12 +02:00
|
|
|
<!-- mdbook-xgettext: skip -->
|
2023-12-31 00:15:07 +01:00
|
|
|
|
2023-03-17 16:39:58 +00:00
|
|
|
```bash
|
|
|
|
xcode-select --install
|
2023-03-21 17:24:49 +00:00
|
|
|
brew install gdb picocom qemu
|
2023-03-23 14:43:48 +00:00
|
|
|
brew install --cask gcc-aarch64-embedded
|
2023-03-17 16:39:58 +00:00
|
|
|
rustup update
|
2023-03-21 17:24:49 +00:00
|
|
|
rustup target add aarch64-unknown-none thumbv7em-none-eabihf
|
2023-03-24 17:51:10 +00:00
|
|
|
rustup component add llvm-tools-preview
|
2024-06-25 09:57:41 +01:00
|
|
|
cargo install cargo-binutils
|
|
|
|
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh
|
2023-03-17 16:39:58 +00:00
|
|
|
```
|