2019-01-28 07:13:23 +06:00
|
|
|
/* Copyright 2018 James Laird-Wah
|
|
|
|
* Copyright 2019 Clueboard
|
2019-01-24 05:43:48 +06:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-11-29 02:02:18 +06:00
|
|
|
#include "led_matrix.h"
|
2019-01-24 05:43:48 +06:00
|
|
|
|
|
|
|
/* Each driver needs to define a struct:
|
|
|
|
*
|
|
|
|
* const led_matrix_driver_t led_matrix_driver;
|
|
|
|
*
|
|
|
|
* All members must be provided. Keyboard custom drivers must define this
|
|
|
|
* in their own files.
|
|
|
|
*/
|
|
|
|
|
2023-10-04 15:10:05 +06:00
|
|
|
#if defined(LED_MATRIX_IS31FL3218) || defined(LED_MATRIX_IS31FL3731) || defined(LED_MATRIX_IS31FL3733) || defined(LED_MATRIX_IS31FL3736) || defined(LED_MATRIX_IS31FL3737) || defined(LED_MATRIX_IS31FL3741) || defined(IS31FLCOMMON) || defined(LED_MATRIX_SNLED27351)
|
2019-08-31 00:19:03 +06:00
|
|
|
# include "i2c_master.h"
|
2019-01-24 05:43:48 +06:00
|
|
|
|
|
|
|
static void init(void) {
|
|
|
|
i2c_init();
|
2021-10-11 05:57:49 +06:00
|
|
|
|
2023-09-27 10:37:06 +06:00
|
|
|
# if defined(LED_MATRIX_IS31FL3218)
|
|
|
|
is31fl3218_init();
|
|
|
|
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3731)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3731_init(IS31FL3731_I2C_ADDRESS_1);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_2)
|
|
|
|
is31fl3731_init(IS31FL3731_I2C_ADDRESS_2);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_3)
|
|
|
|
is31fl3731_init(IS31FL3731_I2C_ADDRESS_3);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_4)
|
|
|
|
is31fl3731_init(IS31FL3731_I2C_ADDRESS_4);
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
2021-05-22 10:42:39 +06:00
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2021-10-11 05:57:49 +06:00
|
|
|
|
2023-09-21 08:16:17 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3733)
|
2023-10-21 17:41:59 +06:00
|
|
|
# if !defined(IS31FL3733_SYNC_1)
|
|
|
|
# define IS31FL3733_SYNC_1 0
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3733_init(IS31FL3733_I2C_ADDRESS_1, IS31FL3733_SYNC_1);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_2)
|
|
|
|
# if !defined(IS31FL3733_SYNC_2)
|
|
|
|
# define IS31FL3733_SYNC_2 0
|
2021-05-22 10:42:39 +06:00
|
|
|
# endif
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3733_init(IS31FL3733_I2C_ADDRESS_2, IS31FL3733_SYNC_2);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_3)
|
|
|
|
# if !defined(IS31FL3733_SYNC_3)
|
|
|
|
# define IS31FL3733_SYNC_3 0
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3733_init(IS31FL3733_I2C_ADDRESS_3, IS31FL3733_SYNC_3);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_4)
|
|
|
|
# if !defined(IS31FL3733_SYNC_4)
|
|
|
|
# define IS31FL3733_SYNC_4 0
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3733_init(IS31FL3733_I2C_ADDRESS_4, IS31FL3733_SYNC_4);
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2022-02-06 23:04:43 +06:00
|
|
|
|
2023-09-27 06:18:07 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3736)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3736_init(IS31FL3736_I2C_ADDRESS_1);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_2)
|
|
|
|
is31fl3736_init(IS31FL3736_I2C_ADDRESS_2);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_3)
|
|
|
|
is31fl3736_init(IS31FL3736_I2C_ADDRESS_3);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_4)
|
|
|
|
is31fl3736_init(IS31FL3736_I2C_ADDRESS_4);
|
2023-09-27 06:18:07 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2023-10-02 20:09:20 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3737)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3737_init(IS31FL3737_I2C_ADDRESS_1);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_2)
|
|
|
|
is31fl3737_init(IS31FL3737_I2C_ADDRESS_2);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_3)
|
|
|
|
is31fl3737_init(IS31FL3737_I2C_ADDRESS_3);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_4)
|
|
|
|
is31fl3737_init(IS31FL3737_I2C_ADDRESS_4);
|
2023-10-02 20:09:20 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3741)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3741_init(IS31FL3741_I2C_ADDRESS_1);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_2)
|
|
|
|
is31fl3741_init(IS31FL3741_I2C_ADDRESS_2);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_3)
|
|
|
|
is31fl3741_init(IS31FL3741_I2C_ADDRESS_3);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_4)
|
|
|
|
is31fl3741_init(IS31FL3741_I2C_ADDRESS_4);
|
2023-10-02 20:09:20 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2022-02-06 23:04:43 +06:00
|
|
|
# elif defined(IS31FLCOMMON)
|
|
|
|
IS31FL_common_init(DRIVER_ADDR_1, ISSI_SSR_1);
|
|
|
|
# if defined(LED_DRIVER_ADDR_2)
|
|
|
|
IS31FL_common_init(DRIVER_ADDR_2, ISSI_SSR_2);
|
|
|
|
# if defined(LED_DRIVER_ADDR_3)
|
|
|
|
IS31FL_common_init(DRIVER_ADDR_3, ISSI_SSR_3);
|
|
|
|
# if defined(LED_DRIVER_ADDR_4)
|
|
|
|
IS31FL_common_init(DRIVER_ADDR_4, ISSI_SSR_4);
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
2023-10-04 15:10:05 +06:00
|
|
|
# elif defined(LED_MATRIX_SNLED27351)
|
2022-08-13 19:39:06 +06:00
|
|
|
# if defined(LED_DRIVER_SHUTDOWN_PIN)
|
|
|
|
setPinOutput(LED_DRIVER_SHUTDOWN_PIN);
|
|
|
|
writePinHigh(LED_DRIVER_SHUTDOWN_PIN);
|
|
|
|
# endif
|
|
|
|
|
2023-10-21 17:41:59 +06:00
|
|
|
snled27351_init(SNLED27351_I2C_ADDRESS_1);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_2)
|
|
|
|
snled27351_init(SNLED27351_I2C_ADDRESS_2);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_3)
|
|
|
|
snled27351_init(SNLED27351_I2C_ADDRESS_3);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_4)
|
|
|
|
snled27351_init(SNLED27351_I2C_ADDRESS_4);
|
2022-08-13 19:39:06 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2019-01-27 11:25:59 +06:00
|
|
|
|
2022-09-23 18:46:23 +06:00
|
|
|
for (int index = 0; index < LED_MATRIX_LED_COUNT; index++) {
|
2023-09-27 10:37:06 +06:00
|
|
|
# if defined(LED_MATRIX_IS31FL3218)
|
|
|
|
is31fl3218_set_led_control_register(index, true);
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3731)
|
2023-07-29 11:25:00 +06:00
|
|
|
is31fl3731_set_led_control_register(index, true);
|
2023-09-21 08:16:17 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3733)
|
2023-07-29 11:25:00 +06:00
|
|
|
is31fl3733_set_led_control_register(index, true);
|
2023-09-27 06:18:07 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3736)
|
|
|
|
is31fl3736_set_led_control_register(index, true);
|
2023-10-02 20:09:20 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3737)
|
|
|
|
is31fl3737_set_led_control_register(index, true);
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3741)
|
|
|
|
is31fl3741_set_led_control_register(index, true);
|
2022-02-06 23:04:43 +06:00
|
|
|
# elif defined(IS31FLCOMMON)
|
|
|
|
IS31FL_simple_set_scaling_buffer(index, true);
|
2023-10-04 15:10:05 +06:00
|
|
|
# elif defined(LED_MATRIX_SNLED27351)
|
|
|
|
snled27351_set_led_control_register(index, true);
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2019-01-24 05:43:48 +06:00
|
|
|
}
|
2021-10-11 05:57:49 +06:00
|
|
|
|
2019-08-31 00:19:03 +06:00
|
|
|
// This actually updates the LED drivers
|
2023-09-27 10:37:06 +06:00
|
|
|
# if defined(LED_MATRIX_IS31FL3218)
|
|
|
|
is31fl3218_update_led_control_registers();
|
|
|
|
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3731)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3731_update_led_control_registers(IS31FL3731_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_2)
|
|
|
|
is31fl3731_update_led_control_registers(IS31FL3731_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_3)
|
|
|
|
is31fl3731_update_led_control_registers(IS31FL3731_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_4)
|
|
|
|
is31fl3731_update_led_control_registers(IS31FL3731_I2C_ADDRESS_4, 3);
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2021-10-11 05:57:49 +06:00
|
|
|
|
2023-09-21 08:16:17 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3733)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3733_update_led_control_registers(IS31FL3733_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_2)
|
|
|
|
is31fl3733_update_led_control_registers(IS31FL3733_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_3)
|
|
|
|
is31fl3733_update_led_control_registers(IS31FL3733_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_4)
|
|
|
|
is31fl3733_update_led_control_registers(IS31FL3733_I2C_ADDRESS_4, 3);
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2022-02-06 23:04:43 +06:00
|
|
|
|
2023-09-27 06:18:07 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3736)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3736_update_led_control_registers(IS31FL3736_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_2)
|
|
|
|
is31fl3736_update_led_control_registers(IS31FL3736_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_3)
|
|
|
|
is31fl3736_update_led_control_registers(IS31FL3736_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_4)
|
|
|
|
is31fl3736_update_led_control_registers(IS31FL3736_I2C_ADDRESS_4, 3);
|
2023-09-27 06:18:07 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2023-10-02 20:09:20 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3737)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3737_update_led_control_registers(IS31FL3737_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_2)
|
|
|
|
is31fl3737_update_led_control_registers(IS31FL3737_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_3)
|
|
|
|
is31fl3737_update_led_control_registers(IS31FL3737_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_4)
|
|
|
|
is31fl3737_update_led_control_registers(IS31FL3737_I2C_ADDRESS_4, 3);
|
2023-10-02 20:09:20 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3741)
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3741_update_led_control_registers(IS31FL3741_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_2)
|
|
|
|
is31fl3741_update_led_control_registers(IS31FL3741_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_3)
|
|
|
|
is31fl3741_update_led_control_registers(IS31FL3741_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_4)
|
|
|
|
is31fl3741_update_led_control_registers(IS31FL3741_I2C_ADDRESS_4, 3);
|
2023-10-02 20:09:20 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2022-02-06 23:04:43 +06:00
|
|
|
# elif defined(IS31FLCOMMON)
|
|
|
|
# ifdef ISSI_MANUAL_SCALING
|
|
|
|
IS31FL_set_manual_scaling_buffer();
|
|
|
|
# endif
|
|
|
|
IS31FL_common_update_scaling_register(DRIVER_ADDR_1, 0);
|
|
|
|
# if defined(LED_DRIVER_ADDR_2)
|
|
|
|
IS31FL_common_update_scaling_register(DRIVER_ADDR_2, 1);
|
|
|
|
# if defined(LED_DRIVER_ADDR_3)
|
|
|
|
IS31FL_common_update_scaling_register(DRIVER_ADDR_3, 2);
|
|
|
|
# if defined(LED_DRIVER_ADDR_4)
|
|
|
|
IS31FL_common_update_scaling_register(DRIVER_ADDR_4, 3);
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
2023-10-21 17:41:59 +06:00
|
|
|
|
2023-10-04 15:10:05 +06:00
|
|
|
# elif defined(LED_MATRIX_SNLED27351)
|
2023-10-21 17:41:59 +06:00
|
|
|
snled27351_update_led_control_registers(SNLED27351_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_2)
|
|
|
|
snled27351_update_led_control_registers(SNLED27351_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_3)
|
|
|
|
snled27351_update_led_control_registers(SNLED27351_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_4)
|
|
|
|
snled27351_update_led_control_registers(SNLED27351_I2C_ADDRESS_4, 3);
|
2022-08-13 19:39:06 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2019-01-24 05:43:48 +06:00
|
|
|
}
|
|
|
|
|
2023-09-27 10:37:06 +06:00
|
|
|
# if defined(LED_MATRIX_IS31FL3218)
|
|
|
|
static void flush(void) {
|
|
|
|
is31fl3218_update_pwm_buffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_value = is31fl3218_set_value,
|
|
|
|
.set_value_all = is31fl3218_set_value_all,
|
|
|
|
};
|
|
|
|
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3731)
|
2019-01-24 05:43:48 +06:00
|
|
|
static void flush(void) {
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3731_update_pwm_buffers(IS31FL3731_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_2)
|
|
|
|
is31fl3731_update_pwm_buffers(IS31FL3731_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_3)
|
|
|
|
is31fl3731_update_pwm_buffers(IS31FL3731_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3731_I2C_ADDRESS_4)
|
|
|
|
is31fl3731_update_pwm_buffers(IS31FL3731_I2C_ADDRESS_4, 3);
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2021-10-11 05:57:49 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
2023-09-27 10:37:06 +06:00
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_value = is31fl3731_set_value,
|
2023-07-29 11:25:00 +06:00
|
|
|
.set_value_all = is31fl3731_set_value_all,
|
2021-10-11 05:57:49 +06:00
|
|
|
};
|
|
|
|
|
2023-09-21 08:16:17 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3733)
|
2021-10-11 05:57:49 +06:00
|
|
|
static void flush(void) {
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3733_update_pwm_buffers(IS31FL3733_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_2)
|
|
|
|
is31fl3733_update_pwm_buffers(IS31FL3733_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_3)
|
|
|
|
is31fl3733_update_pwm_buffers(IS31FL3733_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3733_I2C_ADDRESS_4)
|
|
|
|
is31fl3733_update_pwm_buffers(IS31FL3733_I2C_ADDRESS_4, 3);
|
2021-10-11 05:57:49 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
2019-08-31 00:19:03 +06:00
|
|
|
# endif
|
2019-01-24 05:43:48 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
2021-10-11 10:32:29 +06:00
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
2023-07-29 11:25:00 +06:00
|
|
|
.set_value = is31fl3733_set_value,
|
|
|
|
.set_value_all = is31fl3733_set_value_all,
|
2019-01-24 05:43:48 +06:00
|
|
|
};
|
2022-02-06 23:04:43 +06:00
|
|
|
|
2023-09-27 06:18:07 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3736)
|
|
|
|
static void flush(void) {
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3736_update_pwm_buffers(IS31FL3736_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_2)
|
|
|
|
is31fl3736_update_pwm_buffers(IS31FL3736_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_3)
|
|
|
|
is31fl3736_update_pwm_buffers(IS31FL3736_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3736_I2C_ADDRESS_4)
|
|
|
|
is31fl3736_update_pwm_buffers(IS31FL3736_I2C_ADDRESS_4, 3);
|
2023-09-27 06:18:07 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_value = is31fl3736_set_value,
|
|
|
|
.set_value_all = is31fl3736_set_value_all,
|
|
|
|
};
|
|
|
|
|
2023-10-02 20:09:20 +06:00
|
|
|
# elif defined(LED_MATRIX_IS31FL3737)
|
|
|
|
static void flush(void) {
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3737_update_pwm_buffers(IS31FL3737_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_2)
|
|
|
|
is31fl3737_update_pwm_buffers(IS31FL3737_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_3)
|
|
|
|
is31fl3737_update_pwm_buffers(IS31FL3737_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3737_I2C_ADDRESS_4)
|
|
|
|
is31fl3737_update_pwm_buffers(IS31FL3737_I2C_ADDRESS_4, 3);
|
2023-10-02 20:09:20 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_value = is31fl3737_set_value,
|
|
|
|
.set_value_all = is31fl3737_set_value_all,
|
|
|
|
};
|
|
|
|
|
|
|
|
# elif defined(LED_MATRIX_IS31FL3741)
|
|
|
|
static void flush(void) {
|
2023-10-21 17:41:59 +06:00
|
|
|
is31fl3741_update_pwm_buffers(IS31FL3741_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_2)
|
|
|
|
is31fl3741_update_pwm_buffers(IS31FL3741_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_3)
|
|
|
|
is31fl3741_update_pwm_buffers(IS31FL3741_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(IS31FL3741_I2C_ADDRESS_4)
|
|
|
|
is31fl3741_update_pwm_buffers(IS31FL3741_I2C_ADDRESS_4, 3);
|
2023-10-02 20:09:20 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_value = is31fl3741_set_value,
|
|
|
|
.set_value_all = is31fl3741_set_value_all,
|
|
|
|
};
|
|
|
|
|
2022-02-06 23:04:43 +06:00
|
|
|
# elif defined(IS31FLCOMMON)
|
|
|
|
static void flush(void) {
|
|
|
|
IS31FL_common_update_pwm_register(DRIVER_ADDR_1, 0);
|
|
|
|
# if defined(LED_DRIVER_ADDR_2)
|
|
|
|
IS31FL_common_update_pwm_register(DRIVER_ADDR_2, 1);
|
|
|
|
# if defined(LED_DRIVER_ADDR_3)
|
|
|
|
IS31FL_common_update_pwm_register(DRIVER_ADDR_3, 2);
|
|
|
|
# if defined(LED_DRIVER_ADDR_4)
|
|
|
|
IS31FL_common_update_pwm_register(DRIVER_ADDR_4, 3);
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_value = IS31FL_simple_set_brightness,
|
|
|
|
.set_value_all = IS31FL_simple_set_brigntness_all,
|
|
|
|
};
|
2023-10-04 15:10:05 +06:00
|
|
|
# elif defined(LED_MATRIX_SNLED27351)
|
2022-08-13 19:39:06 +06:00
|
|
|
static void flush(void) {
|
2023-10-21 17:41:59 +06:00
|
|
|
snled27351_update_pwm_buffers(SNLED27351_I2C_ADDRESS_1, 0);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_2)
|
|
|
|
snled27351_update_pwm_buffers(SNLED27351_I2C_ADDRESS_2, 1);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_3)
|
|
|
|
snled27351_update_pwm_buffers(SNLED27351_I2C_ADDRESS_3, 2);
|
|
|
|
# if defined(SNLED27351_I2C_ADDRESS_4)
|
|
|
|
snled27351_update_pwm_buffers(SNLED27351_I2C_ADDRESS_4, 3);
|
2022-08-13 19:39:06 +06:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
|
|
|
|
const led_matrix_driver_t led_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
2023-10-04 15:10:05 +06:00
|
|
|
.set_value = snled27351_set_value,
|
|
|
|
.set_value_all = snled27351_set_value_all,
|
2022-08-13 19:39:06 +06:00
|
|
|
};
|
2021-10-11 10:32:29 +06:00
|
|
|
# endif
|
2019-01-24 05:43:48 +06:00
|
|
|
#endif
|