fix(serial): now wait instead of kernel panick on serial !EMPTY_TRANSMITTER
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
Julien CLEMENT 2021-12-03 22:36:40 +01:00
parent 03acf2943e
commit da5dd55ce6
2 changed files with 4 additions and 8 deletions

@ -29,11 +29,7 @@ pub fn init() {
pub extern "C" fn julios_main() -> ! {
init();
println!("***JuliOS V0.1.0***");
fn stack_overflow() {
stack_overflow(); // for each recursion, the return address is pushed
}
stack_overflow();
serial_println!("Hello serial");
panic!("Kernel end of flow");
}

@ -93,9 +93,9 @@ impl SerialPort {
fn write_string(&mut self, s: &str) -> usize {
let mut len: usize = 0;
for byte in s.bytes() {
let written: bool = self.write_byte(byte);
if !written {
return len;
let mut written: bool = self.write_byte(byte);
while !written {
written = self.write_byte(byte);
}
len += 1;
}