Increase size of console buffering.

This commit is contained in:
Guillaume Endignoux
2020-06-19 18:21:10 +02:00
parent a7c79c4f23
commit 2094f8156c
2 changed files with 14 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ index ecd7ad1..ae1b826 100644
pub const SHARE_BUFFER: usize = 1;
}
+const BUFFER_SIZE: usize = 64;
+const BUFFER_SIZE: usize = 1024;
+
pub struct Console {
- allow_buffer: [u8; 64],