diff options
author | Peter Roe <pete@13bit.me> | 2019-02-02 14:43:58 -0600 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-02 12:43:58 -0800 |
commit | e9c9c3a4fa1f9a3d948b58315b5d85369392fa6a (patch) | |
tree | aa55074c7184cbe8546798ef3a0a94fd97375c5d /keyboards/converter/adb_usb/led.c | |
parent | 4e2007b855ab32923b2f85cd1ff5222b8bad7804 (diff) | |
download | qmk_firmware-e9c9c3a4fa1f9a3d948b58315b5d85369392fa6a.tar.gz qmk_firmware-e9c9c3a4fa1f9a3d948b58315b5d85369392fa6a.zip |
[Keyboard] ADB converter lock LED fix (#5035)
* Enabled ADB lock LEDs
* Updated converter/adb_usb/README.md
Fixed a typo in the readme title. Added the lock LED fix to the changelog.
Diffstat (limited to 'keyboards/converter/adb_usb/led.c')
-rw-r--r-- | keyboards/converter/adb_usb/led.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/converter/adb_usb/led.c b/keyboards/converter/adb_usb/led.c index ea9bf77b5c..3ee64a8e7d 100644 --- a/keyboards/converter/adb_usb/led.c +++ b/keyboards/converter/adb_usb/led.c @@ -23,5 +23,5 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. void led_set(uint8_t usb_led) { - adb_host_kbd_led(ADB_ADDR_KEYBOARD, ~usb_led); + adb_host_kbd_led(~usb_led); } |