2 Copyright 2011,2012,2013 Jun Wako <wakojun@gmail.com>
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
30 #include "bootmagic.h"
32 #include "backlight.h"
33 #ifdef MOUSEKEY_ENABLE
34 # include "mousekey.h"
36 #ifdef PS2_MOUSE_ENABLE
37 # include "ps2_mouse.h"
39 #ifdef SERIAL_MOUSE_ENABLE
40 #include "serial_mouse.h"
44 #ifdef MATRIX_HAS_GHOST
45 static bool has_ghost_in_row(uint8_t row)
47 matrix_row_t matrix_row = matrix_get_row(row);
48 // No ghost exists when less than 2 keys are down on the row
49 if (((matrix_row - 1) & matrix_row) == 0)
52 // Ghost occurs when the row shares column line with other row
53 for (uint8_t i=0; i < MATRIX_ROWS; i++) {
54 if (i != row && (matrix_get_row(i) & matrix_row))
62 void keyboard_init(void)
66 #ifdef PS2_MOUSE_ENABLE
69 #ifdef SERIAL_MOUSE_ENABLE
74 #ifdef BOOTMAGIC_ENABLE
78 #ifdef BACKLIGHT_ENABLE
84 * Do keyboard routine jobs: scan mantrix, light LEDs, ...
85 * This is repeatedly called as fast as possible.
87 void keyboard_task(void)
89 static matrix_row_t matrix_prev[MATRIX_ROWS];
90 static uint8_t led_status = 0;
91 matrix_row_t matrix_row = 0;
92 matrix_row_t matrix_change = 0;
95 for (uint8_t r = 0; r < MATRIX_ROWS; r++) {
96 matrix_row = matrix_get_row(r);
97 matrix_change = matrix_row ^ matrix_prev[r];
99 if (debug_matrix) matrix_print();
100 #ifdef MATRIX_HAS_GHOST
101 if (has_ghost_in_row(r)) {
102 matrix_prev[r] = matrix_row;
106 for (uint8_t c = 0; c < MATRIX_COLS; c++) {
107 if (matrix_change & ((matrix_row_t)1<<c)) {
108 action_exec((keyevent_t){
109 .key = (keypos_t){ .row = r, .col = c },
110 .pressed = (matrix_row & ((matrix_row_t)1<<c)),
111 .time = (timer_read() | 1) /* time should not be 0 */
113 // record a processed key
114 matrix_prev[r] ^= ((matrix_row_t)1<<c);
115 // process a key per task call
116 goto MATRIX_LOOP_END;
121 // call with pseudo tick event when no real key event.
126 #ifdef MOUSEKEY_ENABLE
127 // mousekey repeat & acceleration
131 #ifdef PS2_MOUSE_ENABLE
135 #ifdef SERIAL_MOUSE_ENABLE
140 if (led_status != host_keyboard_leds()) {
141 led_status = host_keyboard_leds();
142 keyboard_set_leds(led_status);
146 void keyboard_set_leds(uint8_t leds)
148 if (debug_keyboard) { debug("keyboard_set_led: "); debug_hex8(leds); debug("\n"); }