I want to convert u32 integer data to string in embedded Rust, but the problem is in embedded we can't use std
code, so is there any way to do this?
let mut dist = ((elapsed as f32 / mono_timer.frequency().0 as f32 * 1e6) / 2.0) / 29.1;
let dist = dist as u32;
let data = String::from("data:");
data.push_str(dist);