aboutsummaryrefslogtreecommitdiff
path: root/common/keyboard.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-08-26 17:48:34 +0900
committertmk <nobody@nowhere>2014-08-26 17:48:34 +0900
commitb9e265368fde73daff069788dcb58c8230d01b32 (patch)
treece081df2bc887c948ab9e0d5fc1242f8cc70aeb0 /common/keyboard.c
parent10eb70acb4c8a03fc5bda32d9c23fc41266aef7a (diff)
parent4799c99b4d1f065d1c23f3f27df079072d0ce8e9 (diff)
downloadqmk_firmware-b9e265368fde73daff069788dcb58c8230d01b32.tar.gz
qmk_firmware-b9e265368fde73daff069788dcb58c8230d01b32.zip
Merge branch 'rhaberkorn-serial-mouse'
Diffstat (limited to 'common/keyboard.c')
-rw-r--r--common/keyboard.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/keyboard.c b/common/keyboard.c
index 2b66f20a0..020be8ead 100644
--- a/common/keyboard.c
+++ b/common/keyboard.c
@@ -37,6 +37,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
37#ifdef PS2_MOUSE_ENABLE 37#ifdef PS2_MOUSE_ENABLE
38# include "ps2_mouse.h" 38# include "ps2_mouse.h"
39#endif 39#endif
40#ifdef SERIAL_MOUSE_ENABLE
41#include "serial_mouse.h"
42#endif
40 43
41 44
42#ifdef MATRIX_HAS_GHOST 45#ifdef MATRIX_HAS_GHOST
@@ -64,6 +67,10 @@ void keyboard_init(void)
64#ifdef PS2_MOUSE_ENABLE 67#ifdef PS2_MOUSE_ENABLE
65 ps2_mouse_init(); 68 ps2_mouse_init();
66#endif 69#endif
70#ifdef SERIAL_MOUSE_ENABLE
71 serial_mouse_init();
72#endif
73
67 74
68#ifdef BOOTMAGIC_ENABLE 75#ifdef BOOTMAGIC_ENABLE
69 bootmagic(); 76 bootmagic();
@@ -126,6 +133,10 @@ MATRIX_LOOP_END:
126 ps2_mouse_task(); 133 ps2_mouse_task();
127#endif 134#endif
128 135
136#ifdef SERIAL_MOUSE_ENABLE
137 serial_mouse_task();
138#endif
139
129 // update LED 140 // update LED
130 if (led_status != host_keyboard_leds()) { 141 if (led_status != host_keyboard_leds()) {
131 led_status = host_keyboard_leds(); 142 led_status = host_keyboard_leds();