]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - tmk_core/common/keyboard.c
core: Update comments in keycode.h
[max/tmk_keyboard.git] / tmk_core / common / keyboard.c
1 /*
2 Copyright 2011,2012,2013 Jun Wako <wakojun@gmail.com>
3
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.
8
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.
13
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/>.
16 */
17 #include <stdint.h>
18 #include "keyboard.h"
19 #include "matrix.h"
20 #include "keymap.h"
21 #include "host.h"
22 #include "led.h"
23 #include "keycode.h"
24 #include "timer.h"
25 #include "print.h"
26 #include "debug.h"
27 #include "command.h"
28 #include "util.h"
29 #include "sendchar.h"
30 #include "bootmagic.h"
31 #include "eeconfig.h"
32 #include "backlight.h"
33 #include "hook.h"
34 #ifdef MOUSEKEY_ENABLE
35 #   include "mousekey.h"
36 #endif
37 #ifdef PS2_MOUSE_ENABLE
38 #   include "ps2_mouse.h"
39 #endif
40 #ifdef SERIAL_MOUSE_ENABLE
41 #include "serial_mouse.h"
42 #endif
43 #ifdef ADB_MOUSE_ENABLE
44 #include "adb.h"
45 #endif
46
47
48 #ifdef MATRIX_HAS_GHOST
49 static bool has_ghost_in_row(uint8_t row)
50 {
51     matrix_row_t matrix_row = matrix_get_row(row);
52     // No ghost exists when less than 2 keys are down on the row
53     if (((matrix_row - 1) & matrix_row) == 0)
54         return false;
55
56     // Ghost occurs when the row shares column line with other row
57     for (uint8_t i=0; i < MATRIX_ROWS; i++) {
58         if (i != row && (matrix_get_row(i) & matrix_row))
59             return true;
60     }
61     return false;
62 }
63 #endif
64
65
66 void keyboard_setup(void)
67 {
68     matrix_setup();
69 }
70
71 void keyboard_init(void)
72 {
73     timer_init();
74     matrix_init();
75 #ifdef PS2_MOUSE_ENABLE
76     ps2_mouse_init();
77 #endif
78 #ifdef SERIAL_MOUSE_ENABLE
79     serial_mouse_init();
80 #endif
81 #ifdef ADB_MOUSE_ENABLE
82     adb_mouse_init();
83 #endif
84
85
86 #ifdef BOOTMAGIC_ENABLE
87     bootmagic();
88 #endif
89
90 #ifdef BACKLIGHT_ENABLE
91     backlight_init();
92 #endif
93 }
94
95 /*
96  * Do keyboard routine jobs: scan matrix, light LEDs, ...
97  * This is repeatedly called as fast as possible.
98  */
99 void keyboard_task(void)
100 {
101     static matrix_row_t matrix_prev[MATRIX_ROWS];
102 #ifdef MATRIX_HAS_GHOST
103     static matrix_row_t matrix_ghost[MATRIX_ROWS];
104 #endif
105     static uint8_t led_status = 0;
106     matrix_row_t matrix_row = 0;
107     matrix_row_t matrix_change = 0;
108
109     matrix_scan();
110     for (uint8_t r = 0; r < MATRIX_ROWS; r++) {
111         matrix_row = matrix_get_row(r);
112         matrix_change = matrix_row ^ matrix_prev[r];
113         if (matrix_change) {
114 #ifdef MATRIX_HAS_GHOST
115             if (has_ghost_in_row(r)) {
116                 /* Keep track of whether ghosted status has changed for
117                  * debugging. But don't update matrix_prev until un-ghosted, or
118                  * the last key would be lost.
119                  */
120                 if (debug_matrix && matrix_ghost[r] != matrix_row) {
121                     matrix_print();
122                 }
123                 matrix_ghost[r] = matrix_row;
124                 continue;
125             }
126             matrix_ghost[r] = matrix_row;
127 #endif
128             if (debug_matrix) matrix_print();
129             matrix_row_t col_mask = 1;
130             for (uint8_t c = 0; c < MATRIX_COLS; c++, col_mask <<= 1) {
131                 if (matrix_change & col_mask) {
132                     keyevent_t e = (keyevent_t){
133                         .key = (keypos_t){ .row = r, .col = c },
134                         .pressed = (matrix_row & col_mask),
135                         .time = (timer_read() | 1) /* time should not be 0 */
136                     };
137                     action_exec(e);
138                     hook_matrix_change(e);
139                     // record a processed key
140                     matrix_prev[r] ^= col_mask;
141
142                     // This can miss stroke when scan matrix takes long like Topre
143                     // process a key per task call
144                     //goto MATRIX_LOOP_END;
145                 }
146             }
147         }
148     }
149     // call with pseudo tick event when no real key event.
150     action_exec(TICK);
151
152 //MATRIX_LOOP_END:
153
154     hook_keyboard_loop();
155
156 #ifdef MOUSEKEY_ENABLE
157     // mousekey repeat & acceleration
158     mousekey_task();
159 #endif
160
161 #ifdef PS2_MOUSE_ENABLE
162     ps2_mouse_task();
163 #endif
164
165 #ifdef SERIAL_MOUSE_ENABLE
166         serial_mouse_task();
167 #endif
168
169 #ifdef ADB_MOUSE_ENABLE
170         adb_mouse_task();
171 #endif
172
173     // update LED
174     if (led_status != host_keyboard_leds()) {
175         led_status = host_keyboard_leds();
176         if (debug_keyboard) dprintf("LED: %02X\n", led_status);
177         hook_keyboard_leds_change(led_status);
178     }
179 }
180
181 void keyboard_set_leds(uint8_t leds)
182 {
183     led_set(leds);
184 }
185
186 __attribute__ ((weak))
187 void led_set(uint8_t usb_led) {}