]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - pjrc/usb_keyboard.c
Added Bulegiga iWRAP support into HHKB.(Bluetooth)
[qmk_firmware.git] / pjrc / usb_keyboard.c
index 34e9d495bd6ba1cbd6d26c70a5757115780d5437..e057c77fa16e326c18ccd2549752670aa1781024 100644 (file)
@@ -55,7 +55,7 @@ int8_t usb_keyboard_send_report(report_keyboard_t *report)
 {
     int8_t result = 0;
 
-#ifdef USB_NKRO_ENABLE
+#ifdef NKRO_ENABLE
     if (keyboard_nkro)
         result = send_report(report, KBD2_ENDPOINT, 0, KBD2_REPORT_KEYS);
     else
@@ -105,7 +105,7 @@ static inline int8_t send_report(report_keyboard_t *report, uint8_t endpoint, ui
             UENUM = endpoint;
     }
     UEDATX = report->mods;
-#ifdef USB_NKRO_ENABLE
+#ifdef NKRO_ENABLE
     if (!keyboard_nkro)
         UEDATX = 0;
 #else