LED Matrix: Config functions (#12361)

This commit is contained in:
Ryan 2021-03-28 17:59:44 +11:00 committed by GitHub
parent 0d1162f180
commit 2ae38e9c43
Failed to generate hash of commit
3 changed files with 116 additions and 106 deletions

View file

@ -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