mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2025-01-11 04:51:31 +11:00
cf86e08749
* Add the Pimoroni Plasma 2040 board This PR adds the board support package and a simple example. The example just blinks the on-board RGB LED. An example should be added for using the board to control an LED strip. This should probably use smart-leds with the associated PIO driver. An example or functionality should be added for the current sensor. * Rename LED data line from dat to data to match schematic * Add an example for driving WS2812 LEDs This is pretty much a copy-paste of the awesome pico_ws2812_led example. * Remove reference in README to rp-pico * Remove reference to pico board clock speed I have removed this in the Plasma 2040 repository and where I copied it from, tiny2040_blinky. * Remove redundant namespace * Add self-reference in README to the current board's GitHub README Fix the erroneous link in the pimoroni-tiny2040 README from which I copied.
27 lines
725 B
TOML
27 lines
725 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-plasma-2040",
|
|
"boards/pimoroni-tiny2040",
|
|
"boards/rp-pico",
|
|
"boards/solderparty-rp2040-stamp",
|
|
"boards/sparkfun-pro-micro-rp2040",
|
|
"boards/sparkfun-thing-plus-rp2040",
|
|
]
|
|
|
|
[patch.'https://github.com/rp-rs/rp-hal.git']
|
|
rp2040-hal = { path ="./rp2040-hal" }
|
|
|
|
[patch.crates-io]
|
|
rp2040-hal = { path ="./rp2040-hal" }
|