2011-07-20 15:32:52 +00:00
|
|
|
/*
|
2013-01-28 05:06:42 +00:00
|
|
|
Copyright 2011,2012,2013 Jun Wako <wakojun@gmail.com>
|
2011-07-20 15:32:52 +00: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 04:56:05 +00:00
|
|
|
#include <stdint.h>
|
2011-02-10 06:51:30 +00:00
|
|
|
#include "keyboard.h"
|
2011-02-21 06:43:17 +00:00
|
|
|
#include "matrix.h"
|
2012-10-05 17:23:12 +00:00
|
|
|
#include "keymap.h"
|
|
|
|
#include "host.h"
|
2011-02-08 15:03:58 +00:00
|
|
|
#include "led.h"
|
2012-10-09 05:36:13 +00:00
|
|
|
#include "keycode.h"
|
2011-02-10 06:51:30 +00:00
|
|
|
#include "timer.h"
|
2011-02-08 15:03:58 +00:00
|
|
|
#include "print.h"
|
2011-02-10 06:51:30 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "command.h"
|
2012-10-05 17:23:12 +00:00
|
|
|
#include "util.h"
|
2012-10-22 17:14:36 +00:00
|
|
|
#include "sendchar.h"
|
2013-03-09 02:22:27 +00:00
|
|
|
#include "bootmagic.h"
|
2013-03-06 18:30:08 +00:00
|
|
|
#include "eeconfig.h"
|
2013-05-30 18:24:39 +00:00
|
|
|
#include "backlight.h"
|
2014-07-18 02:15:30 +00:00
|
|
|
#ifdef SOFTPWM_LED_ENABLE
|
|
|
|
#include "softpwm_led.h"
|
|
|
|
#else
|
2014-05-07 02:39:07 +00:00
|
|
|
#include "breathing_led.h"
|
2014-07-18 02:15:30 +00:00
|
|
|
#endif
|
2014-07-24 06:03:58 +00:00
|
|
|
#include "ledmap.h"
|
|
|
|
#include "ledmap_in_eeprom.h"
|
2014-04-03 04:46:03 +00:00
|
|
|
#include "keymap_in_eeprom.h"
|
2013-11-01 18:10:49 +00:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
|
|
|
# include "mousekey.h"
|
|
|
|
#endif
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
# include "ps2_mouse.h"
|
|
|
|
#endif
|
2014-08-26 08:36:44 +00:00
|
|
|
#ifdef SERIAL_MOUSE_ENABLE
|
|
|
|
#include "serial_mouse.h"
|
|
|
|
#endif
|
2011-02-08 15:03:58 +00:00
|
|
|
|
|
|
|
|
2013-03-05 10:18:01 +00: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
|
|
|
|
|
2014-08-28 02:33:46 +00:00
|
|
|
extern uint8_t ps2_mouse_enabled;
|
2013-03-05 10:18:01 +00:00
|
|
|
|
2012-10-05 17:23:12 +00:00
|
|
|
void keyboard_init(void)
|
|
|
|
{
|
|
|
|
timer_init();
|
|
|
|
matrix_init();
|
2014-01-14 07:12:21 +00:00
|
|
|
|
|
|
|
#ifdef LED_MATRIX_ENABLE
|
|
|
|
led_matrix_init();
|
|
|
|
#endif
|
|
|
|
|
2013-03-06 18:30:08 +00:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
2014-08-28 02:33:46 +00:00
|
|
|
if (ps2_mouse_enabled) {
|
2014-04-08 09:05:39 +00:00
|
|
|
ps2_mouse_init();
|
|
|
|
}
|
2013-03-06 18:30:08 +00:00
|
|
|
#endif
|
2014-08-26 08:36:44 +00:00
|
|
|
#ifdef SERIAL_MOUSE_ENABLE
|
|
|
|
serial_mouse_init();
|
|
|
|
#endif
|
|
|
|
|
2013-01-22 03:30:30 +00:00
|
|
|
|
2013-03-11 06:28:14 +00:00
|
|
|
#ifdef BOOTMAGIC_ENABLE
|
2013-03-09 02:22:27 +00:00
|
|
|
bootmagic();
|
2013-03-11 06:28:14 +00:00
|
|
|
#endif
|
2013-05-30 18:24:39 +00:00
|
|
|
|
2014-07-24 06:03:58 +00:00
|
|
|
#ifdef LEDMAP_ENABLE
|
|
|
|
#ifdef LEDMAP_IN_EEPROM_ENABLE
|
|
|
|
ledmap_in_eeprom_init();
|
|
|
|
#endif
|
2014-07-25 05:24:57 +00:00
|
|
|
ledmap_init();
|
2014-07-24 06:03:58 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-18 02:15:30 +00:00
|
|
|
#ifdef SOFTPWM_LED_ENABLE
|
2014-08-03 03:00:18 +00:00
|
|
|
softpwm_init();
|
2014-07-18 02:15:30 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-16 03:12:15 +00:00
|
|
|
#ifdef BREATHING_LED_ENABLE
|
|
|
|
breathing_led_init();
|
|
|
|
#endif
|
2014-05-26 03:12:51 +00:00
|
|
|
|
2014-08-03 03:00:18 +00:00
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init();
|
|
|
|
#endif
|
|
|
|
|
2014-04-03 04:46:03 +00:00
|
|
|
#ifdef KEYMAP_IN_EEPROM_ENABLE
|
|
|
|
keymap_in_eeprom_init();
|
|
|
|
#endif
|
2012-10-05 17:23:12 +00:00
|
|
|
}
|
|
|
|
|
2012-12-15 17:32:07 +00:00
|
|
|
/*
|
|
|
|
* Do keyboard routine jobs: scan mantrix, light LEDs, ...
|
|
|
|
* This is repeatedly called as fast as possible.
|
|
|
|
*/
|
2012-10-05 17:23:12 +00:00
|
|
|
void keyboard_task(void)
|
|
|
|
{
|
|
|
|
static matrix_row_t matrix_prev[MATRIX_ROWS];
|
2012-10-21 13:12:36 +00:00
|
|
|
static uint8_t led_status = 0;
|
2012-10-05 17:23:12 +00:00
|
|
|
matrix_row_t matrix_row = 0;
|
|
|
|
matrix_row_t matrix_change = 0;
|
2011-02-08 15:03:58 +00:00
|
|
|
|
2012-10-05 17:23:12 +00:00
|
|
|
matrix_scan();
|
2013-01-23 16:02:11 +00:00
|
|
|
for (uint8_t r = 0; r < MATRIX_ROWS; r++) {
|
2012-10-05 17:23:12 +00:00
|
|
|
matrix_row = matrix_get_row(r);
|
|
|
|
matrix_change = matrix_row ^ matrix_prev[r];
|
|
|
|
if (matrix_change) {
|
2012-10-17 15:10:20 +00:00
|
|
|
if (debug_matrix) matrix_print();
|
2013-03-05 10:18:01 +00:00
|
|
|
#ifdef MATRIX_HAS_GHOST
|
|
|
|
if (has_ghost_in_row(r)) {
|
|
|
|
matrix_prev[r] = matrix_row;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-23 16:02:11 +00:00
|
|
|
for (uint8_t c = 0; c < MATRIX_COLS; c++) {
|
|
|
|
if (matrix_change & ((matrix_row_t)1<<c)) {
|
2013-01-09 13:33:33 +00:00
|
|
|
action_exec((keyevent_t){
|
2014-06-16 15:57:59 +00:00
|
|
|
.key = (keypos_t){ .row = r, .col = c },
|
2013-02-25 08:00:35 +00:00
|
|
|
.pressed = (matrix_row & ((matrix_row_t)1<<c)),
|
2013-01-28 05:06:42 +00:00
|
|
|
.time = (timer_read() | 1) /* time should not be 0 */
|
2012-10-05 17:23:12 +00:00
|
|
|
});
|
|
|
|
// record a processed key
|
2013-01-23 16:02:11 +00:00
|
|
|
matrix_prev[r] ^= ((matrix_row_t)1<<c);
|
2012-10-05 17:23:12 +00:00
|
|
|
// process a key per task call
|
|
|
|
goto MATRIX_LOOP_END;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-08 15:03:58 +00:00
|
|
|
}
|
2013-01-26 17:42:48 +00:00
|
|
|
// call with pseudo tick event when no real key event.
|
|
|
|
action_exec(TICK);
|
2013-01-14 15:06:52 +00:00
|
|
|
|
|
|
|
MATRIX_LOOP_END:
|
2013-11-01 18:10:49 +00:00
|
|
|
|
2012-10-10 02:06:47 +00:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
2012-10-05 17:23:12 +00:00
|
|
|
// mousekey repeat & acceleration
|
|
|
|
mousekey_task();
|
2012-10-10 02:06:47 +00:00
|
|
|
#endif
|
2013-11-01 18:10:49 +00:00
|
|
|
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
2014-08-28 02:33:46 +00:00
|
|
|
if (ps2_mouse_enabled) {
|
2014-04-08 09:05:39 +00:00
|
|
|
ps2_mouse_task();
|
|
|
|
}
|
2013-11-01 18:10:49 +00:00
|
|
|
#endif
|
|
|
|
|
2014-08-26 08:36:44 +00:00
|
|
|
#ifdef SERIAL_MOUSE_ENABLE
|
|
|
|
serial_mouse_task();
|
|
|
|
#endif
|
|
|
|
|
2012-10-21 13:12:36 +00:00
|
|
|
// update LED
|
|
|
|
if (led_status != host_keyboard_leds()) {
|
|
|
|
led_status = host_keyboard_leds();
|
|
|
|
keyboard_set_leds(led_status);
|
|
|
|
}
|
2011-02-08 15:03:58 +00:00
|
|
|
}
|
2011-02-12 15:15:51 +00:00
|
|
|
|
|
|
|
void keyboard_set_leds(uint8_t leds)
|
|
|
|
{
|
2013-03-11 16:07:06 +00:00
|
|
|
if (debug_keyboard) { debug("keyboard_set_led: "); debug_hex8(leds); debug("\n"); }
|
2011-02-12 15:15:51 +00:00
|
|
|
led_set(leds);
|
|
|
|
}
|