diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-02-19 00:04:14 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-02-19 00:04:14 -0500 |
commit | c2239e6b96fdea11d449d220db3d8bca40b38bde (patch) | |
tree | 0c2fe7df345868b56dfb3478ceb1b54a1e8eec29 /tmk_core/common/keyboard.c | |
parent | 8d0fdf10086a0e8a1615f0521fccf1f5a2806497 (diff) | |
parent | 49e72632d2200fc3bf71d5ced2aa43058da3b2e0 (diff) |
merging
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 |