Skip to content
Snippets Groups Projects
Commit 9280fe74 authored by Lunala's avatar Lunala
Browse files
parents 865093e8 9f407fe5
No related branches found
No related tags found
No related merge requests found
...@@ -99,6 +99,7 @@ char get_keyboard_input(){ ...@@ -99,6 +99,7 @@ char get_keyboard_input(){
return keyboard_map(key_press); return keyboard_map(key_press);
} }
// depreceted
void print_ascii_read_state(){ void print_ascii_read_state(){
unsigned char state_code; unsigned char state_code;
......
...@@ -98,8 +98,9 @@ void keyboard_it_queue(int_regs_t *r){ ...@@ -98,8 +98,9 @@ void keyboard_it_queue(int_regs_t *r){
char kb_car; char kb_car;
kb_car = get_keyboard_input(); kb_car = get_keyboard_input();
// write_character(kb_car);
// évite de déplacer le curseur quand c'est un caractère non valide (caps lock, etc.)
// write_character(kb_car);
if(kb_car != 0){ if(kb_car != 0){
kb_fifo_push(&kb_fifo, kb_car); kb_fifo_push(&kb_fifo, kb_car);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment