2011-07-20 17:32:52 +02:00
|
|
|
/*
|
2013-01-28 06:06:42 +01:00
|
|
|
Copyright 2011,2012,2013 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/>.
|
|
|
|
*/
|
2013-02-11 05:56:05 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <util/delay.h>
|
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"
|
2013-03-09 03:22:27 +01:00
|
|
|
#include "bootmagic.h"
|
2013-03-06 19:30:08 +01:00
|
|
|
#include "eeconfig.h"
|
2013-03-11 07:28:14 +01:00
|
|
|
#include "mousekey.h"
|
2011-02-08 16:03:58 +01:00
|
|
|
|
|
|
|
|
2013-03-05 11:18:01 +01:00
|
|
|
#ifdef MATRIX_HAS_GHOST
|
|
|
|
static bool has_ghost_in_row(uint8_t row)
|
|
|
|
{
|
|
|
|
matrix_row_t matrix_row = matrix_get_row(row);
|
|
|
|
// No ghost exists when less than 2 keys are down on the row
|
|
|
|
if (((matrix_row - 1) & matrix_row) == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Ghost occurs when the row shares column line with other row
|
|
|
|
for (uint8_t i=0; i < MATRIX_ROWS; i++) {
|
|
|
|
if (i != row && (matrix_get_row(i) & matrix_row))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
void keyboard_init(void)
|
|
|
|
{
|
2012-10-22 19:14:36 +02:00
|
|
|
// TODO: configuration of sendchar impl
|
2013-03-19 06:08:40 +01:00
|
|
|
print_set_sendchar(sendchar);
|
2012-10-22 19:14:36 +02:00
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
timer_init();
|
|
|
|
matrix_init();
|
2013-03-06 19:30:08 +01:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
ps2_mouse_init();
|
|
|
|
#endif
|
2013-01-22 04:30:30 +01:00
|
|
|
|
2013-03-11 07:28:14 +01:00
|
|
|
#ifdef BOOTMAGIC_ENABLE
|
2013-03-09 03:22:27 +01:00
|
|
|
bootmagic();
|
2013-03-11 07:28:14 +01:00
|
|
|
#endif
|
2012-10-05 19:23:12 +02:00
|
|
|
}
|
|
|
|
|
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();
|
2013-01-23 17:02:11 +01:00
|
|
|
for (uint8_t r = 0; r < MATRIX_ROWS; r++) {
|
2012-10-05 19:23:12 +02:00
|
|
|
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();
|
2013-03-05 11:18:01 +01:00
|
|
|
#ifdef MATRIX_HAS_GHOST
|
|
|
|
if (has_ghost_in_row(r)) {
|
|
|
|
matrix_prev[r] = matrix_row;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-23 17:02:11 +01:00
|
|
|
for (uint8_t c = 0; c < MATRIX_COLS; c++) {
|
|
|
|
if (matrix_change & ((matrix_row_t)1<<c)) {
|
2013-01-09 14:33:33 +01:00
|
|
|
action_exec((keyevent_t){
|
2013-02-13 04:16:24 +01:00
|
|
|
.key = (key_t){ .row = r, .col = c },
|
2013-02-25 09:00:35 +01:00
|
|
|
.pressed = (matrix_row & ((matrix_row_t)1<<c)),
|
2013-01-28 06:06:42 +01:00
|
|
|
.time = (timer_read() | 1) /* time should not be 0 */
|
2012-10-05 19:23:12 +02:00
|
|
|
});
|
|
|
|
// record a processed key
|
2013-01-23 17:02:11 +01:00
|
|
|
matrix_prev[r] ^= ((matrix_row_t)1<<c);
|
2012-10-05 19:23:12 +02:00
|
|
|
// process a key per task call
|
|
|
|
goto MATRIX_LOOP_END;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-08 16:03:58 +01:00
|
|
|
}
|
2013-01-26 18:42:48 +01:00
|
|
|
// call with pseudo tick event when no real key event.
|
|
|
|
action_exec(TICK);
|
2013-01-14 16:06:52 +01:00
|
|
|
|
|
|
|
MATRIX_LOOP_END:
|
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
|
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);
|
|
|
|
}
|
2011-02-08 16:03:58 +01:00
|
|
|
}
|
2011-02-12 16:15:51 +01:00
|
|
|
|
|
|
|
void keyboard_set_leds(uint8_t leds)
|
|
|
|
{
|
2013-03-11 17:07:06 +01:00
|
|
|
if (debug_keyboard) { debug("keyboard_set_led: "); debug_hex8(leds); debug("\n"); }
|
2011-02-12 16:15:51 +01:00
|
|
|
led_set(leds);
|
|
|
|
}
|