diff options
author | Fabian Topfstedt <topfstedt@schneevonmorgen.com> | 2017-07-31 21:17:16 +0200 |
---|---|---|
committer | Fabian Topfstedt <topfstedt@schneevonmorgen.com> | 2017-07-31 21:17:16 +0200 |
commit | 9609a47c3e2050f252378386c0ce2b37b4c2aed8 (patch) | |
tree | 644105ce37b2b23532253555f62ba52693b3c1d3 /tmk_core/common/keyboard.c | |
parent | 661106bac466f99341edea9d2e38e2f8c75746d9 (diff) | |
parent | bd0a888133d7f7c701574ac467c0f4be71221cc7 (diff) |
Merge https://github.com/qmk/qmk_firmware
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 97a8f1cd8c..9466e10e2d 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 STENO_ENABLE +# include "process_steno.h" +#endif #ifdef FAUXCLICKY_ENABLE # include "fauxclicky.h" #endif @@ -139,6 +142,9 @@ void keyboard_init(void) { #ifdef RGBLIGHT_ENABLE rgblight_init(); #endif +#ifdef STENO_ENABLE + steno_init(); +#endif #ifdef FAUXCLICKY_ENABLE fauxclicky_init(); #endif |