]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - keyboard/ergodox/config.h
Update of IS_COMMAND (thanks to ibm4704 branch)
[max/tmk_keyboard.git] / keyboard / ergodox / config.h
index de32be7ecfbe881c78d1d4008d747560e0a74ae3..7c8e0d4c83428bfdc9a06098c44c0e403a959b79 100644 (file)
@@ -50,7 +50,8 @@ Project located at <https://github.com/benblazak/ergodox-firmware>
  *
  * And so, there is no sense to have DEBOUNCE higher than 2.
  */
-#define DEBOUNCE    2
+#define DEBOUNCE        2
+#define TAPPING_TERM    250
 
 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
 #define LOCKING_SUPPORT_ENABLE
@@ -59,6 +60,7 @@ Project located at <https://github.com/benblazak/ergodox-firmware>
 
 /* key combination for command */
 #define IS_COMMAND() ( \
+    keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
     keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
 )
 
@@ -81,6 +83,6 @@ Project located at <https://github.com/benblazak/ergodox-firmware>
 //#define NO_ACTION_ONESHOT
 //#define NO_ACTION_MACRO
 //#define NO_ACTION_FUNCTION
-//#define DEBUG_MATRIX_FREQ
+//#define DEBUG_MATRIX_SCAN_RATE
 
 #endif