1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-02 02:56:26 +02:00

Mention tools to install.

This commit is contained in:
Andrew Walbran 2023-02-15 04:52:47 +00:00
parent deff63f9a5
commit 95099e29a6

View File

@ -7,3 +7,12 @@ be divided into several parts:
* Writing firmware for microcontrollers.
* Writing bootloader / kernel code for application processors.
* Some useful crates for bare-metal Rust development.
To get started, install some tools we'll need later:
```bash
sudo apt install gdb-multiarch picocom
rustup update
rustup target add thumbv7em-none-eabihf
cargo install cargo-binutils cargo-embed
```