diff options
Diffstat (limited to 'keyboards/cradio/keymaps')
-rw-r--r-- | keyboards/cradio/keymaps/default/config.h | 39 | ||||
-rw-r--r-- | keyboards/cradio/keymaps/default/keymap.c | 52 |
2 files changed, 0 insertions, 91 deletions
diff --git a/keyboards/cradio/keymaps/default/config.h b/keyboards/cradio/keymaps/default/config.h deleted file mode 100644 index dd469ca553..0000000000 --- a/keyboards/cradio/keymaps/default/config.h +++ /dev/null @@ -1,39 +0,0 @@ -/* Copyright 2018-2021 - * ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> - * David Philip Barr <@davidphilipbarr> - * Pierre Chevalier <pierrechevalier83@gmail.com> - * - * 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/>. - */ - -#pragma once - -// Defaults for usable home row mods -#define TAPPING_TERM 230 -#define IGNORE_MOD_TAP_INTERRUPT - -// Improved mouse key defaults -// Delay between pressing a key and cursor movement -#define MOUSEKEY_DELAY 16 -// Time between cursor movements in milliseconds -#define MOUSEKEY_INTERVAL 16 -// Step size for acceleration -#define MOUSEKEY_MOVE_DELTA 9 -#define MOUSEKEY_MAX_SPEED 12 -#define MOUSEKEY_TIME_TO_MAX 70 -#define MOUSEKEY_WHEEL_DELAY 16 -#define MOUSEKEY_WHEEL_INTERVAL 30 -#define MOUSEKEY_WHEEL_MAX_SPEED 10 -#define MOUSEKEY_WHEEL_TIME_TO_MAX 95 - diff --git a/keyboards/cradio/keymaps/default/keymap.c b/keyboards/cradio/keymaps/default/keymap.c deleted file mode 100644 index 97f69e6e11..0000000000 --- a/keyboards/cradio/keymaps/default/keymap.c +++ /dev/null @@ -1,52 +0,0 @@ -/* Copyright 2018-2021 - * ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> - * David Philip Barr <@davidphilipbarr> - * Pierre Chevalier <pierrechevalier83@gmail.com> - * - * 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/>. - */ - -#include QMK_KEYBOARD_H - -/* Base layer 0 layout uses home row mods. See the following guide for details: - * https://precondition.github.io/home-row-mods - */ - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - [0] = LAYOUT_split_3x5_2( - KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, - SFT_T(KC_A),ALT_T(KC_S),CTL_T(KC_D),GUI_T(KC_F), KC_G, KC_H, GUI_T(KC_J),CTL_T(KC_K),ALT_T(KC_L),SFT_T(KC_SCLN), - KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, - LT(2,KC_TAB), KC_ENT, KC_SPC, LT(1,KC_BSPC) - ), - [1] = LAYOUT_split_3x5_2( - _______, KC_1, KC_2, KC_3, KC_VOLU, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_DQUO, - _______, KC_4, KC_5, KC_6, KC_VOLD, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_QUOT, - KC_CAPS, KC_7, KC_8, KC_9, KC_0, _______, _______, _______, _______, _______, - MO(3), KC_GESC, _______, _______ - ), - [2] = LAYOUT_split_3x5_2( - _______, KC_LBRC, KC_LCBR, KC_RCBR, _______, KC_CIRC, KC_LPRN, KC_RPRN, KC_RBRC, KC_TILD, - KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_AMPR, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, - _______, _______, _______, _______, _______, KC_ASTR, KC_UNDS, KC_PLUS, KC_PIPE, _______, - _______, _______, KC_DEL, MO(3) - ), - [3] = LAYOUT_split_3x5_2( - _______, KC_F1, KC_F2, KC_F3, KC_F10, _______, KC_WH_U, KC_WH_D, _______, QK_BOOT, - _______, KC_F4, KC_F5, KC_F6, KC_F11, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_INS, - _______, KC_F7, KC_F8, KC_F9, KC_F12, _______, KC_BTN1, KC_BTN2, _______, _______, - _______, _______, _______, _______ - ) -}; - |