basic terminal functionality works

This commit is contained in:
Yehowshua Immanuel 2024-12-24 19:07:11 -05:00
parent e08c673e86
commit 4fd4b6eb17
3 changed files with 11 additions and 5 deletions

View file

@ -72,7 +72,6 @@ fn send_char(
Task::start(async move {
println!("Sending char: {}", &c);
crate::platform::send_char(send_c.to_string()).await;
// crate::platform::unload_signal().await;
println!("Sent char: {}", &c);
});
}