qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

config.h (726B)


      1 // Copyright 2018-2021
      2 // ENDO Katsuhiro <ka2hiro@curlybracket.co.jp>
      3 // David Philip Barr <@davidphilipbarr>
      4 // Pierre Chevalier <pierrechevalier83@gmail.com>
      5 // SPDX-License-Identifier: GPL-2.0+
      6 
      7 #pragma once
      8 
      9 // Defaults for usable home row mods
     10 #define TAPPING_TERM 230
     11 
     12 // Improved mouse key defaults
     13 // Delay between pressing a key and cursor movement
     14 #define MOUSEKEY_DELAY 16
     15 // Time between cursor movements in milliseconds
     16 #define MOUSEKEY_INTERVAL 16
     17 // Step size for acceleration
     18 #define MOUSEKEY_MOVE_DELTA 9
     19 #define MOUSEKEY_MAX_SPEED 12
     20 #define MOUSEKEY_TIME_TO_MAX 70
     21 #define MOUSEKEY_WHEEL_DELAY 16
     22 #define MOUSEKEY_WHEEL_INTERVAL 30
     23 #define MOUSEKEY_WHEEL_MAX_SPEED 10
     24 #define MOUSEKEY_WHEEL_TIME_TO_MAX 95
     25