diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-02-13 10:58:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 10:58:50 -0500 |
commit | fd2925efbac0d7963f3d267dd5264f08a0a4e9dc (patch) | |
tree | 906568677ed027a807d5e9c0c1bc1c2ae001f0f6 /tmk_core/common/keyboard.c | |
parent | 21ad0c5bcdf38d3a9bc365ee23d721bfc8af9c56 (diff) | |
parent | 8c93c5d9ab8a0a69d84f707db71f417b66402693 (diff) |
Merge pull request #1094 from priyadi/faux_clicky
Implement faux-clicky feature
Diffstat (limited to 'tmk_core/common/keyboard.c')
-rw-r--r-- | tmk_core/common/keyboard.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index 3aa82231b0..eac1f1dd81 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -51,6 +51,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef RGBLIGHT_ENABLE # include "rgblight.h" #endif +#ifdef FAUXCLICKY_ENABLE +# include "fauxclicky.h" +#endif #ifdef SERIAL_LINK_ENABLE # include "serial_link/system/serial_link.h" #endif @@ -108,6 +111,9 @@ void keyboard_init(void) { #ifdef RGBLIGHT_ENABLE rgblight_init(); #endif +#ifdef FAUXCLICKY_ENABLE + fauxclicky_init(); +#endif #if defined(NKRO_ENABLE) && defined(FORCE_NKRO) keymap_config.nkro = 1; #endif |