mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-23 20:51:31 +11:00
f8de8755cc
* Add an rp2040 specific #[entry] macro. This macro extends the one from cortex-m-rt by code to unlock all spinlocks on boot. * Idiomatic pointer arithmetic Apply suggestion by @9names, improving address calculations. (This doesn't change the generated code at opt levels 2 or "z".) Co-authored-by: 9names <60134748+9names@users.noreply.github.com>
25 lines
649 B
TOML
25 lines
649 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"rp2040-hal",
|
|
"rp2040-hal-macros",
|
|
"boards/adafruit-feather-rp2040",
|
|
"boards/adafruit-itsy-bitsy-rp2040",
|
|
"boards/adafruit-kb2040",
|
|
"boards/adafruit-macropad",
|
|
"boards/adafruit-qt-py-rp2040",
|
|
"boards/adafruit-trinkey-qt2040",
|
|
"boards/pimoroni-pico-explorer",
|
|
"boards/pimoroni-pico-lipo-16mb",
|
|
"boards/pimoroni-tiny2040",
|
|
"boards/rp-pico",
|
|
"boards/solderparty-rp2040-stamp",
|
|
"boards/sparkfun-pro-micro-rp2040",
|
|
]
|
|
|
|
[patch.'https://github.com/rp-rs/rp-hal.git']
|
|
rp2040-hal = { path ="./rp2040-hal" }
|
|
|
|
[patch.crates-io]
|
|
rp2040-hal = { path ="./rp2040-hal" }
|