Browse Source

Add PS2 mouse support for gh60

core
Kai Ryu 10 years ago
parent
commit
5977267388
2 changed files with 8 additions and 3 deletions
  1. 7
    3
      common/keyboard.c
  2. 1
    0
      protocol/ps2.h

+ 7
- 3
common/keyboard.c View File

@@ -68,7 +68,9 @@ void keyboard_init(void)
#endif

#ifdef PS2_MOUSE_ENABLE
ps2_mouse_init();
if (ps2_enabled()) {
ps2_mouse_init();
}
#endif

#ifdef BOOTMAGIC_ENABLE
@@ -80,7 +82,7 @@ void keyboard_init(void)
#endif

#ifdef KEYMAP_EX_ENABLE
keymap_init();
keymap_ex_init();
#endif
}

@@ -133,7 +135,9 @@ MATRIX_LOOP_END:
#endif

#ifdef PS2_MOUSE_ENABLE
ps2_mouse_task();
if (ps2_enabled()) {
ps2_mouse_task();
}
#endif

// update LED

+ 1
- 0
protocol/ps2.h View File

@@ -90,6 +90,7 @@ uint8_t ps2_host_send(uint8_t data);
uint8_t ps2_host_recv_response(void);
uint8_t ps2_host_recv(void);
void ps2_host_set_led(uint8_t usb_led);
uint8_t ps2_enabled(void);


/* Check port settings for clock and data line */