summaryrefslogtreecommitdiff
path: root/keyboards/wilba_tech
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-08-23 10:00:03 +1000
committerGitHub <noreply@github.com>2023-08-23 01:00:03 +0100
commit37bc9499453f95e4e835faa751dbfffff9bfd644 (patch)
treedf976fa0c137564ace2a48caca69ea58e2ba6468 /keyboards/wilba_tech
parentdfb6d38f08b3912baffbca23e351dd0ad836238c (diff)
RGB Matrix: driver naming cleanups (#21594)
Diffstat (limited to 'keyboards/wilba_tech')
-rw-r--r--keyboards/wilba_tech/wt_mono_backlight.c28
-rw-r--r--keyboards/wilba_tech/wt_rgb_backlight.c144
2 files changed, 86 insertions, 86 deletions
diff --git a/keyboards/wilba_tech/wt_mono_backlight.c b/keyboards/wilba_tech/wt_mono_backlight.c
index c79fc02cd9..28ee5fae81 100644
--- a/keyboards/wilba_tech/wt_mono_backlight.c
+++ b/keyboards/wilba_tech/wt_mono_backlight.c
@@ -64,12 +64,12 @@ void backlight_init_drivers(void)
{
// Initialize I2C
i2c_init();
- IS31FL3736_init( ISSI_ADDR_DEFAULT );
+ is31fl3736_init( ISSI_ADDR_DEFAULT );
for ( uint8_t index = 0; index < 96; index++ ) {
- IS31FL3736_mono_set_led_control_register( index, true );
+ is31fl3736_mono_set_led_control_register( index, true );
}
- IS31FL3736_update_led_control_registers( ISSI_ADDR_DEFAULT, 0x00 );
+ is31fl3736_update_led_control_registers( ISSI_ADDR_DEFAULT, 0x00 );
}
void backlight_set_key_hit(uint8_t row, uint8_t column)
@@ -119,17 +119,17 @@ void backlight_set_suspend_state(bool state)
void backlight_set_brightness_all( uint8_t value )
{
- IS31FL3736_mono_set_brightness_all( value );
+ is31fl3736_mono_set_brightness_all( value );
}
void backlight_effect_all_off(void)
{
- IS31FL3736_mono_set_brightness_all( 0 );
+ is31fl3736_mono_set_brightness_all( 0 );
}
void backlight_effect_all_on(void)
{
- IS31FL3736_mono_set_brightness_all( g_config.brightness );
+ is31fl3736_mono_set_brightness_all( g_config.brightness );
}
void backlight_effect_raindrops(bool initialize)
@@ -143,7 +143,7 @@ void backlight_effect_raindrops(bool initialize)
// If not, all but one will stay the same as before.
if ( initialize || i == led_to_change )
{
- IS31FL3736_mono_set_brightness(i, rand() & 0xFF );
+ is31fl3736_mono_set_brightness(i, rand() & 0xFF );
}
}
}
@@ -165,9 +165,9 @@ void backlight_effect_indicators(void)
// SW7,CS8 = (6*8+7) = 55
// SW8,CS8 = (7*8+7) = 63
// SW9,CS8 = (8*8+7) = 71
- IS31FL3736_mono_set_brightness(55, rgb.r);
- IS31FL3736_mono_set_brightness(63, rgb.g);
- IS31FL3736_mono_set_brightness(71, rgb.b);
+ is31fl3736_mono_set_brightness(55, rgb.r);
+ is31fl3736_mono_set_brightness(63, rgb.g);
+ is31fl3736_mono_set_brightness(71, rgb.b);
#endif // MONO_BACKLIGHT_WT75_A
// This pairs with "All Off" already setting zero brightness,
@@ -181,19 +181,19 @@ defined(MONO_BACKLIGHT_WT75_C) || \
defined(MONO_BACKLIGHT_WT80_A)
if ( host_keyboard_led_state().caps_lock ) {
// SW3,CS1 = (2*8+0) = 16
- IS31FL3736_mono_set_brightness(16, 255);
+ is31fl3736_mono_set_brightness(16, 255);
}
#endif
#if defined(MONO_BACKLIGHT_WT80_A)
if ( host_keyboard_led_state().scroll_lock ) {
// SW7,CS7 = (6*8+6) = 54
- IS31FL3736_mono_set_brightness(54, 255);
+ is31fl3736_mono_set_brightness(54, 255);
}
#endif
#if defined(MONO_BACKLIGHT_WT75_C)
if ( host_keyboard_led_state().scroll_lock ) {
// SW7,CS8 = (6*8+7) = 55
- IS31FL3736_mono_set_brightness(55, 255);
+ is31fl3736_mono_set_brightness(55, 255);
}
#endif
}
@@ -361,7 +361,7 @@ void backlight_config_save(void)
void backlight_update_pwm_buffers(void)
{
- IS31FL3736_update_pwm_buffers(ISSI_ADDR_DEFAULT,0x00);
+ is31fl3736_update_pwm_buffers(ISSI_ADDR_DEFAULT,0x00);
}
bool process_record_backlight(uint16_t keycode, keyrecord_t *record)
diff --git a/keyboards/wilba_tech/wt_rgb_backlight.c b/keyboards/wilba_tech/wt_rgb_backlight.c
index 1cd00ae41f..6c57416622 100644
--- a/keyboards/wilba_tech/wt_rgb_backlight.c
+++ b/keyboards/wilba_tech/wt_rgb_backlight.c
@@ -1771,36 +1771,36 @@ void map_row_column_to_led( uint8_t row, uint8_t column, uint8_t *led )
void backlight_update_pwm_buffers(void)
{
#if defined(RGB_BACKLIGHT_M6_B)
- IS31FL3218_update_pwm_buffers();
+ is31fl3218_update_pwm_buffers();
#elif defined(RGB_BACKLIGHT_PORTICO75)
- IS31FL3741_update_pwm_buffers( ISSI_ADDR_1, 0 );
- IS31FL3741_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3741_update_pwm_buffers( ISSI_ADDR_1, 0 );
+ is31fl3741_update_led_control_registers( ISSI_ADDR_1, 0 );
#elif defined(RGB_BACKLIGHT_M10_C)
- IS31FL3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
- IS31FL3731_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_led_control_registers( ISSI_ADDR_1, 0 );
#elif defined(RGB_BACKLIGHT_HS60)
- IS31FL3733_update_pwm_buffers( ISSI_ADDR_1, 0 );
- IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_pwm_buffers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_1, 0 );
#elif defined(RGB_BACKLIGHT_NK65) || defined(RGB_BACKLIGHT_NEBULA68) || defined(RGB_BACKLIGHT_NK87) || defined(RGB_BACKLIGHT_KW_MEGA)
- IS31FL3733_update_pwm_buffers( ISSI_ADDR_1, 0 );
- IS31FL3733_update_pwm_buffers( ISSI_ADDR_2, 1 );
- IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 );
- IS31FL3733_update_led_control_registers( ISSI_ADDR_2, 1 );
+ is31fl3733_update_pwm_buffers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_pwm_buffers( ISSI_ADDR_2, 1 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_2, 1 );
#elif defined(RGB_BACKLIGHT_NEBULA12)
- IS31FL3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
- IS31FL3731_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_led_control_registers( ISSI_ADDR_1, 0 );
#elif defined(RGB_BACKLIGHT_U80_A)
static uint8_t driver = 0;
switch ( driver )
{
case 0:
- IS31FL3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
break;
case 1:
- IS31FL3731_update_pwm_buffers( ISSI_ADDR_2, 1 );
+ is31fl3731_update_pwm_buffers( ISSI_ADDR_2, 1 );
break;
case 2:
- IS31FL3731_update_pwm_buffers( ISSI_ADDR_3, 2 );
+ is31fl3731_update_pwm_buffers( ISSI_ADDR_3, 2 );
break;
}
if ( ++driver > 2 )
@@ -1808,31 +1808,31 @@ void backlight_update_pwm_buffers(void)
driver = 0;
}
#else
- IS31FL3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
- IS31FL3731_update_pwm_buffers( ISSI_ADDR_2, 1 );
- IS31FL3731_update_led_control_registers( ISSI_ADDR_1, 0 );
- IS31FL3731_update_led_control_registers( ISSI_ADDR_2, 1 );
+ is31fl3731_update_pwm_buffers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_pwm_buffers( ISSI_ADDR_2, 1 );
+ is31fl3731_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_led_control_registers( ISSI_ADDR_2, 1 );
#endif
}
void backlight_set_color( int index, uint8_t red, uint8_t green, uint8_t blue )
{
#if defined(RGB_BACKLIGHT_M6_B)
- IS31FL3218_set_color( index, red, green, blue );
+ is31fl3218_set_color( index, red, green, blue );
#elif defined(RGB_BACKLIGHT_HS60) || defined(RGB_BACKLIGHT_NK65) || defined(RGB_BACKLIGHT_NEBULA68) || defined(RGB_BACKLIGHT_KW_MEGA)
- IS31FL3733_set_color( index, red, green, blue );
+ is31fl3733_set_color( index, red, green, blue );
#elif defined (RGB_BACKLIGHT_PORTICO)
- IS31FL3731_set_color( index, red, green, blue );
+ is31fl3731_set_color( index, red, green, blue );
#elif defined (RGB_BACKLIGHT_PORTICO75)
- IS31FL3741_set_color( index, red, green, blue );
+ is31fl3741_set_color( index, red, green, blue );
#elif defined(RGB_BACKLIGHT_NK87)
// This is done to avoid indicator LEDs being set
if (( index != 63+64-1 ) && ( index != 48+64-1 )) {
- IS31FL3733_set_color( index, red, green, blue );
+ is31fl3733_set_color( index, red, green, blue );
}
#elif defined(RGB_BACKLIGHT_DAWN60)
if( index < RGB_MATRIX_LED_COUNT ) {
- IS31FL3731_set_color( index, red, green, blue );
+ is31fl3731_set_color( index, red, green, blue );
} else {
g_ws2812_leds[index - RGB_MATRIX_LED_COUNT].r = red;
g_ws2812_leds[index - RGB_MATRIX_LED_COUNT].g = green;
@@ -1840,38 +1840,38 @@ void backlight_set_color( int index, uint8_t red, uint8_t green, uint8_t blue )
ws2812_setleds(g_ws2812_leds, WS2812_LED_TOTAL);
}
#else
- IS31FL3731_set_color( index, red, green, blue );
+ is31fl3731_set_color( index, red, green, blue );
#endif
}
void backlight_set_color_all( uint8_t red, uint8_t green, uint8_t blue )
{
#if defined(RGB_BACKLIGHT_M6_B)
- IS31FL3218_set_color_all( red, green, blue );
+ is31fl3218_set_color_all( red, green, blue );
#elif defined(RGB_BACKLIGHT_HS60) || defined(RGB_BACKLIGHT_NK65) || defined(RGB_BACKLIGHT_NEBULA68) || defined(RGB_BACKLIGHT_KW_MEGA)
// This is done to avoid indicator LEDs being set
for (int i = 0; i < BACKLIGHT_LED_COUNT; i++) {
- IS31FL3733_set_color(i, red, green, blue);
+ is31fl3733_set_color(i, red, green, blue);
}
#elif defined (RGB_BACKLIGHT_PORTICO)
// This is done to avoid indicator LEDs being set
for (int i = 0; i < BACKLIGHT_LED_COUNT; i++) {
- IS31FL3731_set_color(i, red, green, blue);
+ is31fl3731_set_color(i, red, green, blue);
}
#elif defined (RGB_BACKLIGHT_PORTICO75)
// This is done to avoid indicator LEDs being set
for (int i = 0; i < BACKLIGHT_LED_COUNT; i++) {
- IS31FL3741_set_color(i, red, green, blue);
+ is31fl3741_set_color(i, red, green, blue);
}
#elif defined(RGB_BACKLIGHT_NK87)
// This is done to avoid indicator LEDs being set
for (int i = 0; i < BACKLIGHT_LED_COUNT; i++) {
if (( i != 63+64-1 ) && ( i != 48+64-1 )) {
- IS31FL3733_set_color(i, red, green, blue);
+ is31fl3733_set_color(i, red, green, blue);
}
}
#elif defined(RGB_BACKLIGHT_DAWN60)
- IS31FL3731_set_color_all( red, green, blue );
+ is31fl3731_set_color_all( red, green, blue );
for (uint8_t i = 0; i < WS2812_LED_TOTAL; i++) {
g_ws2812_leds[i].r = red;
g_ws2812_leds[i].g = green;
@@ -1879,7 +1879,7 @@ void backlight_set_color_all( uint8_t red, uint8_t green, uint8_t blue )
}
ws2812_setleds(g_ws2812_leds, WS2812_LED_TOTAL);
#else
- IS31FL3731_set_color_all( red, green, blue );
+ is31fl3731_set_color_all( red, green, blue );
#endif
}
@@ -2914,9 +2914,9 @@ void backlight_init_drivers(void)
i2c_init();
#if defined(RGB_BACKLIGHT_M6_B)
- IS31FL3218_init();
+ is31fl3218_init();
#elif defined(RGB_BACKLIGHT_HS60)
- IS31FL3733_init( ISSI_ADDR_1, 0 );
+ is31fl3733_init( ISSI_ADDR_1, 0 );
for ( int index = 0; index < RGB_MATRIX_LED_COUNT; index++ )
{
@@ -2932,28 +2932,28 @@ void backlight_init_drivers(void)
( index == 61-1 ) ); //LA61
#endif
// This only caches it for later
- IS31FL3733_set_led_control_register( index, enabled, enabled, enabled );
+ is31fl3733_set_led_control_register( index, enabled, enabled, enabled );
}
// This actually updates the LED drivers
- IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_1, 0 );
#elif defined(RGB_BACKLIGHT_NK65)
- IS31FL3733_init( ISSI_ADDR_1, 0 );
- IS31FL3733_init( ISSI_ADDR_2, 0 );
+ is31fl3733_init( ISSI_ADDR_1, 0 );
+ is31fl3733_init( ISSI_ADDR_2, 0 );
for ( int index = 0; index < RGB_MATRIX_LED_COUNT; index++ )
{
bool enabled = !( ( index == 61-1 ) || //LA61
( index > 6+64-1 ) ); //LB7-LB64
// This only caches it for later
- IS31FL3733_set_led_control_register( index, enabled, enabled, enabled );
+ is31fl3733_set_led_control_register( index, enabled, enabled, enabled );
}
- IS31FL3733_set_led_control_register( 7+64-1, 0, 1, 0 ); //Enable LB7 green enable for indicators
+ is31fl3733_set_led_control_register( 7+64-1, 0, 1, 0 ); //Enable LB7 green enable for indicators
// This actually updates the LED drivers
- IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 );
- IS31FL3733_update_led_control_registers( ISSI_ADDR_2, 1 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_2, 1 );
#elif defined(RGB_BACKLIGHT_NK87)
- IS31FL3733_init( ISSI_ADDR_1, 0 );
- IS31FL3733_init( ISSI_ADDR_2, 0 );
+ is31fl3733_init( ISSI_ADDR_1, 0 );
+ is31fl3733_init( ISSI_ADDR_2, 0 );
for ( int index = 0; index < RGB_MATRIX_LED_COUNT; index++ )
{
@@ -2975,59 +2975,59 @@ void backlight_init_drivers(void)
( index == 58+64-1 ) ||
( index == 62+64-1 ) );
// This only caches it for later
- IS31FL3733_set_led_control_register( index, enabled, enabled, enabled );
+ is31fl3733_set_led_control_register( index, enabled, enabled, enabled );
}
- IS31FL3733_set_led_control_register( 48+64-1, 0, 0, 1 ); //Enable LB48 blue enable for indicators
+ is31fl3733_set_led_control_register( 48+64-1, 0, 0, 1 ); //Enable LB48 blue enable for indicators
// This actually updates the LED drivers
- IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 );
- IS31FL3733_update_led_control_registers( ISSI_ADDR_2, 1 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_2, 1 );
#elif defined(RGB_BACKLIGHT_NEBULA68)
- IS31FL3733_init( ISSI_ADDR_1, 0 );
- IS31FL3733_init( ISSI_ADDR_2, 0 );
+ is31fl3733_init( ISSI_ADDR_1, 0 );
+ is31fl3733_init( ISSI_ADDR_2, 0 );
for ( int index = 0; index < RGB_MATRIX_LED_COUNT; index++ )
{
bool enabled = !( ( index == 61-1 ) || //LA61
( index > 5+64-1 ) ); //LB6-LB64
// This only caches it for later
- IS31FL3733_set_led_control_register( index, enabled, enabled, enabled );
+ is31fl3733_set_led_control_register( index, enabled, enabled, enabled );
}
// This actually updates the LED drivers
- IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 );
- IS31FL3733_update_led_control_registers( ISSI_ADDR_2, 1 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_2, 1 );
#elif defined(RGB_BACKLIGHT_PORTICO75)
- IS31FL3741_init( ISSI_ADDR_1 );
+ is31fl3741_init( ISSI_ADDR_1 );
bool enabled = true;
for ( int index = 0; index < RGB_MATRIX_LED_COUNT; index++ )
{
- IS31FL3741_set_led_control_register( index, enabled, enabled, enabled );
+ is31fl3741_set_led_control_register( index, enabled, enabled, enabled );
}
// This actually updates the LED drivers
- IS31FL3741_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3741_update_led_control_registers( ISSI_ADDR_1, 0 );
#elif defined(RGB_BACKLIGHT_KW_MEGA)
- IS31FL3733_init( ISSI_ADDR_1, 0 );
- IS31FL3733_init( ISSI_ADDR_2, 0 );
+ is31fl3733_init( ISSI_ADDR_1, 0 );
+ is31fl3733_init( ISSI_ADDR_2, 0 );
for ( int index = 0; index < RGB_MATRIX_LED_COUNT; index++ )
{
bool enabled = !( ( index == 61-1 ) || //LA61
( index > 6+64-1 ) ); //LB7-LB64
// This only caches it for later
- IS31FL3733_set_led_control_register( index, enabled, enabled, enabled );
+ is31fl3733_set_led_control_register( index, enabled, enabled, enabled );
}
// This actually updates the LED drivers
- IS31FL3733_update_led_control_registers( ISSI_ADDR_1, 0 );
- IS31FL3733_update_led_control_registers( ISSI_ADDR_2, 1 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3733_update_led_control_registers( ISSI_ADDR_2, 1 );
#else
// Init the #1 driver
- IS31FL3731_init( ISSI_ADDR_1 );
+ is31fl3731_init( ISSI_ADDR_1 );
// Init the #2 driver (if used)
#if !defined(RGB_BACKLIGHT_NEBULA12) && !defined(RGB_BACKLIGHT_M10_C)
- IS31FL3731_init( ISSI_ADDR_2 );
+ is31fl3731_init( ISSI_ADDR_2 );
#endif
// Init the #3 driver (if used)
#if defined(RGB_BACKLIGHT_U80_A)
- IS31FL3731_init( ISSI_ADDR_3 );
+ is31fl3731_init( ISSI_ADDR_3 );
#endif
// Experimental feature, not in configuration yet
@@ -3156,16 +3156,16 @@ void backlight_init_drivers(void)
bool enabled = true;
#endif
// This only caches it for later
- IS31FL3731_set_led_control_register( index, enabled, enabled, enabled );
+ is31fl3731_set_led_control_register( index, enabled, enabled, enabled );
}
// This actually updates the LED drivers
// TODO: refactor this to use DRIVER_COUNT
- IS31FL3731_update_led_control_registers( ISSI_ADDR_1, 0 );
+ is31fl3731_update_led_control_registers( ISSI_ADDR_1, 0 );
#if !defined(RGB_BACKLIGHT_NEBULA12) && !defined(RGB_BACKLIGHT_M10_C)
- IS31FL3731_update_led_control_registers( ISSI_ADDR_2, 1 );
+ is31fl3731_update_led_control_registers( ISSI_ADDR_2, 1 );
#endif
#if defined(RGB_BACKLIGHT_U80_A)
- IS31FL3731_update_led_control_registers( ISSI_ADDR_3, 2 );
+ is31fl3731_update_led_control_registers( ISSI_ADDR_3, 2 );
#endif
#endif
@@ -3399,11 +3399,11 @@ void backlight_test_led( uint8_t index, bool red, bool green, bool blue )
{
if ( i == index )
{
- IS31FL3731_set_led_control_register( i, red, green, blue );
+ is31fl3731_set_led_control_register( i, red, green, blue );
}
else
{
- IS31FL3731_set_led_control_register( i, false, false, false );
+ is31fl3731_set_led_control_register( i, false, false, false );
}
}
}