]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - tmk_core/protocol/pjrc/usb_keyboard.c
Merge branch 'master' into coderkun_neo2
[qmk_firmware.git] / tmk_core / protocol / pjrc / usb_keyboard.c
index 4b87b5d7b5b1644e199d8e56512138f570cdc339..05f4797340df3a63d81bb51d4fafa1fa936aeab1 100644 (file)
 #include "util.h"
 #include "host.h"
 
+#ifdef NKRO_ENABLE
+  #include "keycode_config.h"
+
+  extern keymap_config_t keymap_config;
+#endif
+
 
 // protocol setting from the host.  We use exactly the same report
 // either way, so this variable only stores the setting since we
@@ -56,7 +62,7 @@ int8_t usb_keyboard_send_report(report_keyboard_t *report)
     int8_t result = 0;
 
 #ifdef NKRO_ENABLE
-    if (keyboard_nkro)
+    if (keymap_config.nkro)
         result = send_report(report, KBD2_ENDPOINT, 0, KBD2_SIZE);
     else
 #endif