summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-03-19 17:40:47 +0000
committerGitHub <noreply@github.com>2022-03-19 17:40:47 +0000
commit047ef3cd121e6bed3702eaf7ed3e96cf1e765ec5 (patch)
treea980b3ab42e82a105444972ba53eaddc2165e309
parent3502bbbd16feff23ac020ed561ebfef95cc271e8 (diff)
VUSB - Use correct endpoint poll for VIA (#16691)0.16.6
-rw-r--r--tmk_core/protocol/vusb/protocol.c2
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