aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/keyboard.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-03-28 17:59:44 +1100
committerGitHub <noreply@github.com>2021-03-28 17:59:44 +1100
commit2ae38e9c43cc689be65f04ea5c101b9f46a38c5e (patch)
tree918b2c9d8a87513edf5a5aec9f930f626c16d179 /tmk_core/common/keyboard.c
parent0d1162f1809bc9828d9b4655b8d3cf3db60c4b55 (diff)
downloadqmk_firmware-2ae38e9c43cc689be65f04ea5c101b9f46a38c5e.tar.gz
qmk_firmware-2ae38e9c43cc689be65f04ea5c101b9f46a38c5e.zip
LED Matrix: Config functions (#12361)
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