aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-06-29 22:37:11 +0200
committerDario Nieuwenhuis <[email protected]>2025-07-04 00:23:22 +0200
commit72248a601a9ea28ac696f186e2cbe4c2f128a133 (patch)
tree109eca1e791766d62237056f9fa4a5a37a7b9d63 /embassy-nrf
parentb964bee302fc3631d14d73d9a9b406e7352cd550 (diff)
Update Rust nightly, stable.
Diffstat (limited to 'embassy-nrf')
-rw-r--r--embassy-nrf/src/uarte.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/uarte.rs b/embassy-nrf/src/uarte.rs
index f377df49e..927a0ac08 100644
--- a/embassy-nrf/src/uarte.rs
+++ b/embassy-nrf/src/uarte.rs
@@ -245,7 +245,7 @@ impl<'d, T: Instance> Uarte<'d, T> {
245 } 245 }
246 246
247 /// Return the endtx event for use with PPI 247 /// Return the endtx event for use with PPI
248 pub fn event_endtx(&self) -> Event { 248 pub fn event_endtx(&self) -> Event<'_> {
249 let r = T::regs(); 249 let r = T::regs();
250 Event::from_reg(r.events_endtx()) 250 Event::from_reg(r.events_endtx())
251 } 251 }