summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2025-12-21 15:45:32 +0100
committertaitep <taitep@taitep.se>2025-12-21 15:45:32 +0100
commit25ecfca912d9451d567827aceafe405b68b2d256 (patch)
treee7198ca401941ea632eeb952a7fb20068f0a4196 /src
parent0457530e0c91ad64065e3a63fad41a25ff312b36 (diff)
Make the UART not constantly flush output
Diffstat (limited to 'src')
-rw-r--r--src/basic_uart.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/basic_uart.rs b/src/basic_uart.rs
index 04230a2..acd9891 100644
--- a/src/basic_uart.rs
+++ b/src/basic_uart.rs
@@ -64,7 +64,6 @@ impl BasicUart {
while let Some(byte) = bufs.tx.pop_front() {
print!("{}", byte as char);
}
- stdout().flush().unwrap();
let mut buffer = [0u8; 1];
if let Ok(n) = stdin().read(&mut buffer) {