diff options
author | QMK Bot <hello@qmk.fm> | 2021-09-25 16:50:23 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-09-25 16:50:23 +0000 |
commit | ab82ca1789e6fc6816eae3fff6162b9a0b857aee (patch) | |
tree | 88d1ee411e4d75ddd3081fb5ad3e4aa055bef753 /keyboards/dyz/dyz_tkl/config.h | |
parent | ea451cbe8e95eb601972fb3a7b0a7e618062658a (diff) | |
parent | aee0b0097b1a868fe63fe3be66c6c2947fcb3067 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/dyz/dyz_tkl/config.h')
-rw-r--r-- | keyboards/dyz/dyz_tkl/config.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/keyboards/dyz/dyz_tkl/config.h b/keyboards/dyz/dyz_tkl/config.h new file mode 100644 index 0000000000..22f17d403f --- /dev/null +++ b/keyboards/dyz/dyz_tkl/config.h @@ -0,0 +1,42 @@ +/* +Copyright 2021 dayatz + +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 + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define MANUFACTURER dyz +#define PRODUCT dyz_TKL + +/* key matrix size */ +#define MATRIX_ROWS 12 +#define MATRIX_COLS 9 + + +/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ +#define DEBOUNCE 5 + +/* Bootmagic Lite key configuration */ +#define BOOTMAGIC_LITE_ROW 0 +#define BOOTMAGIC_LITE_COLUMN 0 + +#define LED_CAPS_LOCK_PIN D2 + +#define TAP_CODE_DELAY 10 // Need this delay for some keys like VOLD/VOLU to work + +#define DYNAMIC_KEYMAP_LAYER_COUNT 3 |