Do not write ps2d keyboard to serial

This commit is contained in:
Jeremy Soller
2016-09-22 10:23:00 -06:00
parent 0cbc3eacf7
commit 7253270bd8
-1
View File
@@ -34,7 +34,6 @@ pub fn keyboard() {
} else if pressed {
let c = keymap::get_char(scancode, lshift || rshift);
if c != '\0' {
print!("{}", c);
input.write(&[c as u8]).expect("ps2d: failed to write input");
}
}