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

@ -1,4 +1,4 @@
#![no_std]
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
#![feature(async_fn_in_trait)]
@ -18,6 +18,8 @@ use embedded_io::asynch::Write;
use static_cell::StaticCell;
use {defmt_rtt as _, panic_probe as _};
use core::str::from_utf8;
macro_rules! singleton {
($val:expr) => {{
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 {
Ok(()) => {}