]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - converter/usb_usb/usb_usb.cpp
adb_usb: Use MODS_TAP_KEY action for Power key
[max/tmk_keyboard.git] / converter / usb_usb / usb_usb.cpp
index 969e89f357673feb4c9b7d12a7625426bc179234..26721de0a5e2f9a63e9fd02c3dc6829262a52d4a 100644 (file)
@@ -32,6 +32,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #include "timer.h"
 #include "matrix.h"
 #include "led.h"
+#include "host.h"
+#include "keyboard.h"
 
 
 /* KEY CODE to Matrix
@@ -151,6 +153,16 @@ uint8_t matrix_scan(void) {
         dprintf("host.Task: %d\n", timer);
     }
 
+    static uint8_t usb_state = 0;
+    if (usb_state != usb_host.getUsbTaskState()) {
+        usb_state = usb_host.getUsbTaskState();
+        dprintf("usb_state: %02X\n", usb_state);
+
+        // restore LED state when keyboard comes up
+        if (usb_state == USB_STATE_RUNNING) {
+            keyboard_set_leds(host_keyboard_leds());
+        }
+    }
     return 1;
 }