aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix/rgb_matrix_drivers.c
diff options
context:
space:
mode:
authorHorrorTroll <sonicvipduc@gmail.com>2024-02-16 21:41:35 +0700
committerGitHub <noreply@github.com>2024-02-17 01:41:35 +1100
commitf6709e65ebfd385a9963348d41c19abe9b91e8ad (patch)
treee61190504d666a8535f5e41bed90d8b5cdb7b9dc /quantum/rgb_matrix/rgb_matrix_drivers.c
parent9b0b3d7b25a845bd1af2152ab1259a6522d5590f (diff)
Add RGB matrix & LED Matrix support for IS31FL3729 (#21944)
Co-authored-by: Xelus22 <preyas22@gmail.com> Co-authored-by: dexter93 <d3xter93@gmail.com>
Diffstat (limited to 'quantum/rgb_matrix/rgb_matrix_drivers.c')
-rw-r--r--quantum/rgb_matrix/rgb_matrix_drivers.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/rgb_matrix/rgb_matrix_drivers.c b/quantum/rgb_matrix/rgb_matrix_drivers.c
index b5e539657d..95d1e884f0 100644
--- a/quantum/rgb_matrix/rgb_matrix_drivers.c
+++ b/quantum/rgb_matrix/rgb_matrix_drivers.c
@@ -36,6 +36,14 @@ const rgb_matrix_driver_t rgb_matrix_driver = {
.set_color_all = is31fl3218_set_color_all,
};
+#elif defined(RGB_MATRIX_IS31FL3729)
+const rgb_matrix_driver_t rgb_matrix_driver = {
+ .init = is31fl3729_init_drivers,
+ .flush = is31fl3729_flush,
+ .set_color = is31fl3729_set_color,
+ .set_color_all = is31fl3729_set_color_all,
+};
+
#elif defined(RGB_MATRIX_IS31FL3731)
const rgb_matrix_driver_t rgb_matrix_driver = {
.init = is31fl3731_init_drivers,