Browse Source

Add child proof keyboard locking feature!

Fix: add wait for Power down command
Add ifdef of MOUSEKEY_ENABLE
tags/v1.9
tmk 11 years ago
parent
commit
fffc375b45
3 changed files with 22 additions and 5 deletions
  1. 20
    3
      common/command.c
  2. 1
    1
      common/keyboard.c
  3. 1
    1
      common/matrix.h

+ 20
- 3
common/command.c View File

static void command_common_help(void); static void command_common_help(void);
static bool command_console(uint8_t code); static bool command_console(uint8_t code);
static void command_console_help(void); static void command_console_help(void);
#ifdef MOUSEKEY_ENABLE
static bool mousekey_console(uint8_t code); static bool mousekey_console(uint8_t code);
static void mousekey_console_help(void); static void mousekey_console_help(void);
#endif


static uint8_t kc2int(uint8_t code);
static uint8_t numkey2num(uint8_t code);
static void switch_layer(uint8_t layer); static void switch_layer(uint8_t layer);
static void clear_keyboard(void); static void clear_keyboard(void);


case CONSOLE: case CONSOLE:
command_console(code); command_console(code);
break; break;
#ifdef MOUSEKEY_ENABLE
case MOUSEKEY: case MOUSEKEY:
mousekey_console(code); mousekey_console(code);
break; break;
#endif
default: default:
state = ONESHOT; state = ONESHOT;
return false; return false;
print("3/F3: switch to Layer3 \n"); print("3/F3: switch to Layer3 \n");
print("4/F4: switch to Layer4 \n"); print("4/F4: switch to Layer4 \n");
print("PScr: power down/remote wake-up\n"); print("PScr: power down/remote wake-up\n");
print("Caps: Lock Keyboard(Child Proof)\n");
print("Paus: jump to bootloader\n"); print("Paus: jump to bootloader\n");
} }


static bool command_common(uint8_t code) static bool command_common(uint8_t code)
{ {
static host_driver_t *host_driver = 0;
switch (code) { switch (code) {
case KC_CAPSLOCK:
if (host_get_driver()) {
host_driver = host_get_driver();
host_set_driver(0);
print("Locked.\n");
} else {
host_set_driver(host_driver);
print("Unlocked.\n");
}
break;
case KC_H: case KC_H:
case KC_SLASH: /* ? */ case KC_SLASH: /* ? */
command_common_help(); command_common_help();
} }
#else #else
host_system_send(SYSTEM_POWER_DOWN); host_system_send(SYSTEM_POWER_DOWN);
_delay_ms(100);
host_system_send(0); host_system_send(0);
_delay_ms(500); _delay_ms(500);
#endif #endif
case KC_8: case KC_8:
case KC_9: case KC_9:
case KC_0: case KC_0:
mousekey_param = kc2int(code);
mousekey_param = numkey2num(code);
print("selected parameter: "); pdec(mousekey_param); print("\n"); print("selected parameter: "); pdec(mousekey_param); print("\n");
break; break;
case KC_UP: case KC_UP:
/*********************************************************** /***********************************************************
* Utilities * Utilities
***********************************************************/ ***********************************************************/
static uint8_t kc2int(uint8_t code)
static uint8_t numkey2num(uint8_t code)
{ {
switch (code) { switch (code) {
case KC_1: return 1; case KC_1: return 1;

+ 1
- 1
common/keyboard.c View File

matrix_row = matrix_get_row(r); matrix_row = matrix_get_row(r);
matrix_change = matrix_row ^ matrix_prev[r]; matrix_change = matrix_row ^ matrix_prev[r];
if (matrix_change) { if (matrix_change) {
matrix_debug();
if (debug_matrix) matrix_print();


for (int c = 0; c < MATRIX_COLS; c++) { for (int c = 0; c < MATRIX_COLS; c++) {
if (matrix_change & (1<<c)) { if (matrix_change & (1<<c)) {

+ 1
- 1
common/matrix.h View File

/* count keys pressed */ /* count keys pressed */
uint8_t matrix_key_count(void); uint8_t matrix_key_count(void);
/* print matrix for debug */ /* print matrix for debug */
void matrix_debug(void);
void matrix_print(void);




#endif #endif

Loading…
Cancel
Save