Merge pull request #40 from Slushee-a/master

Add from_utf8 for a clearer example
This commit is contained in:
Dario Nieuwenhuis 2023-03-14 18:42:27 +01:00 committed by GitHub
commit e33b99e9ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,8 @@ use embedded_io::asynch::Write;
use static_cell::StaticCell; use static_cell::StaticCell;
use {defmt_rtt as _, panic_probe as _}; use {defmt_rtt as _, panic_probe as _};
use core::str::from_utf8;
macro_rules! singleton { macro_rules! singleton {
($val:expr) => {{ ($val:expr) => {{
type T = impl Sized; type T = impl Sized;
@ -129,7 +131,8 @@ async fn main(spawner: Spawner) {
} }
}; };
info!("rxd {:02x}", &buf[..n]); info!("rxd {}", from_utf8(&buf[..n]).unwrap());
match socket.write_all(&buf[..n]).await { match socket.write_all(&buf[..n]).await {
Ok(()) => {} Ok(()) => {}