2011-07-20 17:32:52 +02:00
|
|
|
/*
|
2012-10-22 19:14:36 +02:00
|
|
|
Copyright 2011,2012 Jun Wako <wakojun@gmail.com>
|
2011-07-20 17:32:52 +02:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2011-02-10 07:51:30 +01:00
|
|
|
#include "keyboard.h"
|
2011-02-21 07:43:17 +01:00
|
|
|
#include "matrix.h"
|
2012-10-05 19:23:12 +02:00
|
|
|
#include "keymap.h"
|
|
|
|
#include "host.h"
|
2011-02-08 16:03:58 +01:00
|
|
|
#include "led.h"
|
2012-10-09 07:36:13 +02:00
|
|
|
#include "keycode.h"
|
2011-02-10 07:51:30 +01:00
|
|
|
#include "timer.h"
|
2011-02-08 16:03:58 +01:00
|
|
|
#include "print.h"
|
2011-02-10 07:51:30 +01:00
|
|
|
#include "debug.h"
|
|
|
|
#include "command.h"
|
2012-10-05 19:23:12 +02:00
|
|
|
#include "util.h"
|
2012-10-22 19:14:36 +02:00
|
|
|
#include "sendchar.h"
|
2011-02-10 07:51:30 +01:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
|
|
|
#include "mousekey.h"
|
|
|
|
#endif
|
2011-02-08 16:03:58 +01:00
|
|
|
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
void keyboard_init(void)
|
|
|
|
{
|
2012-10-26 20:07:37 +02:00
|
|
|
// TODO: to enable debug print magic key bind on boot time
|
2012-10-05 19:23:12 +02:00
|
|
|
|
2012-10-22 19:14:36 +02:00
|
|
|
// TODO: configuration of sendchar impl
|
|
|
|
print_sendchar_func = sendchar;
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
timer_init();
|
|
|
|
matrix_init();
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
ps2_mouse_init();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-12-15 18:32:07 +01:00
|
|
|
/*
|
|
|
|
* Do keyboard routine jobs: scan mantrix, light LEDs, ...
|
|
|
|
* This is repeatedly called as fast as possible.
|
|
|
|
*/
|
2012-10-05 19:23:12 +02:00
|
|
|
void keyboard_task(void)
|
|
|
|
{
|
|
|
|
static matrix_row_t matrix_prev[MATRIX_ROWS];
|
2012-10-21 15:12:36 +02:00
|
|
|
static uint8_t led_status = 0;
|
2012-10-05 19:23:12 +02:00
|
|
|
matrix_row_t matrix_row = 0;
|
|
|
|
matrix_row_t matrix_change = 0;
|
2011-02-08 16:03:58 +01:00
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
matrix_scan();
|
|
|
|
for (int r = 0; r < MATRIX_ROWS; r++) {
|
|
|
|
matrix_row = matrix_get_row(r);
|
|
|
|
matrix_change = matrix_row ^ matrix_prev[r];
|
|
|
|
if (matrix_change) {
|
2012-10-17 17:10:20 +02:00
|
|
|
if (debug_matrix) matrix_print();
|
2011-02-08 16:03:58 +01:00
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
for (int c = 0; c < MATRIX_COLS; c++) {
|
|
|
|
if (matrix_change & (1<<c)) {
|
2013-01-09 14:33:33 +01:00
|
|
|
action_exec((keyevent_t){
|
2012-12-15 18:32:07 +01:00
|
|
|
.key = (keypos_t){ .row = r, .col = c },
|
2013-01-09 14:33:33 +01:00
|
|
|
.pressed = (matrix_row & (1<<c)),
|
2013-01-13 02:24:20 +01:00
|
|
|
.time = (timer_read() | 1) /* NOTE: 0 means no event */
|
2012-10-05 19:23:12 +02:00
|
|
|
});
|
|
|
|
// record a processed key
|
|
|
|
matrix_prev[r] ^= (1<<c);
|
|
|
|
// process a key per task call
|
|
|
|
goto MATRIX_LOOP_END;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-08 16:03:58 +01:00
|
|
|
}
|
2013-01-14 16:06:52 +01:00
|
|
|
// call to update delaying layer when no real event
|
|
|
|
action_exec((keyevent_t) {
|
|
|
|
.key = (keypos_t){ .row = 255, .col = 255 }, // assume this key doesn't exist
|
|
|
|
.pressed = false,
|
|
|
|
.time = 0,
|
|
|
|
});
|
|
|
|
|
|
|
|
MATRIX_LOOP_END:
|
2011-02-08 16:03:58 +01:00
|
|
|
|
2012-10-10 04:06:47 +02:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
2012-10-05 19:23:12 +02:00
|
|
|
// mousekey repeat & acceleration
|
|
|
|
mousekey_task();
|
2012-10-10 04:06:47 +02:00
|
|
|
#endif
|
2011-02-10 07:51:30 +01:00
|
|
|
|
2012-10-21 15:12:36 +02:00
|
|
|
// update LED
|
|
|
|
if (led_status != host_keyboard_leds()) {
|
|
|
|
led_status = host_keyboard_leds();
|
|
|
|
keyboard_set_leds(led_status);
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
return;
|
2011-02-08 16:03:58 +01:00
|
|
|
}
|
2011-02-12 16:15:51 +01:00
|
|
|
|
|
|
|
void keyboard_set_leds(uint8_t leds)
|
|
|
|
{
|
|
|
|
led_set(leds);
|
|
|
|
}
|