LED drivers: extract IS31FL3742A from IS31COMMON (#22620)
This commit is contained in:
parent
709d07aebc
commit
e1c0bd8a7c
10 changed files with 819 additions and 90 deletions
|
@ -76,6 +76,14 @@ const rgb_matrix_driver_t rgb_matrix_driver = {
|
|||
.set_color_all = is31fl3741_set_color_all,
|
||||
};
|
||||
|
||||
#elif defined(RGB_MATRIX_IS31FL3742A)
|
||||
const rgb_matrix_driver_t rgb_matrix_driver = {
|
||||
.init = is31fl3742a_init_drivers,
|
||||
.flush = is31fl3742a_flush,
|
||||
.set_color = is31fl3742a_set_color,
|
||||
.set_color_all = is31fl3742a_set_color_all,
|
||||
};
|
||||
|
||||
#elif defined(IS31FLCOMMON)
|
||||
const rgb_matrix_driver_t rgb_matrix_driver = {
|
||||
.init = IS31FL_RGB_init_drivers,
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
# include "is31fl3737.h"
|
||||
#elif defined(RGB_MATRIX_IS31FL3741)
|
||||
# include "is31fl3741.h"
|
||||
#elif defined(RGB_MATRIX_IS31FL3742A)
|
||||
# include "is31fl3742a.h"
|
||||
#elif defined(IS31FLCOMMON)
|
||||
# include "is31flcommon.h"
|
||||
#elif defined(RGB_MATRIX_SNLED27351)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue