now sending chars yay
This commit is contained in:
parent
f992a24719
commit
e08c673e86
5 changed files with 9 additions and 10 deletions
|
@ -71,7 +71,7 @@ fn send_char(
|
|||
let send_c = c.clone();
|
||||
Task::start(async move {
|
||||
println!("Sending char: {}", &c);
|
||||
crate::platform::send_char().await;
|
||||
crate::platform::send_char(send_c.to_string()).await;
|
||||
// crate::platform::unload_signal().await;
|
||||
println!("Sent char: {}", &c);
|
||||
});
|
||||
|
|
Reference in a new issue