aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf52840
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-09-27 18:37:33 +0200
committerDario Nieuwenhuis <[email protected]>2025-09-28 21:05:37 +0200
commitb07192079f0fc6ce210104786540aa7be8938d40 (patch)
tree659f336f177367fb82757c5b775c0f6c63894eb9 /examples/nrf52840
parente5328c78259c7e288bf54c83bc80c2d2311abdf2 (diff)
nrf/uart,timer: erase instance generics.
Diffstat (limited to 'examples/nrf52840')
-rw-r--r--examples/nrf52840/src/bin/uart_split.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nrf52840/src/bin/uart_split.rs b/examples/nrf52840/src/bin/uart_split.rs
index 51af90727..d75143126 100644
--- a/examples/nrf52840/src/bin/uart_split.rs
+++ b/examples/nrf52840/src/bin/uart_split.rs
@@ -52,7 +52,7 @@ async fn main(spawner: Spawner) {
52} 52}
53 53
54#[embassy_executor::task] 54#[embassy_executor::task]
55async fn reader(mut rx: UarteRx<'static, UARTE0>) { 55async fn reader(mut rx: UarteRx<'static>) {
56 let mut buf = [0; 8]; 56 let mut buf = [0; 8];
57 loop { 57 loop {
58 info!("reading..."); 58 info!("reading...");