2022-09-08 01:22:35 +00:00
|
|
|
# Embassy RP Skeleton
|
2022-09-21 11:02:58 +00:00
|
|
|
The **Embassy RP Skeleton** repository is a project template intended as a starting point for developing your own
|
2022-09-22 08:15:33 +00:00
|
|
|
firmware for the [`rp2040`][1] based on the [`embassy`][2] asynchronous embedded development framework for [Rust][3].
|
2022-09-17 09:57:02 +00:00
|
|
|
|
2022-09-22 08:15:33 +00:00
|
|
|
It includes all of the [`knurling-rs`][4] tooling ([`defmt`][5], [`defmt-rtt`][5], [`panic-probe`][5], [`flip-link`][6],
|
|
|
|
[`probe-run`][7]) to enhance the embedded development process.
|
2022-09-17 09:57:02 +00:00
|
|
|
|
2022-09-22 08:15:33 +00:00
|
|
|
The default [`cargo`][8] runner is configured as [`probe-run`][7], so you can build, flash and run your firmware _with_
|
2022-09-22 08:37:18 +00:00
|
|
|
output from the device via a [`probe-rs`][9] compatible debug probe with the command:
|
2022-09-17 09:57:02 +00:00
|
|
|
|
|
|
|
```shell
|
2022-09-21 11:02:58 +00:00
|
|
|
$ cargo run
|
2022-09-17 09:57:02 +00:00
|
|
|
```
|
|
|
|
|
2022-09-22 08:37:18 +00:00
|
|
|
If you want to use a different runner with your debugger (e.g., [`cargo-embed`][10], [`probe-rs-debugger`][11], etc.) or
|
|
|
|
if you _aren't_ using a debugger and want the runner to flash the firmware via USB (e.g., [`elf2uf2-rs`][12],
|
|
|
|
[`picotool`][13], etc.) then see: [Alternative Runners][14]
|
2022-09-17 09:57:02 +00:00
|
|
|
|
|
|
|
## Table of Contents
|
|
|
|
1. [Requirements](#requirements)
|
|
|
|
2. [Setup](#setup)
|
2022-09-17 13:41:10 +00:00
|
|
|
1. [System Setup](#system-setup)
|
|
|
|
2. [Probe Setup](#probe-setup)
|
|
|
|
3. [Hardware Setup](#hardware-setup)
|
2022-09-17 09:57:02 +00:00
|
|
|
3. [Usage](#usage)
|
2022-09-21 11:02:58 +00:00
|
|
|
6. [Appendix](#appendix)
|
2022-09-17 09:57:02 +00:00
|
|
|
|
|
|
|
## Requirements
|
2022-09-17 13:32:30 +00:00
|
|
|
* Ubuntu
|
|
|
|
* Raspberry Pi Pico
|
2022-09-22 08:34:54 +00:00
|
|
|
* Debug Probe (*or* another Raspberry Pi Pico)
|
2022-09-22 08:37:18 +00:00
|
|
|
* Rust Toolchain ([`cargo`][8], [`rustup`][15])
|
2022-09-17 09:57:02 +00:00
|
|
|
|
|
|
|
## Setup
|
2022-09-17 13:32:30 +00:00
|
|
|
### System Setup
|
2022-09-22 08:37:18 +00:00
|
|
|
1. Install [Rust][3] and [`cargo`][8] using [`rustup`][15]
|
2022-09-17 13:32:30 +00:00
|
|
|
```shell
|
|
|
|
# Install `rustup` for Rust Toolchain
|
|
|
|
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
|
|
```
|
|
|
|
|
2022-09-22 08:15:33 +00:00
|
|
|
2. Install Cortex-M Target Toolchain Support for [`Rust`][3]
|
2022-09-17 13:32:30 +00:00
|
|
|
```shell
|
|
|
|
# Install `thumbv6m-none-eabi` Target for `rp2040`
|
|
|
|
$ rustup target add thumbv6m-none-eabi
|
|
|
|
```
|
|
|
|
|
2022-09-22 08:15:33 +00:00
|
|
|
3. Install [`probe-run`][7]
|
2022-09-17 13:32:30 +00:00
|
|
|
```shell
|
|
|
|
# Install Linux Dependencies
|
|
|
|
$ sudo apt install -y libusb-1.0-0-dev libudev-dev
|
|
|
|
|
|
|
|
# Install `probe-run`
|
|
|
|
$ cargo install probe-run
|
|
|
|
|
|
|
|
# (Optional) Install `udev` Rules and Reload
|
|
|
|
$ sudo curl https://probe.rs/files/69-probe-rs.rules -o /etc/udev/rules.d/69-probe-rs.rules
|
|
|
|
$ sudo udevadm control --reload
|
|
|
|
$ sudo udevadm trigger
|
|
|
|
|
|
|
|
# (Optional) Add User to `plugdev` Group
|
|
|
|
$ sudo usermod -aG plugdev $USER
|
|
|
|
```
|
|
|
|
|
2022-09-22 08:15:33 +00:00
|
|
|
4. Install [`flip-link`][6]
|
2022-09-17 13:32:30 +00:00
|
|
|
```shell
|
|
|
|
# Install `flip-link`
|
|
|
|
$ $ cargo install flip-link
|
|
|
|
```
|
|
|
|
|
|
|
|
### Probe Setup
|
2022-09-22 08:34:54 +00:00
|
|
|
You can use a Raspberry Pi Pico as a CMSIS-DAP debug probe.
|
2022-09-21 11:02:58 +00:00
|
|
|
|
2022-09-22 08:37:18 +00:00
|
|
|
1. Download CMSIS-DAP debugger firmware [`DapperMime`][16] for the Raspberry Pi Pico
|
2022-09-17 13:32:30 +00:00
|
|
|
2. Boot the Raspberry Pi Pico in "Bootloader Mode" by holding the _BOOTSEL_ button while plugging it in
|
|
|
|
3. Open the mounted Raspberry Pi Pico storage device
|
|
|
|
4. Copy the `raspberry_pi_pico-DapperMime.uf2` onto the Raspberry Pi Pico
|
|
|
|
5. Firmware will be flashed to the Raspberry Pi Pico and it will disconnect
|
|
|
|
|
2022-09-22 08:37:18 +00:00
|
|
|
Any [`probe-rs`][9] compatible debug probe can be used with [`probe-run`][7]. For a short list of alternative
|
|
|
|
compatible debug probes see: [Alternative Debug Probes][17].
|
2022-09-17 13:43:31 +00:00
|
|
|
|
2022-09-17 13:32:30 +00:00
|
|
|
### Hardware Setup
|
2022-09-22 05:23:30 +00:00
|
|
|
#### Connecting the Raspberry Pi Pico Debug Probe
|
2022-09-22 05:22:16 +00:00
|
|
|
The diagram below shows the wiring loom between Raspberry Pi Pico A (left) and Raspberry Pi Pico B (right), configuring
|
|
|
|
Raspberry Pi Pico A as a debug probe.
|
|
|
|
|
2022-09-23 04:36:37 +00:00
|
|
|
<!-- Embed Image -->
|
|
|
|
<p align="center">
|
2022-09-23 05:33:08 +00:00
|
|
|
<img width=50% src="https://user-images.githubusercontent.com/62866982/191892108-daabc0d6-5ec1-4265-8722-226c512b995c.svg">
|
2022-09-23 04:36:37 +00:00
|
|
|
</p>
|
2022-09-22 05:22:16 +00:00
|
|
|
|
2022-09-22 05:31:24 +00:00
|
|
|
The connections shown in the diagram above are listed below.
|
2022-09-22 05:22:16 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
Pico A GND -> Pico B GND
|
|
|
|
Pico A GP2 -> Pico B SWCLK
|
|
|
|
Pico A GP3 -> Pico B SWDIO
|
|
|
|
Pico A GP4/UART1 TX -> Pico B GP1/UART0 RX
|
|
|
|
Pico A GP5/UART1 RX -> Pico B GP0/UART0 TX
|
|
|
|
Pico A VSYS -> Pico B VSYS
|
|
|
|
```
|
|
|
|
|
2022-09-23 05:40:15 +00:00
|
|
|
For more information on the wiring loom and its connections, see _Appendix A > Wiring Loom_ in the guide here:
|
|
|
|
[Getting Started with Raspberry Pi Pico][18]
|
2022-09-22 05:22:16 +00:00
|
|
|
|
2022-09-22 05:23:30 +00:00
|
|
|
#### Raspberry Pi Pico Dev Board
|
2022-09-22 05:31:24 +00:00
|
|
|
Alternatively, a custom printed Raspberry Pi Pico Dev Board can be used to enhance development, which includes:
|
2022-09-22 05:22:16 +00:00
|
|
|
|
|
|
|
* Debug Probe Host (Raspberry Pi Pico)
|
|
|
|
* Detachable Target (Raspberry Pi Pico)
|
|
|
|
* Serial Interface
|
|
|
|
* Reset Button
|
|
|
|
* Breakout Pins
|
|
|
|
* Selection of _VSys_ or _VBus_ Power Sources
|
|
|
|
|
2022-09-23 04:39:23 +00:00
|
|
|
An image of the custom printed Raspberry Pi Pico Dev board is shown below:
|
|
|
|
|
2022-09-23 04:37:31 +00:00
|
|
|
<!-- Embed Image -->
|
|
|
|
<p align="center">
|
2022-09-23 05:33:08 +00:00
|
|
|
<img width=50% src="https://user-images.githubusercontent.com/62866982/191897240-5912e684-fac9-4675-ba3c-2bad11afcd2f.png">
|
2022-09-23 04:37:31 +00:00
|
|
|
</p>
|
2022-09-22 05:22:16 +00:00
|
|
|
|
2022-09-22 05:31:24 +00:00
|
|
|
For more information on printing your own custom Raspberry Pi Pico Dev Board, see:
|
2022-09-23 04:38:18 +00:00
|
|
|
[Raspberry Pi Pico Dev Board][19]
|
2022-09-17 09:57:02 +00:00
|
|
|
|
|
|
|
## Usage
|
2022-09-23 03:41:38 +00:00
|
|
|
#### Running
|
2022-09-17 13:32:30 +00:00
|
|
|
To run the firmware in debug mode:
|
|
|
|
```shell
|
|
|
|
$ cargo run
|
|
|
|
```
|
|
|
|
|
|
|
|
To run the firmware in release mode:
|
|
|
|
```shell
|
|
|
|
$ cargo run --release
|
|
|
|
```
|
|
|
|
|
2022-09-23 03:41:38 +00:00
|
|
|
#### Logging
|
2022-09-22 08:15:33 +00:00
|
|
|
To change the default [`defmt`][5] log level, see `.cargo/config.toml`:
|
2022-09-17 13:32:30 +00:00
|
|
|
```toml
|
|
|
|
[env]
|
|
|
|
DEFMT_LOG = "trace"
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also set the log level inline:
|
|
|
|
```shell
|
|
|
|
$ DEFMT_LOG=debug cargo run
|
|
|
|
$ DEFMT_LOG=error cargo run --release
|
|
|
|
```
|
2022-09-17 09:57:02 +00:00
|
|
|
|
|
|
|
## Appendix
|
2022-09-22 08:12:51 +00:00
|
|
|
#### Documentation
|
2022-09-22 08:09:09 +00:00
|
|
|
* [Raspberry Pi Pico][1]
|
2022-09-22 08:15:33 +00:00
|
|
|
* [Rust][3]
|
|
|
|
* [Cargo][8]
|
2022-09-22 08:37:18 +00:00
|
|
|
* [Rustup][15]
|
2022-09-22 08:09:09 +00:00
|
|
|
* [Embassy][2]
|
2022-09-22 08:15:33 +00:00
|
|
|
* [Knurling-RS `defmt`][5]
|
|
|
|
* [Knurling-RS `flip-link`][6]
|
|
|
|
* [Knurling-RS `probe-run`][7]
|
2022-09-22 08:37:18 +00:00
|
|
|
* [Probe-RS `cargo-embed`][10]
|
|
|
|
* [Probe-RS `probe-rs-debugger`][11]
|
|
|
|
* [Raspberry Pi Pico `elf2uf2`][12]
|
|
|
|
* [Raspberry Pi Pico `picotool`][13]
|
|
|
|
* [CMSIS-DAP Firmware `DapperMime`][16]
|
2022-09-22 08:09:09 +00:00
|
|
|
|
2022-09-22 08:12:51 +00:00
|
|
|
#### Resources
|
2022-09-23 04:38:18 +00:00
|
|
|
* [Rust Embedded Book][20]
|
|
|
|
* [Awesome Embedded Rust][21]
|
|
|
|
* [Getting Started with Raspberry Pi Pico][22]
|
|
|
|
* [Ferrous Systems Embedded Training][23]
|
|
|
|
* [Ferrous Systems Embedded Teaching Material][24]
|
|
|
|
* [RP-RS App Template][25]
|
2022-09-22 08:37:18 +00:00
|
|
|
* [RP-RS Alternative Debug Probes][17]
|
|
|
|
* [RP-RS Alternative Runners][14]
|
2022-09-22 08:15:33 +00:00
|
|
|
* [Knurling-RS App Template][4]
|
2022-09-22 08:37:18 +00:00
|
|
|
* [Probe-RS Probe Setup][9]
|
2022-09-23 04:38:18 +00:00
|
|
|
* [Raspberry Pi Pico Dev Board][19]
|
2022-09-22 08:09:09 +00:00
|
|
|
|
2022-09-17 09:57:02 +00:00
|
|
|
|
|
|
|
<!-- Reference -->
|
|
|
|
[1]: https://www.raspberrypi.com/documentation/microcontrollers/rp2040.html
|
|
|
|
[2]: https://embassy.dev/dev/index.html
|
2022-09-22 08:15:33 +00:00
|
|
|
[3]: https://www.rust-lang.org/
|
|
|
|
[4]: https://github.com/knurling-rs/app-template
|
|
|
|
[5]: https://github.com/knurling-rs/defmt
|
|
|
|
[6]: https://github.com/knurling-rs/flip-link
|
|
|
|
[7]: https://github.com/knurling-rs/probe-run
|
|
|
|
[8]: https://doc.rust-lang.org/cargo/
|
2022-09-22 08:37:18 +00:00
|
|
|
[9]: https://probe.rs/docs/getting-started/probe-setup/
|
|
|
|
[10]: https://github.com/probe-rs/cargo-embed
|
|
|
|
[11]: https://github.com/probe-rs/vscode
|
|
|
|
[12]: https://github.com/JoNil/elf2uf2-rs
|
|
|
|
[13]: https://github.com/raspberrypi/picotool
|
|
|
|
[14]: https://github.com/rp-rs/rp2040-project-template#alternative-runners
|
|
|
|
[15]: https://rustup.rs/
|
|
|
|
[16]: https://github.com/majbthrd/DapperMime
|
|
|
|
[17]: https://github.com/rp-rs/rp2040-project-template/blob/main/debug_probes.md
|
2022-09-23 04:38:18 +00:00
|
|
|
[18]: https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf#%5B%7B%22num%22%3A64%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C115%2C696.992%2Cnull%5D
|
|
|
|
[19]: https://timsavage.github.io/rpi-pico-devboard/
|
|
|
|
[20]: https://docs.rust-embedded.org/book/
|
|
|
|
[21]: https://github.com/rust-embedded/awesome-embedded-rust
|
|
|
|
[22]: https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf
|
|
|
|
[23]: https://embedded-trainings.ferrous-systems.com/
|
|
|
|
[24]: https://github.com/ferrous-systems/teaching-material
|
|
|
|
[25]: https://github.com/rp-rs/rp2040-project-template
|