aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
author1-rafael-1 <[email protected]>2025-09-15 20:07:18 +0200
committer1-rafael-1 <[email protected]>2025-09-15 20:07:18 +0200
commit6bb3d2c0720fa082f27d3cdb70f516058497ec87 (patch)
tree5a1e255cff999b00800f203b91a759c720c973e5 /README.md
parenteb685574601d98c44faed9a3534d056199b46e20 (diff)
parent92a6fd2946f2cbb15359290f68aa360953da2ff7 (diff)
Merge branch 'main' into rp2040-rtc-alarm
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 669fa469b..de6b3bb59 100644
--- a/README.md
+++ b/README.md
@@ -12,8 +12,8 @@ Rust's [async/await](https://rust-lang.github.io/async-book/) allows for unprece
12 12
13## Batteries included 13## Batteries included
14 14
15- **Hardware Abstraction Layers 15- **Hardware Abstraction Layers**
16 ** - HALs implement safe, idiomatic Rust APIs to use the hardware capabilities, so raw register manipulation is not needed. The Embassy project maintains HALs for select hardware, but you can still use HALs from other projects with Embassy. 16 - HALs implement safe, idiomatic Rust APIs to use the hardware capabilities, so raw register manipulation is not needed. The Embassy project maintains HALs for select hardware, but you can still use HALs from other projects with Embassy.
17 - [embassy-stm32](https://docs.embassy.dev/embassy-stm32/), for all STM32 microcontroller families. 17 - [embassy-stm32](https://docs.embassy.dev/embassy-stm32/), for all STM32 microcontroller families.
18 - [embassy-nrf](https://docs.embassy.dev/embassy-nrf/), for the Nordic Semiconductor nRF52, nRF53, nRF54 and nRF91 series. 18 - [embassy-nrf](https://docs.embassy.dev/embassy-nrf/), for the Nordic Semiconductor nRF52, nRF53, nRF54 and nRF91 series.
19 - [embassy-rp](https://docs.embassy.dev/embassy-rp/), for the Raspberry Pi RP2040 and RP23xx microcontrollers. 19 - [embassy-rp](https://docs.embassy.dev/embassy-rp/), for the Raspberry Pi RP2040 and RP23xx microcontrollers.
@@ -80,7 +80,7 @@ async fn main(spawner: Spawner) {
80 let p = embassy_nrf::init(Default::default()); 80 let p = embassy_nrf::init(Default::default());
81 81
82 // Spawned tasks run in the background, concurrently. 82 // Spawned tasks run in the background, concurrently.
83 spawner.spawn(blink(p.P0_13.into())).unwrap(); 83 spawner.spawn(blink(p.P0_13.into()).unwrap());
84 84
85 let mut button = Input::new(p.P0_11, Pull::Up); 85 let mut button = Input::new(p.P0_11, Pull::Up);
86 loop { 86 loop {