aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/protocol/vusb/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/vusb/main.c')
-rw-r--r--tmk_core/protocol/vusb/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tmk_core/protocol/vusb/main.c b/tmk_core/protocol/vusb/main.c
index 219989876..1ab765343 100644
--- a/tmk_core/protocol/vusb/main.c
+++ b/tmk_core/protocol/vusb/main.c
@@ -108,6 +108,13 @@ int main(void) {
108 keyboard_task(); 108 keyboard_task();
109 } 109 }
110 vusb_transfer_keyboard(); 110 vusb_transfer_keyboard();
111#ifdef RAW_ENABLE
112 usbPoll();
113
114 if (usbConfiguration && usbInterruptIsReady3()) {
115 raw_hid_task();
116 }
117#endif
111 } 118 }
112 } 119 }
113} 120}