aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp
diff options
context:
space:
mode:
author1-rafael-1 <[email protected]>2025-04-13 22:23:07 +0200
committer1-rafael-1 <[email protected]>2025-04-13 22:23:07 +0200
commit6719e1305921c08fcfba7e8f48e315ef8b676c6e (patch)
tree3402ff42066c990a29787671f659c5b919f6e8ac /embassy-rp
parentdd3ae39d425ee529b2bb4dea0b8f68f42d8ee604 (diff)
update documentation and examples to mention RP235x
Diffstat (limited to 'embassy-rp')
-rw-r--r--embassy-rp/Cargo.toml4
-rw-r--r--embassy-rp/README.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index 4e5ef2813..b440591cf 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -3,8 +3,8 @@ name = "embassy-rp"
3version = "0.4.0" 3version = "0.4.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 microcontroller" 6description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 or RP235x microcontroller"
7keywords = ["embedded", "async", "raspberry-pi", "rp2040", "embedded-hal"] 7keywords = ["embedded", "async", "rp235x", "rp2040", "embedded-hal"]
8categories = ["embedded", "hardware-support", "no-std", "asynchronous"] 8categories = ["embedded", "hardware-support", "no-std", "asynchronous"]
9repository = "https://github.com/embassy-rs/embassy" 9repository = "https://github.com/embassy-rs/embassy"
10documentation = "https://docs.embassy.dev/embassy-rp" 10documentation = "https://docs.embassy.dev/embassy-rp"
diff --git a/embassy-rp/README.md b/embassy-rp/README.md
index 16b189344..8e16184b8 100644
--- a/embassy-rp/README.md
+++ b/embassy-rp/README.md
@@ -2,7 +2,7 @@
2 2
3HALs implement safe, idiomatic Rust APIs to use the hardware capabilities, so raw register manipulation is not needed. 3HALs implement safe, idiomatic Rust APIs to use the hardware capabilities, so raw register manipulation is not needed.
4 4
5The embassy-rp HAL targets the Raspberry Pi RP2040 microcontroller. The HAL implements both blocking and async APIs 5The embassy-rp HAL targets the Raspberry Pi RP2040 as well as RP235x microcontroller. The HAL implements both blocking and async APIs
6for many peripherals. The benefit of using the async APIs is that the HAL takes care of waiting for peripherals to 6for many peripherals. The benefit of using the async APIs is that the HAL takes care of waiting for peripherals to
7complete operations in low power mode and handling interrupts, so that applications can focus on more important matters. 7complete operations in low power mode and handling interrupts, so that applications can focus on more important matters.
8 8