aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Mattia <[email protected]>2025-10-26 11:37:05 +0100
committerNicolas Mattia <[email protected]>2025-10-26 11:43:05 +0100
commit724edcaf70494316507af2d3bc7cdbcb2b3be06d (patch)
treed3391c560c47de095d07347ab464f646e1d46e1b
parentc8c4c6f40bd8a2e548f3c8e06b798d448f67b884 (diff)
rp: fix typo in Input interrupt comment
-rw-r--r--embassy-rp/CHANGELOG.md1
-rw-r--r--embassy-rp/src/gpio.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/embassy-rp/CHANGELOG.md b/embassy-rp/CHANGELOG.md
index e932bcaa3..a99d04aa4 100644
--- a/embassy-rp/CHANGELOG.md
+++ b/embassy-rp/CHANGELOG.md
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8<!-- next-header --> 8<!-- next-header -->
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10 10
11- Fix typo in interrupt comment
11- Add PIO SPI 12- Add PIO SPI
12- Add PIO I2S input 13- Add PIO I2S input
13- Add PIO onewire parasite power strong pullup 14- Add PIO onewire parasite power strong pullup
diff --git a/embassy-rp/src/gpio.rs b/embassy-rp/src/gpio.rs
index c15e0e41b..154fc1585 100644
--- a/embassy-rp/src/gpio.rs
+++ b/embassy-rp/src/gpio.rs
@@ -300,7 +300,7 @@ impl<'d> InputFuture<'d> {
300 300
301 // Each INTR register is divided into 8 groups, one group for each 301 // Each INTR register is divided into 8 groups, one group for each
302 // pin, and each group consists of LEVEL_LOW, LEVEL_HIGH, EDGE_LOW, 302 // pin, and each group consists of LEVEL_LOW, LEVEL_HIGH, EDGE_LOW,
303 // and EGDE_HIGH. 303 // and EDGE_HIGH.
304 pin.int_proc() 304 pin.int_proc()
305 .inte((pin.pin() / 8) as usize) 305 .inte((pin.pin() / 8) as usize)
306 .write_set(|w| match level { 306 .write_set(|w| match level {