aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/keyboard.c')
-rw-r--r--tmk_core/common/keyboard.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c
index 65d9e00c7..e473806b2 100644
--- a/tmk_core/common/keyboard.c
+++ b/tmk_core/common/keyboard.c
@@ -49,6 +49,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
49#ifdef RGBLIGHT_ENABLE 49#ifdef RGBLIGHT_ENABLE
50# include "rgblight.h" 50# include "rgblight.h"
51#endif 51#endif
52#ifdef LED_MATRIX_ENABLE
53# include "led_matrix.h"
54#endif
52#ifdef RGB_MATRIX_ENABLE 55#ifdef RGB_MATRIX_ENABLE
53# include "rgb_matrix.h" 56# include "rgb_matrix.h"
54#endif 57#endif
@@ -412,6 +415,9 @@ MATRIX_LOOP_END:
412 rgblight_task(); 415 rgblight_task();
413#endif 416#endif
414 417
418#ifdef LED_MATRIX_ENABLE
419 led_matrix_task();
420#endif
415#ifdef RGB_MATRIX_ENABLE 421#ifdef RGB_MATRIX_ENABLE
416 rgb_matrix_task(); 422 rgb_matrix_task();
417#endif 423#endif