diff options
author | Ryan <fauxpark@gmail.com> | 2021-03-28 17:59:44 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-28 17:59:44 +1100 |
commit | 2ae38e9c43cc689be65f04ea5c101b9f46a38c5e (patch) | |
tree | 918b2c9d8a87513edf5a5aec9f930f626c16d179 /tmk_core/common | |
parent | 0d1162f1809bc9828d9b4655b8d3cf3db60c4b55 (diff) | |
download | qmk_firmware-2ae38e9c43cc689be65f04ea5c101b9f46a38c5e.tar.gz qmk_firmware-2ae38e9c43cc689be65f04ea5c101b9f46a38c5e.zip |
LED Matrix: Config functions (#12361)
Diffstat (limited to 'tmk_core/common')
-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 65d9e00c7a..e473806b21 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/>. #ifdef RGBLIGHT_ENABLE # include "rgblight.h" #endif +#ifdef LED_MATRIX_ENABLE +# include "led_matrix.h" +#endif #ifdef RGB_MATRIX_ENABLE # include "rgb_matrix.h" #endif @@ -412,6 +415,9 @@ MATRIX_LOOP_END: rgblight_task(); #endif +#ifdef LED_MATRIX_ENABLE + led_matrix_task(); +#endif #ifdef RGB_MATRIX_ENABLE rgb_matrix_task(); #endif |