diff options
| author | Ruben De Smet <[email protected]> | 2023-08-11 11:58:22 +0200 |
|---|---|---|
| committer | Ruben De Smet <[email protected]> | 2023-08-22 16:58:31 +0200 |
| commit | c39671266e21dd9e35e60cc680453cd5c38162db (patch) | |
| tree | 895dbbcefb90af1fd65c8844c1e5785a909b0671 /examples/nrf52840/src/bin/uart_split.rs | |
| parent | b1ec460b9af131ef80fcafd79a7f63aa326aaf94 (diff) | |
Deprecate *recv* in favor of *receive*
Diffstat (limited to 'examples/nrf52840/src/bin/uart_split.rs')
| -rw-r--r-- | examples/nrf52840/src/bin/uart_split.rs | 2 |
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 9979a1d53..b748bfcd8 100644 --- a/examples/nrf52840/src/bin/uart_split.rs +++ b/examples/nrf52840/src/bin/uart_split.rs | |||
| @@ -46,7 +46,7 @@ async fn main(spawner: Spawner) { | |||
| 46 | // back out the buffer we receive from the read | 46 | // back out the buffer we receive from the read |
| 47 | // task. | 47 | // task. |
| 48 | loop { | 48 | loop { |
| 49 | let buf = CHANNEL.recv().await; | 49 | let buf = CHANNEL.receive().await; |
| 50 | info!("writing..."); | 50 | info!("writing..."); |
| 51 | unwrap!(tx.write(&buf).await); | 51 | unwrap!(tx.write(&buf).await); |
| 52 | } | 52 | } |
