aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorpatrickmt <40182064+patrickmt@users.noreply.github.com>2018-09-13 12:17:26 -0400
committerDrashna Jaelre <drashna@live.com>2018-09-13 09:17:26 -0700
commitb8a0d3de3dcd39558195a8a201e859a0d4ef924d (patch)
tree160d7f8b41ae3ce14eaa33d7694937138df95aa4 /tmk_core/protocol
parent132c44bab132c63fa7994e0801e0ca37f53bd792 (diff)
downloadqmk_firmware-b8a0d3de3dcd39558195a8a201e859a0d4ef924d.tar.gz
qmk_firmware-b8a0d3de3dcd39558195a8a201e859a0d4ef924d.zip
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/protocol')
-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)
289 //Set up master device 289 //Set up master device
290 i2c_led_send_CRWL(0); 290 i2c_led_send_CRWL(0);
291 i2c_led_select_page(0, 3); 291 i2c_led_select_page(0, 3);
292 i2c_led_send_mode_op_gcr(0, ISSI3733_CR_SYNC_MASTER, ISSI3733_CR_SSD_NORMAL); 292 i2c_led_send_mode_op_gcr(0, 0, ISSI3733_CR_SSD_NORMAL); //No SYNC due to brightness mismatch with second driver
293 293
294 //Set up slave device 294 //Set up slave device
295 i2c_led_send_CRWL(1); 295 i2c_led_send_CRWL(1);
296 i2c_led_select_page(1, 3); 296 i2c_led_select_page(1, 3);
297 i2c_led_send_mode_op_gcr(1, ISSI3733_CR_SYNC_SLAVE, ISSI3733_CR_SSD_NORMAL); 297 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
298 298
299 i2c_led_send_CRWL(0); 299 i2c_led_send_CRWL(0);
300 i2c_led_select_page(0, 3); 300 i2c_led_select_page(0, 3);