aboutsummaryrefslogtreecommitdiff
path: root/examples/rp/src/bin/uart_buffered_split.rs
diff options
context:
space:
mode:
authorJakob <[email protected]>2025-05-14 18:57:49 +0200
committerGitHub <[email protected]>2025-05-14 18:57:49 +0200
commitb17da5b79470cb6b9877ec9fd5682062f7a37aec (patch)
tree4d60a3e4b9404a8b566b069358d700a6cfb5f8b2 /examples/rp/src/bin/uart_buffered_split.rs
parenta71642ca01190d1a8f8bd652bd41d8a9539fe2ee (diff)
parentb9ed61cdd99be4a58a757a0eb32c1fa77a696d6a (diff)
Merge branch 'embassy-rs:main' into update_doc_comment_for_adc_read
Diffstat (limited to 'examples/rp/src/bin/uart_buffered_split.rs')
-rw-r--r--examples/rp/src/bin/uart_buffered_split.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rp/src/bin/uart_buffered_split.rs b/examples/rp/src/bin/uart_buffered_split.rs
index da7e94139..3adbc18ab 100644
--- a/examples/rp/src/bin/uart_buffered_split.rs
+++ b/examples/rp/src/bin/uart_buffered_split.rs
@@ -48,7 +48,7 @@ async fn main(spawner: Spawner) {
48} 48}
49 49
50#[embassy_executor::task] 50#[embassy_executor::task]
51async fn reader(mut rx: BufferedUartRx<'static, UART0>) { 51async fn reader(mut rx: BufferedUartRx) {
52 info!("Reading..."); 52 info!("Reading...");
53 loop { 53 loop {
54 let mut buf = [0; 31]; 54 let mut buf = [0; 31];