diff options
| author | taitep <taitep@taitep.se> | 2025-12-21 15:45:32 +0100 |
|---|---|---|
| committer | taitep <taitep@taitep.se> | 2025-12-21 15:45:32 +0100 |
| commit | 25ecfca912d9451d567827aceafe405b68b2d256 (patch) | |
| tree | e7198ca401941ea632eeb952a7fb20068f0a4196 /src/basic_uart.rs | |
| parent | 0457530e0c91ad64065e3a63fad41a25ff312b36 (diff) | |
Make the UART not constantly flush output
Diffstat (limited to 'src/basic_uart.rs')
| -rw-r--r-- | src/basic_uart.rs | 1 |
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) { |
