2010-10-14 08:36:00 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <avr/io.h>
|
2010-12-07 16:47:57 +00:00
|
|
|
#include <avr/interrupt.h>
|
2010-10-14 08:36:00 +00:00
|
|
|
#include <util/delay.h>
|
|
|
|
#include "print.h"
|
2010-10-26 12:32:45 +00:00
|
|
|
#include "debug.h"
|
2010-10-29 06:17:18 +00:00
|
|
|
#include "timer.h"
|
2010-10-26 12:32:45 +00:00
|
|
|
#include "util.h"
|
2010-10-14 08:36:00 +00:00
|
|
|
#include "jump_bootloader.h"
|
2010-10-29 06:17:18 +00:00
|
|
|
#include "usb_keyboard.h"
|
|
|
|
#include "usb_mouse.h"
|
2010-11-17 07:06:20 +00:00
|
|
|
#include "usb_extra.h"
|
2010-10-29 06:17:18 +00:00
|
|
|
#include "usb_keycodes.h"
|
2010-11-18 13:35:49 +00:00
|
|
|
#include "usb.h"
|
2010-10-29 06:17:18 +00:00
|
|
|
#include "layer.h"
|
2010-10-25 07:56:24 +00:00
|
|
|
#include "matrix_skel.h"
|
|
|
|
#include "keymap_skel.h"
|
2010-10-14 08:36:00 +00:00
|
|
|
#include "key_process.h"
|
2011-01-02 14:52:13 +00:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
|
|
|
# include "mousekey.h"
|
|
|
|
#endif
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
# include "ps2_mouse.h"
|
2010-10-27 11:51:45 +00:00
|
|
|
#endif
|
2010-10-14 08:36:00 +00:00
|
|
|
|
|
|
|
|
2010-10-23 18:27:43 +00:00
|
|
|
// TODO: refactoring
|
2010-10-14 08:36:00 +00:00
|
|
|
void proc_matrix(void) {
|
|
|
|
bool modified = false;
|
2010-10-28 06:43:51 +00:00
|
|
|
uint8_t fn_bits = 0;
|
2010-10-14 08:36:00 +00:00
|
|
|
|
2010-10-23 16:17:26 +00:00
|
|
|
matrix_scan();
|
|
|
|
modified = matrix_is_modified();
|
2010-11-18 13:35:49 +00:00
|
|
|
|
2010-10-23 16:17:26 +00:00
|
|
|
if (modified) {
|
2010-10-26 12:32:45 +00:00
|
|
|
if (debug_matrix) matrix_print();
|
|
|
|
#ifdef DEBUG_LED
|
2010-10-23 16:17:26 +00:00
|
|
|
// LED flash for debug
|
2010-10-26 12:32:45 +00:00
|
|
|
DEBUG_LED_CONFIG;
|
|
|
|
DEBUG_LED_ON;
|
|
|
|
#endif
|
2010-10-23 16:17:26 +00:00
|
|
|
}
|
2010-10-14 08:36:00 +00:00
|
|
|
|
2010-10-23 16:17:26 +00:00
|
|
|
if (matrix_has_ghost()) {
|
|
|
|
// should send error?
|
2010-10-26 12:32:45 +00:00
|
|
|
debug("matrix has ghost!!\n");
|
2010-10-23 16:17:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-24 13:17:35 +00:00
|
|
|
usb_keyboard_swap_report();
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-23 16:17:26 +00:00
|
|
|
for (int row = 0; row < matrix_rows(); row++) {
|
|
|
|
for (int col = 0; col < matrix_cols(); col++) {
|
2010-10-26 12:32:45 +00:00
|
|
|
if (!matrix_is_on(row, col)) continue;
|
2010-10-23 16:17:26 +00:00
|
|
|
|
2010-11-18 13:35:49 +00:00
|
|
|
// TODO: clean code
|
2010-10-29 06:17:18 +00:00
|
|
|
uint8_t code = layer_get_keycode(row, col);
|
2010-10-23 16:17:26 +00:00
|
|
|
if (code == KB_NO) {
|
2010-10-26 12:32:45 +00:00
|
|
|
// do nothing
|
|
|
|
} else if (IS_MOD(code)) {
|
2010-12-07 16:47:57 +00:00
|
|
|
usb_keyboard_add_mod(code);
|
2010-11-18 13:35:49 +00:00
|
|
|
} else if (IS_FN(code)) {
|
|
|
|
fn_bits |= FN_BIT(code);
|
2010-10-26 12:32:45 +00:00
|
|
|
} else if (IS_MOUSE(code)) {
|
2011-01-02 14:52:13 +00:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
|
|
|
mousekey_decode(code);
|
|
|
|
#endif
|
2010-11-18 13:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// audio control & system control
|
|
|
|
else if (code == KB_MUTE) {
|
|
|
|
usb_extra_audio_send(AUDIO_MUTE);
|
|
|
|
usb_extra_audio_send(0);
|
2010-11-17 07:06:20 +00:00
|
|
|
_delay_ms(500);
|
|
|
|
} else if (code == KB_VOLU) {
|
2010-11-18 13:35:49 +00:00
|
|
|
usb_extra_audio_send(AUDIO_VOL_UP);
|
|
|
|
usb_extra_audio_send(0);
|
2010-11-17 07:06:20 +00:00
|
|
|
_delay_ms(100);
|
|
|
|
} else if (code == KB_VOLD) {
|
2010-11-18 13:35:49 +00:00
|
|
|
usb_extra_audio_send(AUDIO_VOL_DOWN);
|
|
|
|
usb_extra_audio_send(0);
|
2010-11-17 07:06:20 +00:00
|
|
|
_delay_ms(100);
|
2010-11-18 13:35:49 +00:00
|
|
|
} else if (code == KB_PWR) {
|
|
|
|
if (suspend && remote_wakeup) {
|
|
|
|
usb_remote_wakeup();
|
|
|
|
} else {
|
|
|
|
usb_extra_system_send(SYSTEM_POWER_DOWN);
|
|
|
|
}
|
|
|
|
_delay_ms(1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
// normal keys
|
|
|
|
else {
|
2010-12-07 16:47:57 +00:00
|
|
|
usb_keyboard_add_key(code);
|
2010-10-14 08:36:00 +00:00
|
|
|
}
|
|
|
|
}
|
2010-10-23 16:17:26 +00:00
|
|
|
}
|
2010-11-05 17:03:52 +00:00
|
|
|
|
|
|
|
if (modified) {
|
|
|
|
#ifdef DEBUG_LED
|
|
|
|
// LED flash for debug
|
|
|
|
DEBUG_LED_CONFIG;
|
|
|
|
DEBUG_LED_OFF;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-10-29 06:17:18 +00:00
|
|
|
layer_switching(fn_bits);
|
2010-10-14 08:36:00 +00:00
|
|
|
|
2010-11-18 13:35:49 +00:00
|
|
|
// TODO: clean code
|
2010-12-07 16:47:57 +00:00
|
|
|
// special mode for control, develop and debug
|
2010-10-26 12:32:45 +00:00
|
|
|
if (keymap_is_special_mode(fn_bits)) {
|
2010-12-07 16:47:57 +00:00
|
|
|
switch (usb_keyboard_get_key()) {
|
2010-10-29 06:17:18 +00:00
|
|
|
case KB_H: // help
|
|
|
|
print_enable = true;
|
|
|
|
print("b: jump to bootloader\n");
|
2010-12-07 16:47:57 +00:00
|
|
|
print("d: toggle debug enable\n");
|
|
|
|
print("x: toggle matrix debug\n");
|
|
|
|
print("k: toggle keyboard debug\n");
|
|
|
|
print("m: toggle mouse debug\n");
|
|
|
|
print("p: toggle print enable\n");
|
2010-10-29 06:17:18 +00:00
|
|
|
print("v: print version\n");
|
|
|
|
print("t: print timer count\n");
|
2010-12-07 16:47:57 +00:00
|
|
|
print("s: print status\n");
|
|
|
|
print("`: toggle protcol(boot/report)\n");
|
2011-01-02 14:52:13 +00:00
|
|
|
#ifdef USB_NKRO_ENABLE
|
|
|
|
print("n: toggle USB_NKRO\n");
|
2010-12-07 16:47:57 +00:00
|
|
|
#endif
|
2010-11-18 13:35:49 +00:00
|
|
|
print("ESC: power down/wake up\n");
|
2011-01-02 14:52:13 +00:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
print("1: ps2_mouse_init \n");
|
|
|
|
print("2: ps2_mouse_read \n");
|
|
|
|
#endif
|
2010-10-29 06:17:18 +00:00
|
|
|
_delay_ms(500);
|
|
|
|
print_enable = false;
|
|
|
|
break;
|
2011-01-02 14:52:13 +00:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
case KB_1:
|
|
|
|
usb_keyboard_clear_report();
|
|
|
|
usb_keyboard_send();
|
|
|
|
print_enable = true;
|
|
|
|
print("ps2_mouse_init...\n");
|
|
|
|
_delay_ms(500);
|
|
|
|
ps2_mouse_init();
|
|
|
|
break;
|
|
|
|
case KB_2:
|
|
|
|
usb_keyboard_clear_report();
|
|
|
|
usb_keyboard_send();
|
|
|
|
print_enable = true;
|
|
|
|
print("ps2_mouse_read[btn x y]: ");
|
|
|
|
_delay_ms(100);
|
|
|
|
ps2_mouse_read();
|
|
|
|
phex(ps2_mouse_btn); print(" ");
|
|
|
|
phex(ps2_mouse_x); print(" ");
|
|
|
|
phex(ps2_mouse_y); print("\n");
|
|
|
|
print("ps2_mouse_error_count: "); phex(ps2_mouse_error_count); print("\n");
|
|
|
|
break;
|
|
|
|
#endif
|
2010-10-29 06:17:18 +00:00
|
|
|
case KB_B: // bootloader
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-26 12:32:45 +00:00
|
|
|
usb_keyboard_send();
|
|
|
|
print_enable = true;
|
|
|
|
print("jump to bootloader...\n");
|
|
|
|
_delay_ms(1000);
|
|
|
|
jump_bootloader(); // not return
|
|
|
|
break;
|
|
|
|
case KB_D: // debug all toggle
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-26 12:32:45 +00:00
|
|
|
usb_keyboard_send();
|
|
|
|
debug_enable = !debug_enable;
|
|
|
|
if (debug_enable) {
|
|
|
|
print_enable = true;
|
2010-10-29 06:17:18 +00:00
|
|
|
print("debug enabled.\n");
|
2010-10-26 12:32:45 +00:00
|
|
|
debug_matrix = true;
|
|
|
|
debug_keyboard = true;
|
|
|
|
debug_mouse = true;
|
|
|
|
} else {
|
|
|
|
print("debug disabled.\n");
|
|
|
|
print_enable = false;
|
|
|
|
debug_matrix = false;
|
|
|
|
debug_keyboard = false;
|
|
|
|
debug_mouse = false;
|
|
|
|
}
|
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
|
|
|
case KB_X: // debug matrix toggle
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-26 12:32:45 +00:00
|
|
|
usb_keyboard_send();
|
|
|
|
debug_matrix = !debug_matrix;
|
|
|
|
if (debug_matrix)
|
|
|
|
print("debug matrix enabled.\n");
|
|
|
|
else
|
|
|
|
print("debug matrix disabled.\n");
|
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
|
|
|
case KB_K: // debug keyboard toggle
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-26 12:32:45 +00:00
|
|
|
usb_keyboard_send();
|
|
|
|
debug_keyboard = !debug_keyboard;
|
|
|
|
if (debug_keyboard)
|
|
|
|
print("debug keyboard enabled.\n");
|
|
|
|
else
|
|
|
|
print("debug keyboard disabled.\n");
|
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
|
|
|
case KB_M: // debug mouse toggle
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-26 12:32:45 +00:00
|
|
|
usb_keyboard_send();
|
|
|
|
debug_mouse = !debug_mouse;
|
|
|
|
if (debug_mouse)
|
|
|
|
print("debug mouse enabled.\n");
|
|
|
|
else
|
|
|
|
print("debug mouse disabled.\n");
|
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
|
|
|
case KB_V: // print version & information
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-26 12:32:45 +00:00
|
|
|
usb_keyboard_send();
|
2010-10-29 06:17:18 +00:00
|
|
|
print_enable = true;
|
2010-10-27 11:51:45 +00:00
|
|
|
print(STR(DESCRIPTION) "\n");
|
2010-10-26 12:32:45 +00:00
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
2010-10-29 06:17:18 +00:00
|
|
|
case KB_T: // print timer
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-29 06:17:18 +00:00
|
|
|
usb_keyboard_send();
|
|
|
|
print_enable = true;
|
|
|
|
print("timer: "); phex16(timer_count); print("\n");
|
|
|
|
_delay_ms(500);
|
|
|
|
break;
|
|
|
|
case KB_P: // print toggle
|
2010-11-03 08:33:20 +00:00
|
|
|
usb_keyboard_clear_report();
|
2010-10-29 06:17:18 +00:00
|
|
|
usb_keyboard_send();
|
|
|
|
if (print_enable) {
|
|
|
|
print("print disabled.\n");
|
|
|
|
print_enable = false;
|
|
|
|
} else {
|
|
|
|
print_enable = true;
|
|
|
|
print("print enabled.\n");
|
|
|
|
}
|
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
2010-12-07 16:47:57 +00:00
|
|
|
case KB_S:
|
2010-11-18 13:35:49 +00:00
|
|
|
usb_keyboard_clear_report();
|
|
|
|
usb_keyboard_send();
|
2010-12-07 16:47:57 +00:00
|
|
|
print("UDCON: "); phex(UDCON); print("\n");
|
2010-11-18 13:35:49 +00:00
|
|
|
print("UDIEN: "); phex(UDIEN); print("\n");
|
|
|
|
print("UDINT: "); phex(UDINT); print("\n");
|
2010-12-07 16:47:57 +00:00
|
|
|
print("usb_keyboard_leds:"); phex(usb_keyboard_leds); print("\n");
|
|
|
|
print("usb_keyboard_protocol:"); phex(usb_keyboard_protocol); print("\n");
|
|
|
|
print("usb_keyboard_idle_config:"); phex(usb_keyboard_idle_config); print("\n");
|
|
|
|
print("usb_keyboard_idle_count:"); phex(usb_keyboard_idle_count); print("\n");
|
2011-01-02 14:52:13 +00:00
|
|
|
print("usb_mouse_protocol:"); phex(usb_mouse_protocol); print("\n");
|
|
|
|
if (usb_keyboard_nkro) print("USB_NKRO: enabled\n"); else print("USB_NKRO: disabled\n");
|
2010-12-07 16:47:57 +00:00
|
|
|
_delay_ms(500);
|
|
|
|
break;
|
|
|
|
case KB_GRV:
|
|
|
|
usb_keyboard_clear_report();
|
|
|
|
usb_keyboard_send();
|
|
|
|
usb_keyboard_protocol = !usb_keyboard_protocol;
|
2011-01-02 14:52:13 +00:00
|
|
|
usb_mouse_protocol = !usb_mouse_protocol;
|
2010-12-07 16:47:57 +00:00
|
|
|
print("keyboard protcol: ");
|
|
|
|
if (usb_keyboard_protocol) print("report"); else print("boot");
|
|
|
|
print("\n");
|
|
|
|
print("mouse protcol: ");
|
2011-01-02 14:52:13 +00:00
|
|
|
if (usb_mouse_protocol) print("report"); else print("boot");
|
2010-12-07 16:47:57 +00:00
|
|
|
print("\n");
|
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
2011-01-02 14:52:13 +00:00
|
|
|
#ifdef USB_NKRO_ENABLE
|
2010-12-07 16:47:57 +00:00
|
|
|
case KB_N:
|
|
|
|
usb_keyboard_clear_report();
|
|
|
|
usb_keyboard_send();
|
|
|
|
usb_keyboard_nkro = !usb_keyboard_nkro;
|
2011-01-02 14:52:13 +00:00
|
|
|
if (usb_keyboard_nkro) print("USB_NKRO: enabled\n"); else print("USB_NKRO: disabled\n");
|
2010-11-18 13:35:49 +00:00
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
2010-12-07 16:47:57 +00:00
|
|
|
#endif
|
2010-11-18 13:35:49 +00:00
|
|
|
case KB_ESC:
|
|
|
|
usb_keyboard_clear_report();
|
|
|
|
usb_keyboard_send();
|
|
|
|
if (suspend && remote_wakeup) {
|
|
|
|
usb_remote_wakeup();
|
|
|
|
} else {
|
|
|
|
usb_extra_system_send(SYSTEM_POWER_DOWN);
|
|
|
|
}
|
|
|
|
_delay_ms(1000);
|
|
|
|
break;
|
2010-10-26 12:32:45 +00:00
|
|
|
}
|
2010-10-23 16:17:26 +00:00
|
|
|
}
|
2010-10-14 08:36:00 +00:00
|
|
|
|
|
|
|
|
2010-10-23 16:17:26 +00:00
|
|
|
if (modified) {
|
|
|
|
usb_keyboard_send();
|
|
|
|
}
|
2011-01-02 14:52:13 +00:00
|
|
|
|
|
|
|
#ifdef MOUSEKEY_ENABLE
|
|
|
|
// mouse keys
|
|
|
|
mousekey_usb_send();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
// ps2 mouse
|
|
|
|
//if (ps2_mouse_error_count > 10) {
|
|
|
|
ps2_mouse_read();
|
|
|
|
ps2_mouse_usb_send();
|
|
|
|
//}
|
|
|
|
#endif
|
2010-10-14 08:36:00 +00:00
|
|
|
}
|