diff options
author | tmk <nobody@nowhere> | 2011-02-21 23:05:28 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-02-22 03:09:18 +0900 |
commit | c958b2d19b0ec0dbc02f87dc4c9ccee933a54be5 (patch) | |
tree | 8d77a25de9b3d459c3a74c9c9c324e93367682d1 /pjrc | |
parent | fb8d23c60c757d5d9c2270cb0123a53be2049a28 (diff) |
fixed adb_usb to comply new API.
Diffstat (limited to 'pjrc')
-rw-r--r-- | pjrc/usb_keyboard.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pjrc/usb_keyboard.c b/pjrc/usb_keyboard.c index e29c5c9e91..fc05f7c9e7 100644 --- a/pjrc/usb_keyboard.c +++ b/pjrc/usb_keyboard.c @@ -81,8 +81,12 @@ static inline int8_t send_report(report_keyboard_t *report, uint8_t endpoint, ui UENUM = endpoint; } UEDATX = report->mods; +#ifdef USB_NKRO_ENABLE if (!keyboard_nkro) UEDATX = 0; +#else + UEDATX = 0; +#endif for (uint8_t i = keys_start; i < keys_end; i++) { UEDATX = report->keys[i]; } |