]> git.gir.st - tmk_keyboard.git/blob - common/keyboard.c
Matrix power saving
[tmk_keyboard.git] / 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 <util/delay.h>
19 #include <avr/wdt.h>
20 #include "keyboard.h"
21 #include "matrix.h"
22 #include "keymap.h"
23 #include "host.h"
24 #include "led.h"
25 #include "keycode.h"
26 #include "timer.h"
27 #include "print.h"
28 #include "debug.h"
29 #include "command.h"
30 #include "util.h"
31 #include "sendchar.h"
32 #include "bootmagic.h"
33 #include "eeconfig.h"
34 #include "backlight.h"
35 #include "suspend.h"
36 #ifdef MOUSEKEY_ENABLE
37 # include "mousekey.h"
38 #endif
39 #ifdef PS2_MOUSE_ENABLE
40 # include "ps2_mouse.h"
41 #endif
42 #include "lufa.h"
43
44
45 #ifdef MATRIX_HAS_GHOST
46 static bool has_ghost_in_row(uint8_t row)
47 {
48 matrix_row_t matrix_row = matrix_get_row(row);
49 // No ghost exists when less than 2 keys are down on the row
50 if (((matrix_row - 1) & matrix_row) == 0)
51 return false;
52
53 // Ghost occurs when the row shares column line with other row
54 for (uint8_t i=0; i < MATRIX_ROWS; i++) {
55 if (i != row && (matrix_get_row(i) & matrix_row))
56 return true;
57 }
58 return false;
59 }
60 #endif
61
62
63 void keyboard_init(void)
64 {
65 timer_init();
66 matrix_init();
67 #ifdef PS2_MOUSE_ENABLE
68 ps2_mouse_init();
69 #endif
70
71 #ifdef BOOTMAGIC_ENABLE
72 bootmagic();
73 #endif
74
75 #ifdef BACKLIGHT_ENABLE
76 backlight_init();
77 #endif
78 }
79
80 /*
81 * Do keyboard routine jobs: scan mantrix, light LEDs, ...
82 * This is repeatedly called as fast as possible.
83 */
84 void keyboard_task(void)
85 {
86 static matrix_row_t matrix_prev[MATRIX_ROWS];
87 static uint8_t led_status = 0;
88 matrix_row_t matrix_row = 0;
89 matrix_row_t matrix_change = 0;
90 static uint32_t last_key_time = 0;
91
92 /*
93 #define SLEEP_TIME_MS 10000
94 // (USB_DeviceState == DEVICE_STATE_Suspended) {
95 //if (timer_elapsed32(last_key_time) > SLEEP_TIME_MS) {
96 // TODO: remove LUFA dependent code
97 if (!USB_IsInitialized && timer_elapsed32(last_key_time) > SLEEP_TIME_MS) {
98 matrix_power_down();
99 // TODO: power down only when no USB connection
100 // Or it makes USB connection lost or suspended
101 suspend_power_down(WDTO_15MS);
102 matrix_power_up();
103 }
104 else {
105 matrix_power_down();
106 matrix_power_up();
107 }
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 if (debug_matrix) matrix_print();
115 #ifdef MATRIX_HAS_GHOST
116 if (has_ghost_in_row(r)) {
117 matrix_prev[r] = matrix_row;
118 continue;
119 }
120 #endif
121 for (uint8_t c = 0; c < MATRIX_COLS; c++) {
122 if (matrix_change & ((matrix_row_t)1<<c)) {
123 action_exec((keyevent_t){
124 .key = (keypos_t){ .row = r, .col = c },
125 .pressed = (matrix_row & ((matrix_row_t)1<<c)),
126 .time = (timer_read() | 1) /* time should not be 0 */
127 });
128 // record a processed key
129 matrix_prev[r] ^= ((matrix_row_t)1<<c);
130 last_key_time = timer_read32();
131 // process a key per task call
132 goto MATRIX_LOOP_END;
133 }
134 }
135 }
136 }
137 // call with pseudo tick event when no real key event.
138 action_exec(TICK);
139
140 MATRIX_LOOP_END:
141
142 #ifdef MOUSEKEY_ENABLE
143 // mousekey repeat & acceleration
144 mousekey_task();
145 #endif
146
147 #ifdef PS2_MOUSE_ENABLE
148 ps2_mouse_task();
149 #endif
150
151 // update LED
152 if (led_status != host_keyboard_leds()) {
153 led_status = host_keyboard_leds();
154 keyboard_set_leds(led_status);
155 }
156 }
157
158 void keyboard_set_leds(uint8_t leds)
159 {
160 if (debug_keyboard) { debug("keyboard_set_led: "); debug_hex8(leds); debug("\n"); }
161 led_set(leds);
162 }
Imprint / Impressum