diff options
author | Joel Challis <git@zvecr.com> | 2022-03-19 17:40:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 17:40:47 +0000 |
commit | 047ef3cd121e6bed3702eaf7ed3e96cf1e765ec5 (patch) | |
tree | a980b3ab42e82a105444972ba53eaddc2165e309 /tmk_core | |
parent | 3502bbbd16feff23ac020ed561ebfef95cc271e8 (diff) | |
download | qmk_firmware-047ef3cd121e6bed3702eaf7ed3e96cf1e765ec5.tar.gz qmk_firmware-047ef3cd121e6bed3702eaf7ed3e96cf1e765ec5.zip |
VUSB - Use correct endpoint poll for VIA (#16691)
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/protocol/vusb/protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/vusb/protocol.c b/tmk_core/protocol/vusb/protocol.c index 20d0530483..ae99680ce4 100644 --- a/tmk_core/protocol/vusb/protocol.c +++ b/tmk_core/protocol/vusb/protocol.c @@ -158,7 +158,7 @@ void protocol_task(void) { #ifdef RAW_ENABLE usbPoll(); - if (usbConfiguration && usbInterruptIsReady3()) { + if (usbConfiguration && usbInterruptIsReady4()) { raw_hid_task(); } #endif |