diff options
author | tmk <nobody@nowhere> | 2014-06-20 14:39:49 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-07-30 14:07:43 +0900 |
commit | b4a91ecf4e46ee533563fd759e26dd249bf6b4de (patch) | |
tree | cc52fa874d471a3f15d5cdda64fc3e6232d88303 /protocol/mbed/mbed_driver.cpp | |
parent | 4c8e0fd0bd1712421f957ec5e0ca16fc6bbb3856 (diff) |
Add LED indicator support in mbed
Diffstat (limited to 'protocol/mbed/mbed_driver.cpp')
-rw-r--r-- | protocol/mbed/mbed_driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/mbed/mbed_driver.cpp b/protocol/mbed/mbed_driver.cpp index 333f8e3782..6c7b16e23d 100644 --- a/protocol/mbed/mbed_driver.cpp +++ b/protocol/mbed/mbed_driver.cpp @@ -24,7 +24,7 @@ host_driver_t mbed_driver = { static uint8_t keyboard_leds(void) { - return 0; + return keyboard.leds(); } static void send_keyboard(report_keyboard_t *report) { |