summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorpatrickmt <40182064+patrickmt@users.noreply.github.com>2018-09-13 18:17:26 +0200
committerDrashna Jaelre <drashna@live.com>2018-09-13 18:17:26 +0200
commitb8a0d3de3dcd39558195a8a201e859a0d4ef924d (patch)
tree160d7f8b41ae3ce14eaa33d7694937138df95aa4 /tmk_core
parent132c44bab132c63fa7994e0801e0ca37f53bd792 (diff)
downloadqmk_firmware-b8a0d3de3dcd39558195a8a201e859a0d4ef924d.tar.gz
qmk_firmware-b8a0d3de3dcd39558195a8a201e859a0d4ef924d.tar.xz
Keyboard: ALT keymap update and LED driver brightness mismatch fix (#3890)
* ALT keymap update Added additional End key on layer 1 to match key cap * LED driver update addressing PR #3871 Update sync between IS31FL3733 drivers is causing varying behavior in keyboards including brightness mismatch and slight flicker at very low rgb values. Visually, disabling sync is not noticeable. Ref PR #3871 by guarnacciaa.
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/protocol/arm_atsam/i2c_master.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/arm_atsam/i2c_master.c b/tmk_core/protocol/arm_atsam/i2c_master.c
index bbe909e9b..4f5a79e89 100644
--- a/tmk_core/protocol/arm_atsam/i2c_master.c
+++ b/tmk_core/protocol/arm_atsam/i2c_master.c
@@ -289,12 +289,12 @@ uint8_t I2C3733_Init_Drivers(void)
//Set up master device
i2c_led_send_CRWL(0);
i2c_led_select_page(0, 3);
- i2c_led_send_mode_op_gcr(0, ISSI3733_CR_SYNC_MASTER, ISSI3733_CR_SSD_NORMAL);
+ i2c_led_send_mode_op_gcr(0, 0, ISSI3733_CR_SSD_NORMAL); //No SYNC due to brightness mismatch with second driver
//Set up slave device
i2c_led_send_CRWL(1);
i2c_led_select_page(1, 3);
- i2c_led_send_mode_op_gcr(1, ISSI3733_CR_SYNC_SLAVE, ISSI3733_CR_SSD_NORMAL);
+ i2c_led_send_mode_op_gcr(1, 0, ISSI3733_CR_SSD_NORMAL); //No SYNC due to brightness mismatch with first driver and slight flicker at rgb values 1,2
i2c_led_send_CRWL(0);
i2c_led_select_page(0, 3);