Add support for 4 IS31FL3731 devices (#10860)
This is a simple change.Support for IS31FL3731 has been changed from 2 to 4.
This commit is contained in:
committed by
Drashna Jael're
parent
4a2c2a8e8a
commit
838dfcf7cc
@@ -31,9 +31,15 @@ static void init(void) {
|
||||
i2c_init();
|
||||
# ifdef IS31FL3731
|
||||
IS31FL3731_init(DRIVER_ADDR_1);
|
||||
# ifdef DRIVER_ADDR_2
|
||||
# ifdef DRIVER_ADDR_2
|
||||
IS31FL3731_init(DRIVER_ADDR_2);
|
||||
# endif
|
||||
# endif
|
||||
# ifdef DRIVER_ADDR_3
|
||||
IS31FL3731_init(DRIVER_ADDR_3);
|
||||
# endif
|
||||
# ifdef DRIVER_ADDR_4
|
||||
IS31FL3731_init(DRIVER_ADDR_4);
|
||||
# endif
|
||||
# elif defined(IS31FL3733)
|
||||
IS31FL3733_init(DRIVER_ADDR_1, 0);
|
||||
# elif defined(IS31FL3737)
|
||||
@@ -57,9 +63,15 @@ static void init(void) {
|
||||
// This actually updates the LED drivers
|
||||
# ifdef IS31FL3731
|
||||
IS31FL3731_update_led_control_registers(DRIVER_ADDR_1, 0);
|
||||
# ifdef DRIVER_ADDR_2
|
||||
# ifdef DRIVER_ADDR_2
|
||||
IS31FL3731_update_led_control_registers(DRIVER_ADDR_2, 1);
|
||||
# endif
|
||||
# endif
|
||||
# ifdef DRIVER_ADDR_3
|
||||
IS31FL3731_update_led_control_registers(DRIVER_ADDR_3, 2);
|
||||
# endif
|
||||
# ifdef DRIVER_ADDR_4
|
||||
IS31FL3731_update_led_control_registers(DRIVER_ADDR_4, 3);
|
||||
# endif
|
||||
# elif defined(IS31FL3733)
|
||||
IS31FL3733_update_led_control_registers(DRIVER_ADDR_1, 0);
|
||||
IS31FL3733_update_led_control_registers(DRIVER_ADDR_2, 1);
|
||||
@@ -73,9 +85,15 @@ static void init(void) {
|
||||
# ifdef IS31FL3731
|
||||
static void flush(void) {
|
||||
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_1, 0);
|
||||
# ifdef DRIVER_ADDR_2
|
||||
# ifdef DRIVER_ADDR_2
|
||||
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_2, 1);
|
||||
# endif
|
||||
# endif
|
||||
# ifdef DRIVER_ADDR_3
|
||||
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_3, 2);
|
||||
# endif
|
||||
# ifdef DRIVER_ADDR_4
|
||||
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_4, 3);
|
||||
# endif
|
||||
}
|
||||
|
||||
const rgb_matrix_driver_t rgb_matrix_driver = {
|
||||
|
||||
Reference in New Issue
Block a user