소스 검색

VUSB - Use correct endpoint poll for VIA (#16691)

Joel Challis 3 년 전
부모
커밋
047ef3cd12
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tmk_core/protocol/vusb/protocol.c

+ 1 - 1
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