diff options
author | Stephen Gelman <ssgelm@gmail.com> | 2018-12-27 01:15:58 -0600 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2018-12-28 22:55:59 -0800 |
commit | 8443481aea47182683d6b26aa00548e9ebfab82e (patch) | |
tree | 41e65ae4689b278fcf73cca8b0bf0e75f32260ea /keyboards/whitefox/board_is31fl3731c.h | |
parent | d9abb833e54ff8981a2bc1d17c6f863b49430fcd (diff) | |
download | qmk_firmware-8443481aea47182683d6b26aa00548e9ebfab82e.tar.gz qmk_firmware-8443481aea47182683d6b26aa00548e9ebfab82e.zip |
Fix apparent typo in WhiteFox LED config
It seems the led_mask is set incorrectly on the WhiteFox meaning that
the LED at C9-1 (the space bar) doesn't get lit. I can't see any reason
for this to be intentional so I am pretty sure it's a typo. At the very
least it fixes the space bar LED for me.
Diffstat (limited to 'keyboards/whitefox/board_is31fl3731c.h')
-rw-r--r-- | keyboards/whitefox/board_is31fl3731c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/whitefox/board_is31fl3731c.h b/keyboards/whitefox/board_is31fl3731c.h index dea643f107..d59b2ff43a 100644 --- a/keyboards/whitefox/board_is31fl3731c.h +++ b/keyboards/whitefox/board_is31fl3731c.h @@ -31,7 +31,7 @@ static const uint8_t led_mask[] = { 0xFF, 0x00, /* C6-1 -> C6-16 */ 0xFF, 0x00, /* C7-1 -> C7-16 */ 0xFF, 0x00, /* C8-1 -> C8-16 */ - 0xFE, 0x00, /* C9-1 -> C9-16 */ + 0xFF, 0x00, /* C9-1 -> C9-16 */ }; // The address of the LED |