A collection of various little projects for a Raspberry Pi Pico (rp2040 uC) written in Rust.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Weird Constructor 80c12f9aba rename to README 2 years ago
pwm_dac_saw_sampling added a resource link collection 2 years ago
res added some images 2 years ago
README.md rename to README 2 years ago

README.md

Rust Raspberry Pi Pico / Rust rp2040 Resources

Setup your Rust installation for rp2040 development:

# Add the rp2040 CPU architecture:
rustup self update
rustup update stable
rustup target add thumbv6m-none-eabi

# Useful to creating UF2 images for the RP2040 USB Bootloader
cargo install elf2uf2-rs --locked

# Useful for flashing over the SWD pins using a supported JTAG probe
cargo install --git https://github.com/rp-rs/probe-run.git --branch rp2040-support 

# flip-link detect stack-overflows on the first core
# (which is the only supported target for now.)
cargo install flip-link

A broad overview of the rp2040 Rust ecosystem:

Raspberry Pi Pico Pinout

Raspberry Pi Pico Pinout

Connecting the Raspberry Pi Pico Probe

Raspberry Pi Pico Connection

Assorted Projects / Crates